.btn {
  border-width: 2px;
}
body {
  font-family: 'Jost', sans-serif;
}
.display-1 {
  font-family: 'Mate SC', serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Mate SC', serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #3a3e44 !important;
}
.bg-success {
  background-color: #040404 !important;
}
.bg-info {
  background-color: #f6b092 !important;
}
.bg-warning {
  background-color: #c26868 !important;
}
.bg-danger {
  background-color: #3a3e44 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #2e3134 !important;
  border-color: #2e3134 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #050606 !important;
  border-color: #050606 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #050606 !important;
  border-color: #050606 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f6b092 !important;
  border-color: #f6b092 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ef7642 !important;
  border-color: #ef7642 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ef7642 !important;
  border-color: #ef7642 !important;
}
.btn-success,
.btn-success:active {
  background-color: #040404 !important;
  border-color: #040404 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c26868 !important;
  border-color: #c26868 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #973d3d !important;
  border-color: #973d3d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #973d3d !important;
  border-color: #973d3d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #121315 !important;
  border-color: #121315 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #3a3e44;
  color: #3a3e44;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #121315 !important;
  background-color: transparent!important;
  border-color: #121315 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #2e3134;
  color: #2e3134;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #050606 !important;
  background-color: transparent!important;
  border-color: #050606 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2e3134 !important;
  border-color: #2e3134 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #f6b092;
  color: #f6b092;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ef7642 !important;
  background-color: transparent!important;
  border-color: #ef7642 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f6b092 !important;
  border-color: #f6b092 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #040404;
  color: #040404;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #040404 !important;
  border-color: #040404 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c26868;
  color: #c26868;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #973d3d !important;
  background-color: transparent!important;
  border-color: #973d3d !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c26868 !important;
  border-color: #c26868 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #3a3e44;
  color: #3a3e44;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #121315 !important;
  background-color: transparent!important;
  border-color: #121315 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3a3e44 !important;
  border-color: #3a3e44 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #3a3e44 !important;
}
.text-secondary {
  color: #2e3134 !important;
}
.text-success {
  color: #040404 !important;
}
.text-info {
  color: #f6b092 !important;
}
.text-warning {
  color: #c26868 !important;
}
.text-danger {
  color: #3a3e44 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b0c0d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ee6c34 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #8c3838 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #0b0c0d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3a3e44;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f6b092;
}
.alert-warning {
  background-color: #c26868;
}
.alert-danger {
  background-color: #3a3e44;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3a3e44;
  border-color: #3a3e44;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #3a3e44;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #acb1b8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e7c3c3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #acb1b8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #3a3e44 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #3a3e44;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3a3e44;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3a3e44;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #3a3e44;
  border-bottom-color: #3a3e44;
}
.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: #3a3e44 !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: #2e3134 !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%;
  width: 100%;
  height: auto;
}
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='%233a3e44' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfkcPF8Ba {
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uqfkcPF8Ba .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqfkcPF8Ba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqfkcPF8Ba .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uqfkcPF8Ba .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uqfkcPF8Ba .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uqfkcPF8Ba .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uqfkcPF8Ba .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqfkcPF8Ba .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f6b092, #fad2c1);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uqfkcPF8Ba .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqfkcPF8Ba .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uqfkcPF8Ba .btn-wrapper {
  margin-top: -15%;
}
.cid-uqfkcPF8Ba .mbr-section-title {
  color: #272b2e;
}
.cid-uqfkcPF8Ba .mbr-text,
.cid-uqfkcPF8Ba .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uqfkcPF8Ba .mbr-section-title,
.cid-uqfkcPF8Ba .mbr-section-btn,
.cid-uqfkcPF8Ba .clients-wrapper {
  text-align: center;
  color: #fafafa;
}
.cid-uPE5FRxkqh {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uPE5FRxkqh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPE5FRxkqh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPE5FRxkqh .mbr-section-head {
  margin-bottom: 2rem;
  width: 100%;
}
.cid-uPE5FRxkqh .mbr-section-title {
  color: #f6b092;
  text-align: center;
}
.cid-uPE5FRxkqh .mbr-section-subtitle {
  color: #181817;
  margin-top: 1rem;
}
.cid-uPE5FRxkqh .card-row {
  align-items: stretch;
}
.cid-uPE5FRxkqh .item {
  margin-bottom: 2rem;
}
@media (min-width: 1400px) {
  .cid-uPE5FRxkqh .item {
    width: 25% !important;
  }
}
@media (min-width: 768px) {
  .cid-uPE5FRxkqh .features-image {
    margin-bottom: 0.5rem;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.cid-uPE5FRxkqh .item-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  padding-top: 20px;
  min-height: 470px;
}
@media (max-width: 991px) {
  .cid-uPE5FRxkqh .item-wrapper {
    min-height: 360px;
  }
}
.cid-uPE5FRxkqh .item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-uPE5FRxkqh .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uPE5FRxkqh .card-box {
  position: relative;
  z-index: 3;
  padding: 8rem 1.5rem 1.5rem;
  background-image: linear-gradient(180deg, rgba(24, 24, 23, 0), rgba(24, 24, 23, 0.9) 65%);
  transition: 0.4s all;
  opacity: 1;
}
.cid-uPE5FRxkqh .card-title {
  color: #f6f6ef;
  margin-bottom: 0.6rem;
}
.cid-uPE5FRxkqh .card-subtitle {
  color: #f6f6ef;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.cid-uPE5FRxkqh .card-text {
  color: #f6b092;
  margin-bottom: 0;
}
.cid-uPE5FRxkqh .card-text-container {
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
}
.cid-uPE5FRxkqh .iconfont-wrapper {
  margin-right: 18px;
}
.cid-uPE5FRxkqh .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #f6f6ef;
  width: fit-content;
}
.cid-uPE5FRxkqh .bg-overlay {
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.cid-uPE5FRxkqh .bg-overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181817;
  opacity: 0;
  z-index: 5;
  transition: 0.4s all;
}
.cid-uPE5FRxkqh .mbr-section-btn {
  position: relative;
  z-index: 6;
  transform: translateY(2rem);
  transition: 0.4s all;
  opacity: 0;
  padding: 0 1rem;
}
.cid-uPE5FRxkqh .mbr-section-btn .btn {
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-uPE5FRxkqh .mbr-section-btn {
    width: auto;
  }
  .cid-uPE5FRxkqh .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uqfsDW0z64 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f6b092;
}
.cid-uqfsDW0z64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqfsDW0z64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfsDW0z64 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .container {
    padding: 0 16px;
  }
}
.cid-uqfsDW0z64 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .row {
    margin: 0 10px;
  }
}
.cid-uqfsDW0z64 .row .card {
  position: relative;
  padding: 0;
}
.cid-uqfsDW0z64 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #fafafa;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uqfsDW0z64 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uqfsDW0z64 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #192227;
  color: #fdfcfc;
  border-radius: 100%;
  border: 5px solid #fafafa;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uqfsDW0z64 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .row .card .icon-decor {
    display: none;
  }
}
.cid-uqfsDW0z64 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .title-wrapper {
    width: 100%;
  }
}
.cid-uqfsDW0z64 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uqfsDW0z64 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uqfsDW0z64 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uqfsDW0z64 .mbr-section-title {
  color: #fdfcfc;
}
.cid-uqfsDW0z64 .mbr-text {
  color: #fdfcfc;
}
.cid-uqfEiFJRw5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f8f8f8;
}
.cid-uqfEiFJRw5 .mbr-section-title {
  color: #1a449a;
}
.cid-uqfEiFJRw5 .mbr-text {
  color: #1a449a;
}
.cid-uqfEiFJRw5 .mbr-section-subtitle {
  color: #1a449a;
}
.cid-uqfEiFJRw5 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uqfEiFJRw5 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #3a3e44;
}
.cid-uqfEiFJRw5 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uqfEiFJRw5 .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
@keyframes line {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.cid-uqfEiFJRw5 h5 {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-left: 70px;
}
.cid-uqfEiFJRw5 h5:before {
  content: '';
  position: absolute;
  left: -65px;
  top: 50%;
  transform-origin: right;
  height: 2px;
  width: 45px;
  background: currentColor;
}
.cid-uqfEiFJRw5 h5:hover:before {
  animation: 1s ease-in-out alternate line;
}
@media (max-width: 767px) {
  .cid-uqfEiFJRw5 h5 {
    margin-left: 0px;
  }
  .cid-uqfEiFJRw5 h5:before {
    bottom: -5px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .cid-uqfEiFJRw5 h5:hover:before {
    animation: none;
  }
}
.cid-uqfquOtHcS {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
  overflow: hidden;
}
.cid-uqfquOtHcS .container {
  max-width: 100% !important;
}
.cid-uqfquOtHcS .mbr-section-head {
  max-width: 1300px;
  width: 100%;
  padding: 40px 0 50px;
  margin: 0 auto;
}
@media (max-width: 1439px) {
  .cid-uqfquOtHcS .mbr-section-head {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .cid-uqfquOtHcS .mbr-section-head {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uqfquOtHcS .mbr-section-head {
    max-width: 86%;
  }
}
@media (max-width: 767px) {
  .cid-uqfquOtHcS .mbr-section-head {
    padding: 30px 0 40px;
  }
}
.cid-uqfquOtHcS .mbr-section-title {
  color: #303030;
}
.cid-uqfquOtHcS .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-uqfquOtHcS .items-row {
  position: relative;
  margin-top: -1px;
  margin-left: -3px !important;
  margin-right: -3px !important;
  border-top: 1px solid #fafafa;
}
.cid-uqfquOtHcS .items-row:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 101vw;
  background-color: #fafafa;
}
.cid-uqfquOtHcS .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 5% 5% 3% 5%;
  transition: .3s all;
}
@media (max-width: 767px) {
  .cid-uqfquOtHcS .item-wrapper {
    padding: 5% 2% 5%;
  }
}
.cid-uqfquOtHcS .item {
  padding: 0 !important;
  margin: -1px -1px 0;
  overflow: hidden;
  border: 1px solid #fafafa;
}
.cid-uqfquOtHcS .item:nth-child(1n) .item-wrapper {
  background: linear-gradient(to left, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: right;
}
.cid-uqfquOtHcS .item:nth-child(1n) .item-wrapper:hover {
  background-position: left;
}
.cid-uqfquOtHcS .item:nth-child(2n) .item-wrapper {
  background: linear-gradient(to top, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 100% 200%;
  background-position: bottom;
}
.cid-uqfquOtHcS .item:nth-child(2n) .item-wrapper:hover {
  background-position: top;
}
.cid-uqfquOtHcS .item:nth-child(3n) .item-wrapper {
  background: linear-gradient(to right, #ffffff 0 50%, #f6f6f6 50% 100%);
  background-size: 200% 100%;
  background-position: left;
}
.cid-uqfquOtHcS .item:nth-child(3n) .item-wrapper:hover {
  background-position: right;
}
.cid-uqfquOtHcS .item-img {
  width: 100%;
  border: 1px solid #fafafa;
}
.cid-uqfquOtHcS .item-img img {
  width: 100%;
  aspect-ratio: calc(425 / (124 * 5));
  object-fit: cover;
}
.cid-uqfquOtHcS .item-content {
  margin-top: 15px;
}
.cid-uqfquOtHcS .mbr-text {
  margin-top: 15px;
  color: #303030;
}
.cid-uqfquOtHcS .item-title {
  margin-top: 15px;
  color: #303030;
}
.cid-uqfquOtHcS .mbr-section-btn {
  padding-top: 10px;
  margin-top: auto !important;
}
.cid-uqfzGECz2C {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uqfzGECz2C H1 {
  color: #3a3e44;
}
.cid-uqfzGECz2C .mbr-text,
.cid-uqfzGECz2C .mbr-section-btn {
  color: #192227;
}
.cid-uqfzGECz2C .img-box {
  position: relative;
}
.cid-uqfzGECz2C .card-ico span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-uqfzGECz2C .card-ico .ico1 {
  background-color: #040404;
}
.cid-uqfzGECz2C .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1.5rem !important;
}
.cid-uqfzGECz2C .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-uqfzGECz2C .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-uqfzGECz2C .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-uqfzGECz2C img {
  width: 48%;
  border-radius: 2px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
@media (max-width: 992px) {
  .cid-uqfzGECz2C .img-box {
    height: 500px;
  }
  .cid-uqfzGECz2C .img1 {
    left: 1rem;
  }
  .cid-uqfzGECz2C .img2 {
    right: 1rem;
  }
  .cid-uqfzGECz2C img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-uqfzGECz2C img {
    width: 60%;
  }
  .cid-uqfzGECz2C .img-box {
    height: 300px;
  }
  .cid-uqfzGECz2C .author-box {
    justify-content: center;
  }
  .cid-uqfzGECz2C .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-uqfzGECz2C .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-uqfzGECz2C .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-uqfzGECz2C .card-ico span {
    margin-right: 0rem;
  }
}
.cid-uqfzGECz2C .author-box {
  display: flex;
  flex-direction: row;
}
.cid-uqfzGECz2C .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-uqfzGECz2C .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-uqfzGECz2C h3,
.cid-uqfzGECz2C h4 {
  margin: 0;
  padding: 0;
}
.cid-uqfzGECz2C H3 {
  color: #57468b;
}
.cid-uqfzGECz2C H4 {
  color: #716c80;
}
.cid-uqfzGECz2C .card-title {
  color: #040404;
}
.cid-uqfzGECz2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqfzGECz2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfCVjzWY8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6b092;
}
.cid-uqfCVjzWY8 .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .container {
    padding: 0 26px;
  }
}
.cid-uqfCVjzWY8 .row {
  justify-content: center;
}
.cid-uqfCVjzWY8 .content-wrapper .content-wrap {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .content-wrapper .content-wrap {
    margin-bottom: 40px;
  }
}
.cid-uqfCVjzWY8 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqfCVjzWY8 .content-wrapper .content-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uqfCVjzWY8 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uqfCVjzWY8 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uqfCVjzWY8 .embla__slide .slide-content {
  width: 100%;
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper {
  padding: 0 150px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1440px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper {
    display: block;
  }
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: 40%;
  padding: 50px 50px 0 0;
}
@media (max-width: 768px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content .item-number {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content .item-number {
    margin-bottom: 40px;
  }
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content .text-wrapper {
  border-top: 1px solid #000000;
  padding-top: 10px;
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-title {
  margin-bottom: 16px;
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-content .text-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-img {
  width: 60%;
}
@media (max-width: 768px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uqfCVjzWY8 .embla__button--next,
.cid-uqfCVjzWY8 .embla__button--prev {
  display: flex;
}
.cid-uqfCVjzWY8 .embla__button {
  top: 50%;
  width: 25px;
  height: 25px;
  margin-top: -1.5rem;
  font-size: 25px;
  background-color: transparent !important;
  color: #3a3e44 !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uqfCVjzWY8 .embla__button:hover {
  opacity: .6 !important;
}
.cid-uqfCVjzWY8 .embla__button.embla__button--prev {
  left: 0;
}
.cid-uqfCVjzWY8 .embla__button.embla__button--next {
  right: 0;
}
@media (max-width: 992px) {
  .cid-uqfCVjzWY8 .embla__button {
    top: 0;
  }
}
.cid-uqfCVjzWY8 .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uqfCVjzWY8 .embla {
    padding-top: 25px;
  }
}
.cid-uqfCVjzWY8 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uqfCVjzWY8 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uqfCVjzWY8 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uqfCVjzWY8 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uqfCVjzWY8 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uqfCVjzWY8 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqfCVjzWY8 .item-number {
  color: #000000;
  text-align: center;
}
.cid-uqfCVjzWY8 .item-title {
  color: #000000;
}
.cid-uqfCVjzWY8 .item-text {
  color: #000000;
}
.cid-uqfCVjzWY8 .mbr-section-title,
.cid-uqfCVjzWY8 .mbr-section-btn {
  text-align: left;
}
.cid-uqNDzmsceO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f4f4f4;
}
.cid-uqNDzmsceO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNDzmsceO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqNDzmsceO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uqNDzmsceO .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .container {
    padding: 0 16px;
  }
}
.cid-uqNDzmsceO .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uqNDzmsceO .image-wrapper img {
  height: 610px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .image-wrapper img {
    height: 350px;
  }
}
.cid-uqNDzmsceO .content-wrapper {
  margin-left: 82px;
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .content-wrapper {
    margin: 0;
  }
}
.cid-uqNDzmsceO .desc-wrapper {
  margin-bottom: 24px;
}
.cid-uqNDzmsceO .desc-wrapper .mbr-desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 16px;
}
.cid-uqNDzmsceO .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #ffd751, #f27120);
}
.cid-uqNDzmsceO .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .dragArea.row .mbr-section-title {
    margin-bottom: 16px !important;
  }
}
.cid-uqNDzmsceO .dragArea.row .mbr-text {
  margin-bottom: 32px !important;
}
@media (max-width: 992px) {
  .cid-uqNDzmsceO .dragArea.row .mbr-text {
    margin-bottom: 16px !important;
  }
}
.cid-uqNDzmsceO .dragArea.row .form-group {
  margin-bottom: 24px !important;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-control:hover,
.cid-uqNDzmsceO .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #c1c1c1 !important;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-control::placeholder {
  color: #3a3e44;
  opacity: .7;
}
.cid-uqNDzmsceO .dragArea.row .form-group textarea {
  min-height: 100px;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-check .form-check-input {
  background-color: #f6b092;
  border-color: #3a3e44;
  border-radius: 0;
}
.cid-uqNDzmsceO .dragArea.row .form-group .form-check .form-check-input:focus {
  background-color: #3a3e44;
}
.cid-uqNDzmsceO .dragArea.row .mbr-section-btn {
  width: 100%;
  margin-top: 16px;
}
.cid-uqNDzmsceO .dragArea.row .mbr-section-btn .btn {
  width: 100%;
}
.cid-uqNDzmsceO .mbr-section-title {
  color: #1c1c1c;
}
.cid-uqNDzmsceO .mbr-desc {
  color: #1c1c1c;
}
.cid-uqNDzmsceO .mbr-text {
  color: #1c1c1c;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uyyESlBEA2 {
  display: flex;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uyyESlBEA2 .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
.cid-uyyESlBEA2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyyESlBEA2 .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uyyESlBEA2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyyESlBEA2 p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uyyESlBEA2 {
    align-items: center;
  }
  .cid-uyyESlBEA2 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uyyESlBEA2 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uyyESlBEA2 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uyyESlBEA2 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uyyESlBEA2 .content-wrap {
    width: 100%;
  }
}
.cid-uyyESlBEA2 .mbr-section-subtitle,
.cid-uyyESlBEA2 .line {
  color: #ffffff;
}
.cid-uyyESlBEA2 .mbr-text,
.cid-uyyESlBEA2 .mbr-section-btn {
  text-align: right;
}
.cid-uyyESlBEA2 .mbr-section-title {
  text-align: center;
}
.cid-uqfNI16QMG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f6b092;
}
.cid-uqfNI16QMG .content {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .content {
    flex-direction: column-reverse;
  }
}
.cid-uqfNI16QMG .text-wrap {
  margin-left: 10%;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .text-wrap {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .image-wrap {
    margin-bottom: 50px;
  }
}
.cid-uqfNI16QMG .content {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .content {
    flex-wrap: wrap;
  }
}
.cid-uqfNI16QMG h2,
.cid-uqfNI16QMG h3,
.cid-uqfNI16QMG h4,
.cid-uqfNI16QMG p {
  margin: 0;
}
.cid-uqfNI16QMG ul {
  padding: 0;
  list-style-type: none;
}
.cid-uqfNI16QMG .text-wrap {
  width: 50%;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .text-wrap {
    width: 100%;
  }
}
.cid-uqfNI16QMG .image-wrap {
  width: 50%;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .image-wrap {
    width: 100%;
  }
}
.cid-uqfNI16QMG .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-uqfNI16QMG .first-section {
  width: 414px;
}
@media (max-width: 473px) {
  .cid-uqfNI16QMG .first-section {
    width: 100%;
  }
}
.cid-uqfNI16QMG .second-section {
  margin-top: 70px;
}
@media (max-width: 1024px) {
  .cid-uqfNI16QMG .second-section {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .cid-uqfNI16QMG .second-section {
    margin-top: 53px;
  }
}
.cid-uqfNI16QMG .mbr-first-section-title {
  color: #000000;
  margin-bottom: 14px;
}
.cid-uqfNI16QMG .mbr-section-subtitle {
  color: #3a3e44;
}
.cid-uqfNI16QMG .mbr-first-section-text {
  color: #6b6b6b;
}
.cid-uqfNI16QMG .mbr-second-section-title {
  color: #54595f;
}
.cid-uqfNI16QMG .list {
  margin: 10px 0;
  color: #192227;
}
.cid-uqfNI16QMG .mbr-card-text {
  margin: 10px 0;
}
.cid-uqfNI16QMG .mbr-card-text::before {
  content: "* ";
  display: inline;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-urmZgy9cCt {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-6849-2000x1125.jpg");
}
.cid-urmZgy9cCt .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmZgy9cCt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmZgy9cCt .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-urmZgy9cCt .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-urmZgy9cCt .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-urmZgy9cCt .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-urmZgy9cCt .container {
    padding: 0 24px;
  }
}
.cid-urmZgy9cCt .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-urmZgy9cCt .content-wrapper {
    padding: 0;
  }
}
.cid-urmZgy9cCt .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-urmZgy9cCt .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-urmZgy9cCt .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-urmZgy9cCt .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-urmZgy9cCt .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-urmZgy9cCt .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urmZgy9cCt .mbr-section-title {
  color: #ffffff;
}
.cid-urmZgy9cCt .mbr-desc,
.cid-urmZgy9cCt .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urmZgy9cCt .mbr-text,
.cid-urmZgy9cCt .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urmZgy9cCt .mbr-section-title,
.cid-urmZgy9cCt .mbr-section-btn {
  text-align: center;
}
.cid-uqNK5V0JWn {
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6b092;
}
.cid-uqNK5V0JWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNK5V0JWn .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #3a3e44;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uqNK5V0JWn h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uqNK5V0JWn h1 {
    margin-bottom: 1rem;
  }
}
.cid-uqNK5V0JWn p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uqNK5V0JWn p {
    margin-bottom: 2rem;
  }
}
.cid-uqNK5V0JWn .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uqNK5V0JWn .image-wrapper,
.cid-uqNK5V0JWn img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uqNK5V0JWn .image-wrapper,
  .cid-uqNK5V0JWn img {
    padding-bottom: 0.5rem;
  }
}
.cid-uqNK5V0JWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uqNK5V0JWn .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uqNK5V0JWn {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uqNK5V0JWn .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uqNK5V0JWn .content-wrap {
    width: 100%;
  }
}
.cid-uqNK5V0JWn .mbr-section-subtitle,
.cid-uqNK5V0JWn .line {
  color: #291f1e;
}
.cid-uqNK5V0JWn .mbr-text,
.cid-uqNK5V0JWn .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uqNK5V0JWn .mbr-section-title {
  color: #291f1e;
}
.cid-uqNK5V0JWn .mbr-section-title,
.cid-uqNK5V0JWn .mbr-section-btn,
.cid-uqNK5V0JWn .line {
  text-align: left;
  color: #291f1e;
}
.cid-uqNK5V0JWn .mbr-text {
  text-align: left;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqNMYWEfTR {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #f6b092;
}
.cid-uqNMYWEfTR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uqNMYWEfTR form {
  padding: 4rem;
}
@media (max-width: 767px) {
  .cid-uqNMYWEfTR form {
    padding: 2rem 0rem;
  }
}
.cid-uqNMYWEfTR .border-radius {
  border-radius: 3rem;
}
.cid-uqNMYWEfTR input,
.cid-uqNMYWEfTR textarea {
  border: none !important;
  border-bottom: 1px solid lightgray !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.cid-uqNMYWEfTR input:hover,
.cid-uqNMYWEfTR textarea:hover,
.cid-uqNMYWEfTR input:focus,
.cid-uqNMYWEfTR textarea:focus,
.cid-uqNMYWEfTR input:active,
.cid-uqNMYWEfTR textarea:active {
  border: none !important;
  border-bottom: 1px solid lightgray !important;
  box-shadow: none;
}
.cid-uqNMYWEfTR .image-wrapper,
.cid-uqNMYWEfTR img {
  height: 100%;
  object-fit: cover;
}
.cid-uqNMYWEfTR .row {
  background: #ffffff;
  overflow: hidden;
  margin: 0;
}
.cid-uqNMYWEfTR .btn {
  padding: 1.3rem 2rem;
  margin-top: 2rem;
  border-radius: 2rem !important;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-uqNMYWEfTR .col-auto {
    margin: auto;
  }
}
.cid-uqNMYWEfTR h5 {
  margin-bottom: 3rem;
}
.cid-uqNMYWEfTR a {
  font-weight: bold;
}
.cid-uqNMYWEfTR .mbr-section-title {
  color: #ffffff;
}
.cid-uqNMYWEfTR .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uyzVNdmaBe {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uyzVNdmaBe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyzVNdmaBe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyzVNdmaBe .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyzVNdmaBe .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uyzVNdmaBe .content-wrapper .text-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyzVNdmaBe .content-wrapper .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uyzVNdmaBe .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 35%;
  opacity: .7;
}
@media (max-width: 992px) {
  .cid-uyzVNdmaBe .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uyzVNdmaBe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uyzVNdmaBe .mbr-text,
.cid-uyzVNdmaBe .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uyzVNdmaBe .mbr-section-title,
.cid-uyzVNdmaBe .mbr-section-btn {
  text-align: center;
}
.cid-uyzFHXGfwd {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyzFHXGfwd .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uyzFHXGfwd .item {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  .cid-uyzFHXGfwd .item {
    padding-bottom: 18px;
    padding-top: 18px;
  }
}
@media (max-width: 767px) {
  .cid-uyzFHXGfwd .item {
    padding-bottom: 16px;
    padding-top: 16px;
  }
}
.cid-uyzFHXGfwd .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .cid-uyzFHXGfwd .mbr-section-btn {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
.cid-uyzFHXGfwd .mbr-section-btn .btn:before {
  display: none;
}
.cid-uyzFHXGfwd .mbr-section-btn .btn:after {
  display: none;
}
@media (max-width: 600px) {
  .cid-uyzFHXGfwd .btn {
    padding-bottom: 3px;
    padding-top: 3px;
  }
}
.cid-uyzFHXGfwd .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uyzFHXGfwd .item-wrapper:hover .item-img {
  transform: scale(1.1);
}
.cid-uyzFHXGfwd .item-img {
  width: 100%;
  opacity: 0.9;
  filter: brightness(80%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.cid-uyzFHXGfwd .item-content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
  padding: 2rem;
}
@media (max-width: 600px) {
  .cid-uyzFHXGfwd .item-content {
    padding: 0.4rem;
  }
}
.cid-uyzFHXGfwd .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: fit-content;
  margin-top: auto;
  margin-bottom: 0;
  pointer-events: auto;
}
.cid-uyzFHXGfwd .item-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-uyzFHXGfwd .mbr-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uyzFHXGfwd .mbr-text,
.cid-uyzFHXGfwd .mbr-section-btn {
  text-align: left;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uyAOueStim {
  padding-top: 120px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/0A9A3278.jpg.jpg");
}
.cid-uyAOueStim .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uyAOueStim .form-head {
  background: #efefef;
  padding: 2rem;
}
.cid-uyAOueStim .form1 {
  background: #ffffff;
  padding: 2rem;
}
.cid-uyAOueStim .form-group {
  margin-bottom: 1rem;
}
.cid-uyAOueStim .form-control {
  border: none !important;
  border-radius: 0;
  padding: 0.5rem 1rem;
  background: #efefef;
  color: #000000;
  width: 100%;
}
.cid-uyAOueStim textarea.form-control {
  min-height: 96px;
}
.cid-uyAOueStim .input-group-btn {
  width: 100%;
}
.cid-uyAOueStim .input-group-btn .btn {
  display: block;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
}
.cid-uyAOueStim .form-control-label {
  color: #333333;
  font-size: 1rem;
  font-weight: 100 !important;
}
@media (max-width: 767px) {
  .cid-uyAOueStim .form1 {
    padding: 1.5rem;
  }
}
.cid-uyAOueStim .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyAOueStim .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyAOueStim .form-title {
  color: #040404;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uyzG82ox9t {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzG82ox9t .item {
  padding-bottom: 2rem;
}
.cid-uyzG82ox9t img,
.cid-uyzG82ox9t .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzG82ox9t .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzG82ox9t .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzG82ox9t .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzG82ox9t .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzG82ox9t .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzG82ox9t .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzG82ox9t .close::before {
  content: "\e91a";
}
.cid-uyzG82ox9t .close:hover {
  color: #fff;
}
.cid-uyzG82ox9t .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzG82ox9t .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzG82ox9t .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzG82ox9t .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzG82ox9t .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzG82ox9t .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzG82ox9t .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzG82ox9t .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzG82ox9t .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzG82ox9t .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzG82ox9t .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzG82ox9t .carousel-item img {
    width: 70%;
  }
}
.cid-uyzG82ox9t .carousel-inner > .active {
  display: block;
}
.cid-uyzG82ox9t .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzG82ox9t .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzG82ox9t .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzG82ox9t .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzG82ox9t .carousel-control,
  .cid-uyzG82ox9t .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzG82ox9t .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzG82ox9t .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzG82ox9t .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzG82ox9t .modal-content {
    width: 70%;
  }
}
.cid-uyzG82ox9t .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzG82ox9t .carousel {
  width: 100%;
}
.cid-uyzG82ox9t .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzG82ox9t .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzG82ox9t .modal.fade .modal-dialog,
.cid-uyzG82ox9t .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzG82ox9t .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzG82ox9t .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzG82ox9t .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzG82ox9t .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzG82ox9t .soc-item::before,
.cid-uyzG82ox9t .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzG82ox9t .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzG82ox9t .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzG82ox9t .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzG82ox9t .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzG82ox9t .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzG82ox9t .text {
  color: #ddc499;
}
.cid-uyzG82ox9t .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzG82ox9t .right {
    padding-right: 32px;
  }
  .cid-uyzG82ox9t .left {
    padding-left: 32px;
  }
}
.cid-uyzG82ox9t .mbr-section-title {
  color: #fafafa;
}
.cid-uyzG82ox9t .mbr-text .text {
  color: #fafafa;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyzIfT7Ugh {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIfT7Ugh .item {
  padding-bottom: 2rem;
}
.cid-uyzIfT7Ugh img,
.cid-uyzIfT7Ugh .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIfT7Ugh .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIfT7Ugh .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIfT7Ugh .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIfT7Ugh .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIfT7Ugh .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIfT7Ugh .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIfT7Ugh .close::before {
  content: "\e91a";
}
.cid-uyzIfT7Ugh .close:hover {
  color: #fff;
}
.cid-uyzIfT7Ugh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIfT7Ugh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIfT7Ugh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIfT7Ugh .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIfT7Ugh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIfT7Ugh .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIfT7Ugh .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIfT7Ugh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIfT7Ugh .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIfT7Ugh .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIfT7Ugh .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIfT7Ugh .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIfT7Ugh .carousel-inner > .active {
  display: block;
}
.cid-uyzIfT7Ugh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIfT7Ugh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIfT7Ugh .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIfT7Ugh .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIfT7Ugh .carousel-control,
  .cid-uyzIfT7Ugh .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIfT7Ugh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIfT7Ugh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIfT7Ugh .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIfT7Ugh .modal-content {
    width: 70%;
  }
}
.cid-uyzIfT7Ugh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIfT7Ugh .carousel {
  width: 100%;
}
.cid-uyzIfT7Ugh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIfT7Ugh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIfT7Ugh .modal.fade .modal-dialog,
.cid-uyzIfT7Ugh .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIfT7Ugh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIfT7Ugh .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIfT7Ugh .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIfT7Ugh .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIfT7Ugh .soc-item::before,
.cid-uyzIfT7Ugh .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIfT7Ugh .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIfT7Ugh .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIfT7Ugh .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIfT7Ugh .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIfT7Ugh .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIfT7Ugh .text {
  color: #ddc499;
}
.cid-uyzIfT7Ugh .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIfT7Ugh .right {
    padding-right: 32px;
  }
  .cid-uyzIfT7Ugh .left {
    padding-left: 32px;
  }
}
.cid-uyzIfT7Ugh .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIfT7Ugh .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIg52vVj {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIg52vVj .item {
  padding-bottom: 2rem;
}
.cid-uyzIg52vVj img,
.cid-uyzIg52vVj .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIg52vVj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIg52vVj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIg52vVj .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIg52vVj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIg52vVj .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIg52vVj .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIg52vVj .close::before {
  content: "\e91a";
}
.cid-uyzIg52vVj .close:hover {
  color: #fff;
}
.cid-uyzIg52vVj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIg52vVj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIg52vVj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIg52vVj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIg52vVj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIg52vVj .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIg52vVj .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIg52vVj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIg52vVj .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIg52vVj .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIg52vVj .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIg52vVj .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIg52vVj .carousel-inner > .active {
  display: block;
}
.cid-uyzIg52vVj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIg52vVj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIg52vVj .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIg52vVj .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIg52vVj .carousel-control,
  .cid-uyzIg52vVj .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIg52vVj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIg52vVj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIg52vVj .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIg52vVj .modal-content {
    width: 70%;
  }
}
.cid-uyzIg52vVj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIg52vVj .carousel {
  width: 100%;
}
.cid-uyzIg52vVj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIg52vVj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIg52vVj .modal.fade .modal-dialog,
.cid-uyzIg52vVj .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIg52vVj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIg52vVj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIg52vVj .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIg52vVj .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIg52vVj .soc-item::before,
.cid-uyzIg52vVj .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIg52vVj .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIg52vVj .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIg52vVj .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIg52vVj .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIg52vVj .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIg52vVj .text {
  color: #ddc499;
}
.cid-uyzIg52vVj .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIg52vVj .right {
    padding-right: 32px;
  }
  .cid-uyzIg52vVj .left {
    padding-left: 32px;
  }
}
.cid-uyzIg52vVj .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIg52vVj .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIhkb8Za {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIhkb8Za .item {
  padding-bottom: 2rem;
}
.cid-uyzIhkb8Za img,
.cid-uyzIhkb8Za .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIhkb8Za .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIhkb8Za .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIhkb8Za .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIhkb8Za .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIhkb8Za .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIhkb8Za .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIhkb8Za .close::before {
  content: "\e91a";
}
.cid-uyzIhkb8Za .close:hover {
  color: #fff;
}
.cid-uyzIhkb8Za .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIhkb8Za .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIhkb8Za .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIhkb8Za .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIhkb8Za .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIhkb8Za .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIhkb8Za .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIhkb8Za .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIhkb8Za .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIhkb8Za .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIhkb8Za .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIhkb8Za .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIhkb8Za .carousel-inner > .active {
  display: block;
}
.cid-uyzIhkb8Za .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIhkb8Za .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIhkb8Za .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIhkb8Za .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIhkb8Za .carousel-control,
  .cid-uyzIhkb8Za .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIhkb8Za .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIhkb8Za .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIhkb8Za .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIhkb8Za .modal-content {
    width: 70%;
  }
}
.cid-uyzIhkb8Za .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIhkb8Za .carousel {
  width: 100%;
}
.cid-uyzIhkb8Za .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIhkb8Za .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIhkb8Za .modal.fade .modal-dialog,
.cid-uyzIhkb8Za .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIhkb8Za .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIhkb8Za .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIhkb8Za .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIhkb8Za .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIhkb8Za .soc-item::before,
.cid-uyzIhkb8Za .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIhkb8Za .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIhkb8Za .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIhkb8Za .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIhkb8Za .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIhkb8Za .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIhkb8Za .text {
  color: #ddc499;
}
.cid-uyzIhkb8Za .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIhkb8Za .right {
    padding-right: 32px;
  }
  .cid-uyzIhkb8Za .left {
    padding-left: 32px;
  }
}
.cid-uyzIhkb8Za .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIhkb8Za .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIi3psxt {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIi3psxt .item {
  padding-bottom: 2rem;
}
.cid-uyzIi3psxt img,
.cid-uyzIi3psxt .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIi3psxt .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIi3psxt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIi3psxt .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIi3psxt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIi3psxt .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIi3psxt .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIi3psxt .close::before {
  content: "\e91a";
}
.cid-uyzIi3psxt .close:hover {
  color: #fff;
}
.cid-uyzIi3psxt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIi3psxt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIi3psxt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIi3psxt .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIi3psxt .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIi3psxt .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIi3psxt .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIi3psxt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIi3psxt .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIi3psxt .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIi3psxt .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIi3psxt .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIi3psxt .carousel-inner > .active {
  display: block;
}
.cid-uyzIi3psxt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIi3psxt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIi3psxt .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIi3psxt .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIi3psxt .carousel-control,
  .cid-uyzIi3psxt .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIi3psxt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIi3psxt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIi3psxt .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIi3psxt .modal-content {
    width: 70%;
  }
}
.cid-uyzIi3psxt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIi3psxt .carousel {
  width: 100%;
}
.cid-uyzIi3psxt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIi3psxt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIi3psxt .modal.fade .modal-dialog,
.cid-uyzIi3psxt .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIi3psxt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIi3psxt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIi3psxt .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIi3psxt .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIi3psxt .soc-item::before,
.cid-uyzIi3psxt .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIi3psxt .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIi3psxt .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIi3psxt .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIi3psxt .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIi3psxt .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIi3psxt .text {
  color: #ddc499;
}
.cid-uyzIi3psxt .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIi3psxt .right {
    padding-right: 32px;
  }
  .cid-uyzIi3psxt .left {
    padding-left: 32px;
  }
}
.cid-uyzIi3psxt .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIi3psxt .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIgN7fUL {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIgN7fUL .item {
  padding-bottom: 2rem;
}
.cid-uyzIgN7fUL img,
.cid-uyzIgN7fUL .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIgN7fUL .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIgN7fUL .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIgN7fUL .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIgN7fUL .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIgN7fUL .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIgN7fUL .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIgN7fUL .close::before {
  content: "\e91a";
}
.cid-uyzIgN7fUL .close:hover {
  color: #fff;
}
.cid-uyzIgN7fUL .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIgN7fUL .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIgN7fUL .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIgN7fUL .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIgN7fUL .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIgN7fUL .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIgN7fUL .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIgN7fUL .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIgN7fUL .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIgN7fUL .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIgN7fUL .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIgN7fUL .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIgN7fUL .carousel-inner > .active {
  display: block;
}
.cid-uyzIgN7fUL .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIgN7fUL .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIgN7fUL .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIgN7fUL .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIgN7fUL .carousel-control,
  .cid-uyzIgN7fUL .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIgN7fUL .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIgN7fUL .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIgN7fUL .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIgN7fUL .modal-content {
    width: 70%;
  }
}
.cid-uyzIgN7fUL .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIgN7fUL .carousel {
  width: 100%;
}
.cid-uyzIgN7fUL .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIgN7fUL .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIgN7fUL .modal.fade .modal-dialog,
.cid-uyzIgN7fUL .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIgN7fUL .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIgN7fUL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIgN7fUL .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIgN7fUL .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIgN7fUL .soc-item::before,
.cid-uyzIgN7fUL .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIgN7fUL .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIgN7fUL .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIgN7fUL .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIgN7fUL .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIgN7fUL .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIgN7fUL .text {
  color: #ddc499;
}
.cid-uyzIgN7fUL .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIgN7fUL .right {
    padding-right: 32px;
  }
  .cid-uyzIgN7fUL .left {
    padding-left: 32px;
  }
}
.cid-uyzIgN7fUL .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIgN7fUL .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIhvceln {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIhvceln .item {
  padding-bottom: 2rem;
}
.cid-uyzIhvceln img,
.cid-uyzIhvceln .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIhvceln .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIhvceln .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIhvceln .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIhvceln .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIhvceln .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIhvceln .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIhvceln .close::before {
  content: "\e91a";
}
.cid-uyzIhvceln .close:hover {
  color: #fff;
}
.cid-uyzIhvceln .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIhvceln .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIhvceln .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIhvceln .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIhvceln .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIhvceln .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIhvceln .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIhvceln .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIhvceln .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIhvceln .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIhvceln .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIhvceln .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIhvceln .carousel-inner > .active {
  display: block;
}
.cid-uyzIhvceln .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIhvceln .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIhvceln .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIhvceln .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIhvceln .carousel-control,
  .cid-uyzIhvceln .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIhvceln .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIhvceln .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIhvceln .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIhvceln .modal-content {
    width: 70%;
  }
}
.cid-uyzIhvceln .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIhvceln .carousel {
  width: 100%;
}
.cid-uyzIhvceln .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIhvceln .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIhvceln .modal.fade .modal-dialog,
.cid-uyzIhvceln .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIhvceln .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIhvceln .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIhvceln .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIhvceln .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIhvceln .soc-item::before,
.cid-uyzIhvceln .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIhvceln .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIhvceln .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIhvceln .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIhvceln .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIhvceln .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIhvceln .text {
  color: #ddc499;
}
.cid-uyzIhvceln .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIhvceln .right {
    padding-right: 32px;
  }
  .cid-uyzIhvceln .left {
    padding-left: 32px;
  }
}
.cid-uyzIhvceln .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIhvceln .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIhRzqEA {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIhRzqEA .item {
  padding-bottom: 2rem;
}
.cid-uyzIhRzqEA img,
.cid-uyzIhRzqEA .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIhRzqEA .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIhRzqEA .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIhRzqEA .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIhRzqEA .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIhRzqEA .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIhRzqEA .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIhRzqEA .close::before {
  content: "\e91a";
}
.cid-uyzIhRzqEA .close:hover {
  color: #fff;
}
.cid-uyzIhRzqEA .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIhRzqEA .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIhRzqEA .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIhRzqEA .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIhRzqEA .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIhRzqEA .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIhRzqEA .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIhRzqEA .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIhRzqEA .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIhRzqEA .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIhRzqEA .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIhRzqEA .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIhRzqEA .carousel-inner > .active {
  display: block;
}
.cid-uyzIhRzqEA .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIhRzqEA .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIhRzqEA .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIhRzqEA .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIhRzqEA .carousel-control,
  .cid-uyzIhRzqEA .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIhRzqEA .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIhRzqEA .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIhRzqEA .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIhRzqEA .modal-content {
    width: 70%;
  }
}
.cid-uyzIhRzqEA .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIhRzqEA .carousel {
  width: 100%;
}
.cid-uyzIhRzqEA .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIhRzqEA .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIhRzqEA .modal.fade .modal-dialog,
.cid-uyzIhRzqEA .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIhRzqEA .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIhRzqEA .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIhRzqEA .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIhRzqEA .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIhRzqEA .soc-item::before,
.cid-uyzIhRzqEA .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIhRzqEA .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIhRzqEA .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIhRzqEA .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIhRzqEA .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIhRzqEA .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIhRzqEA .text {
  color: #ddc499;
}
.cid-uyzIhRzqEA .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIhRzqEA .right {
    padding-right: 32px;
  }
  .cid-uyzIhRzqEA .left {
    padding-left: 32px;
  }
}
.cid-uyzIhRzqEA .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIhRzqEA .mbr-text .text {
  color: #fafafa;
}
.cid-uyzLGlxwJS {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzLGlxwJS .item {
  padding-bottom: 2rem;
}
.cid-uyzLGlxwJS img,
.cid-uyzLGlxwJS .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzLGlxwJS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzLGlxwJS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzLGlxwJS .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzLGlxwJS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzLGlxwJS .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzLGlxwJS .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzLGlxwJS .close::before {
  content: "\e91a";
}
.cid-uyzLGlxwJS .close:hover {
  color: #fff;
}
.cid-uyzLGlxwJS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzLGlxwJS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzLGlxwJS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzLGlxwJS .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzLGlxwJS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzLGlxwJS .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzLGlxwJS .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzLGlxwJS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzLGlxwJS .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzLGlxwJS .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzLGlxwJS .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzLGlxwJS .carousel-item img {
    width: 70%;
  }
}
.cid-uyzLGlxwJS .carousel-inner > .active {
  display: block;
}
.cid-uyzLGlxwJS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzLGlxwJS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzLGlxwJS .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzLGlxwJS .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzLGlxwJS .carousel-control,
  .cid-uyzLGlxwJS .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzLGlxwJS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzLGlxwJS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzLGlxwJS .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzLGlxwJS .modal-content {
    width: 70%;
  }
}
.cid-uyzLGlxwJS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzLGlxwJS .carousel {
  width: 100%;
}
.cid-uyzLGlxwJS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzLGlxwJS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzLGlxwJS .modal.fade .modal-dialog,
.cid-uyzLGlxwJS .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzLGlxwJS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzLGlxwJS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzLGlxwJS .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzLGlxwJS .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzLGlxwJS .soc-item::before,
.cid-uyzLGlxwJS .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzLGlxwJS .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzLGlxwJS .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzLGlxwJS .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzLGlxwJS .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzLGlxwJS .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzLGlxwJS .text {
  color: #ddc499;
}
.cid-uyzLGlxwJS .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzLGlxwJS .right {
    padding-right: 32px;
  }
  .cid-uyzLGlxwJS .left {
    padding-left: 32px;
  }
}
.cid-uyzLGlxwJS .mbr-section-title {
  color: #fafafa;
}
.cid-uyzLGlxwJS .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIgYnCOs {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIgYnCOs .item {
  padding-bottom: 2rem;
}
.cid-uyzIgYnCOs img,
.cid-uyzIgYnCOs .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIgYnCOs .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIgYnCOs .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIgYnCOs .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIgYnCOs .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIgYnCOs .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIgYnCOs .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIgYnCOs .close::before {
  content: "\e91a";
}
.cid-uyzIgYnCOs .close:hover {
  color: #fff;
}
.cid-uyzIgYnCOs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIgYnCOs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIgYnCOs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIgYnCOs .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIgYnCOs .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIgYnCOs .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIgYnCOs .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIgYnCOs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIgYnCOs .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIgYnCOs .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIgYnCOs .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIgYnCOs .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIgYnCOs .carousel-inner > .active {
  display: block;
}
.cid-uyzIgYnCOs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIgYnCOs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIgYnCOs .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIgYnCOs .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIgYnCOs .carousel-control,
  .cid-uyzIgYnCOs .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIgYnCOs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIgYnCOs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIgYnCOs .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIgYnCOs .modal-content {
    width: 70%;
  }
}
.cid-uyzIgYnCOs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIgYnCOs .carousel {
  width: 100%;
}
.cid-uyzIgYnCOs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIgYnCOs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIgYnCOs .modal.fade .modal-dialog,
.cid-uyzIgYnCOs .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIgYnCOs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIgYnCOs .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIgYnCOs .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIgYnCOs .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIgYnCOs .soc-item::before,
.cid-uyzIgYnCOs .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIgYnCOs .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIgYnCOs .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIgYnCOs .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIgYnCOs .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIgYnCOs .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIgYnCOs .text {
  color: #ddc499;
}
.cid-uyzIgYnCOs .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIgYnCOs .right {
    padding-right: 32px;
  }
  .cid-uyzIgYnCOs .left {
    padding-left: 32px;
  }
}
.cid-uyzIgYnCOs .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIgYnCOs .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIhH5gaY {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIhH5gaY .item {
  padding-bottom: 2rem;
}
.cid-uyzIhH5gaY img,
.cid-uyzIhH5gaY .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIhH5gaY .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIhH5gaY .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIhH5gaY .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIhH5gaY .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIhH5gaY .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIhH5gaY .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIhH5gaY .close::before {
  content: "\e91a";
}
.cid-uyzIhH5gaY .close:hover {
  color: #fff;
}
.cid-uyzIhH5gaY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIhH5gaY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIhH5gaY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIhH5gaY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIhH5gaY .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIhH5gaY .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIhH5gaY .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIhH5gaY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIhH5gaY .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIhH5gaY .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIhH5gaY .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIhH5gaY .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIhH5gaY .carousel-inner > .active {
  display: block;
}
.cid-uyzIhH5gaY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIhH5gaY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIhH5gaY .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIhH5gaY .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIhH5gaY .carousel-control,
  .cid-uyzIhH5gaY .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIhH5gaY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIhH5gaY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIhH5gaY .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIhH5gaY .modal-content {
    width: 70%;
  }
}
.cid-uyzIhH5gaY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIhH5gaY .carousel {
  width: 100%;
}
.cid-uyzIhH5gaY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIhH5gaY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIhH5gaY .modal.fade .modal-dialog,
.cid-uyzIhH5gaY .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIhH5gaY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIhH5gaY .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIhH5gaY .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIhH5gaY .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIhH5gaY .soc-item::before,
.cid-uyzIhH5gaY .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIhH5gaY .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIhH5gaY .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIhH5gaY .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIhH5gaY .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIhH5gaY .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIhH5gaY .text {
  color: #ddc499;
}
.cid-uyzIhH5gaY .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIhH5gaY .right {
    padding-right: 32px;
  }
  .cid-uyzIhH5gaY .left {
    padding-left: 32px;
  }
}
.cid-uyzIhH5gaY .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIhH5gaY .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIgCF4CQ {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIgCF4CQ .item {
  padding-bottom: 2rem;
}
.cid-uyzIgCF4CQ img,
.cid-uyzIgCF4CQ .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIgCF4CQ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIgCF4CQ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIgCF4CQ .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIgCF4CQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIgCF4CQ .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIgCF4CQ .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIgCF4CQ .close::before {
  content: "\e91a";
}
.cid-uyzIgCF4CQ .close:hover {
  color: #fff;
}
.cid-uyzIgCF4CQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIgCF4CQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIgCF4CQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIgCF4CQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIgCF4CQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIgCF4CQ .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIgCF4CQ .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIgCF4CQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIgCF4CQ .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIgCF4CQ .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIgCF4CQ .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIgCF4CQ .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIgCF4CQ .carousel-inner > .active {
  display: block;
}
.cid-uyzIgCF4CQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIgCF4CQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIgCF4CQ .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIgCF4CQ .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIgCF4CQ .carousel-control,
  .cid-uyzIgCF4CQ .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIgCF4CQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIgCF4CQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIgCF4CQ .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIgCF4CQ .modal-content {
    width: 70%;
  }
}
.cid-uyzIgCF4CQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIgCF4CQ .carousel {
  width: 100%;
}
.cid-uyzIgCF4CQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIgCF4CQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIgCF4CQ .modal.fade .modal-dialog,
.cid-uyzIgCF4CQ .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIgCF4CQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIgCF4CQ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIgCF4CQ .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIgCF4CQ .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIgCF4CQ .soc-item::before,
.cid-uyzIgCF4CQ .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIgCF4CQ .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIgCF4CQ .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIgCF4CQ .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIgCF4CQ .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIgCF4CQ .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIgCF4CQ .text {
  color: #ddc499;
}
.cid-uyzIgCF4CQ .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIgCF4CQ .right {
    padding-right: 32px;
  }
  .cid-uyzIgCF4CQ .left {
    padding-left: 32px;
  }
}
.cid-uyzIgCF4CQ .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIgCF4CQ .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIghSR3h {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIghSR3h .item {
  padding-bottom: 2rem;
}
.cid-uyzIghSR3h img,
.cid-uyzIghSR3h .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIghSR3h .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIghSR3h .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIghSR3h .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIghSR3h .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIghSR3h .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIghSR3h .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIghSR3h .close::before {
  content: "\e91a";
}
.cid-uyzIghSR3h .close:hover {
  color: #fff;
}
.cid-uyzIghSR3h .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIghSR3h .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIghSR3h .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIghSR3h .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIghSR3h .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIghSR3h .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIghSR3h .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIghSR3h .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIghSR3h .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIghSR3h .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIghSR3h .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIghSR3h .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIghSR3h .carousel-inner > .active {
  display: block;
}
.cid-uyzIghSR3h .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIghSR3h .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIghSR3h .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIghSR3h .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIghSR3h .carousel-control,
  .cid-uyzIghSR3h .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIghSR3h .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIghSR3h .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIghSR3h .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIghSR3h .modal-content {
    width: 70%;
  }
}
.cid-uyzIghSR3h .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIghSR3h .carousel {
  width: 100%;
}
.cid-uyzIghSR3h .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIghSR3h .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIghSR3h .modal.fade .modal-dialog,
.cid-uyzIghSR3h .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIghSR3h .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIghSR3h .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIghSR3h .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIghSR3h .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIghSR3h .soc-item::before,
.cid-uyzIghSR3h .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIghSR3h .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIghSR3h .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIghSR3h .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIghSR3h .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIghSR3h .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIghSR3h .text {
  color: #ddc499;
}
.cid-uyzIghSR3h .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIghSR3h .right {
    padding-right: 32px;
  }
  .cid-uyzIghSR3h .left {
    padding-left: 32px;
  }
}
.cid-uyzIghSR3h .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIghSR3h .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIgsxt7O {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIgsxt7O .item {
  padding-bottom: 2rem;
}
.cid-uyzIgsxt7O img,
.cid-uyzIgsxt7O .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIgsxt7O .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIgsxt7O .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIgsxt7O .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIgsxt7O .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIgsxt7O .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIgsxt7O .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIgsxt7O .close::before {
  content: "\e91a";
}
.cid-uyzIgsxt7O .close:hover {
  color: #fff;
}
.cid-uyzIgsxt7O .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIgsxt7O .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIgsxt7O .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIgsxt7O .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIgsxt7O .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIgsxt7O .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIgsxt7O .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIgsxt7O .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIgsxt7O .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIgsxt7O .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIgsxt7O .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIgsxt7O .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIgsxt7O .carousel-inner > .active {
  display: block;
}
.cid-uyzIgsxt7O .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIgsxt7O .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIgsxt7O .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIgsxt7O .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIgsxt7O .carousel-control,
  .cid-uyzIgsxt7O .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIgsxt7O .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIgsxt7O .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIgsxt7O .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIgsxt7O .modal-content {
    width: 70%;
  }
}
.cid-uyzIgsxt7O .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIgsxt7O .carousel {
  width: 100%;
}
.cid-uyzIgsxt7O .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIgsxt7O .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIgsxt7O .modal.fade .modal-dialog,
.cid-uyzIgsxt7O .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIgsxt7O .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIgsxt7O .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIgsxt7O .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIgsxt7O .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIgsxt7O .soc-item::before,
.cid-uyzIgsxt7O .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIgsxt7O .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIgsxt7O .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIgsxt7O .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIgsxt7O .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIgsxt7O .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIgsxt7O .text {
  color: #ddc499;
}
.cid-uyzIgsxt7O .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIgsxt7O .right {
    padding-right: 32px;
  }
  .cid-uyzIgsxt7O .left {
    padding-left: 32px;
  }
}
.cid-uyzIgsxt7O .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIgsxt7O .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIhaZoGf {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIhaZoGf .item {
  padding-bottom: 2rem;
}
.cid-uyzIhaZoGf img,
.cid-uyzIhaZoGf .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIhaZoGf .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIhaZoGf .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIhaZoGf .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIhaZoGf .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIhaZoGf .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIhaZoGf .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIhaZoGf .close::before {
  content: "\e91a";
}
.cid-uyzIhaZoGf .close:hover {
  color: #fff;
}
.cid-uyzIhaZoGf .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIhaZoGf .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIhaZoGf .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIhaZoGf .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIhaZoGf .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIhaZoGf .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIhaZoGf .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIhaZoGf .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIhaZoGf .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIhaZoGf .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIhaZoGf .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIhaZoGf .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIhaZoGf .carousel-inner > .active {
  display: block;
}
.cid-uyzIhaZoGf .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIhaZoGf .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIhaZoGf .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIhaZoGf .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIhaZoGf .carousel-control,
  .cid-uyzIhaZoGf .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIhaZoGf .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIhaZoGf .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIhaZoGf .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIhaZoGf .modal-content {
    width: 70%;
  }
}
.cid-uyzIhaZoGf .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIhaZoGf .carousel {
  width: 100%;
}
.cid-uyzIhaZoGf .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIhaZoGf .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIhaZoGf .modal.fade .modal-dialog,
.cid-uyzIhaZoGf .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIhaZoGf .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIhaZoGf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIhaZoGf .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIhaZoGf .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIhaZoGf .soc-item::before,
.cid-uyzIhaZoGf .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIhaZoGf .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIhaZoGf .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIhaZoGf .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIhaZoGf .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIhaZoGf .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIhaZoGf .text {
  color: #ddc499;
}
.cid-uyzIhaZoGf .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIhaZoGf .right {
    padding-right: 32px;
  }
  .cid-uyzIhaZoGf .left {
    padding-left: 32px;
  }
}
.cid-uyzIhaZoGf .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIhaZoGf .mbr-text .text {
  color: #fafafa;
}
.cid-uyzIigASI0 {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uyzIigASI0 .item {
  padding-bottom: 2rem;
}
.cid-uyzIigASI0 img,
.cid-uyzIigASI0 .item-wrapper {
  transition: all 0.7s;
}
.cid-uyzIigASI0 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uyzIigASI0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uyzIigASI0 .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uyzIigASI0 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uyzIigASI0 .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uyzIigASI0 .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyzIigASI0 .close::before {
  content: "\e91a";
}
.cid-uyzIigASI0 .close:hover {
  color: #fff;
}
.cid-uyzIigASI0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uyzIigASI0 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uyzIigASI0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uyzIigASI0 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uyzIigASI0 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uyzIigASI0 .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uyzIigASI0 .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uyzIigASI0 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uyzIigASI0 .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uyzIigASI0 .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uyzIigASI0 .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uyzIigASI0 .carousel-item img {
    width: 70%;
  }
}
.cid-uyzIigASI0 .carousel-inner > .active {
  display: block;
}
.cid-uyzIigASI0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyzIigASI0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyzIigASI0 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uyzIigASI0 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uyzIigASI0 .carousel-control,
  .cid-uyzIigASI0 .carousel-indicators {
    position: fixed;
  }
}
.cid-uyzIigASI0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uyzIigASI0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uyzIigASI0 .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uyzIigASI0 .modal-content {
    width: 70%;
  }
}
.cid-uyzIigASI0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uyzIigASI0 .carousel {
  width: 100%;
}
.cid-uyzIigASI0 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uyzIigASI0 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uyzIigASI0 .modal.fade .modal-dialog,
.cid-uyzIigASI0 .modal.in .modal-dialog {
  transform: none;
}
.cid-uyzIigASI0 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uyzIigASI0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uyzIigASI0 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uyzIigASI0 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uyzIigASI0 .soc-item::before,
.cid-uyzIigASI0 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uyzIigASI0 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uyzIigASI0 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uyzIigASI0 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uyzIigASI0 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uyzIigASI0 .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-uyzIigASI0 .text {
  color: #ddc499;
}
.cid-uyzIigASI0 .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uyzIigASI0 .right {
    padding-right: 32px;
  }
  .cid-uyzIigASI0 .left {
    padding-left: 32px;
  }
}
.cid-uyzIigASI0 .mbr-section-title {
  color: #fafafa;
}
.cid-uyzIigASI0 .mbr-text .text {
  color: #fafafa;
}
.cid-uzX1degt7Y {
  padding-top: 9rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uzX1degt7Y .item {
  padding-bottom: 2rem;
}
.cid-uzX1degt7Y img,
.cid-uzX1degt7Y .item-wrapper {
  transition: all 0.7s;
}
.cid-uzX1degt7Y .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uzX1degt7Y .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uzX1degt7Y .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uzX1degt7Y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uzX1degt7Y .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uzX1degt7Y .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzX1degt7Y .close::before {
  content: "\e91a";
}
.cid-uzX1degt7Y .close:hover {
  color: #fff;
}
.cid-uzX1degt7Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzX1degt7Y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzX1degt7Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzX1degt7Y .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzX1degt7Y .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uzX1degt7Y .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uzX1degt7Y .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uzX1degt7Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uzX1degt7Y .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uzX1degt7Y .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uzX1degt7Y .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uzX1degt7Y .carousel-item img {
    width: 70%;
  }
}
.cid-uzX1degt7Y .carousel-inner > .active {
  display: block;
}
.cid-uzX1degt7Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzX1degt7Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzX1degt7Y .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uzX1degt7Y .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uzX1degt7Y .carousel-control,
  .cid-uzX1degt7Y .carousel-indicators {
    position: fixed;
  }
}
.cid-uzX1degt7Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzX1degt7Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzX1degt7Y .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uzX1degt7Y .modal-content {
    width: 70%;
  }
}
.cid-uzX1degt7Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzX1degt7Y .carousel {
  width: 100%;
}
.cid-uzX1degt7Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzX1degt7Y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzX1degt7Y .modal.fade .modal-dialog,
.cid-uzX1degt7Y .modal.in .modal-dialog {
  transform: none;
}
.cid-uzX1degt7Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzX1degt7Y .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uzX1degt7Y .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uzX1degt7Y .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uzX1degt7Y .soc-item::before,
.cid-uzX1degt7Y .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uzX1degt7Y .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uzX1degt7Y .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uzX1degt7Y .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uzX1degt7Y .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uzX1degt7Y .mbr-section-subtitle {
  color: #bfc0d5;
  margin-bottom: 77px;
}
.cid-uzX1degt7Y .text {
  color: #ddc499;
}
.cid-uzX1degt7Y .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uzX1degt7Y .right {
    padding-right: 32px;
  }
  .cid-uzX1degt7Y .left {
    padding-left: 32px;
  }
}
.cid-uzX1degt7Y .mbr-section-title {
  color: #fafafa;
}
.cid-uzX1degt7Y .mbr-text .text {
  color: #fafafa;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uyKiS38xjJ {
  padding-top: 12rem;
  padding-bottom: 6rem;
  overflow: hidden;
  position: relative;
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uyKiS38xjJ .decor-wrap {
  position: absolute;
  top: -30%;
  right: 5%;
  border: 60px solid #f6b092;
  border-left: 60px solid transparent;
  border-bottom: 60px solid transparent;
  width: 50%;
  height: 160%;
  border-radius: 100%;
  transform: rotate(15deg);
}
.cid-uyKiS38xjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyKiS38xjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uyKiS38xjJ .container {
    padding: 0 16px;
  }
}
.cid-uyKiS38xjJ .row {
  position: relative;
  z-index: 1;
}
.cid-uyKiS38xjJ .title-wrapper {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .cid-uyKiS38xjJ .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uyKiS38xjJ .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  margin-bottom: 56px;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #f6b092;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uyKiS38xjJ .title-wrapper .subtitle-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uyKiS38xjJ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uyKiS38xjJ .text-wrapper {
  padding-left: 140px;
}
@media (max-width: 1440px) {
  .cid-uyKiS38xjJ .text-wrapper {
    padding-left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uyKiS38xjJ .text-wrapper {
    padding-left: 0;
    margin-bottom: 32px;
  }
}
.cid-uyKiS38xjJ .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uyKiS38xjJ .box {
  border-radius: 16px !important;
  margin-left: 32px;
  background-color: #000000;
  margin-top: -25rem;
  box-shadow: 2px 2px 10px #454545;
}
@media (max-width: 992px) {
  .cid-uyKiS38xjJ .box {
    margin-left: 0;
    margin-top: 0;
  }
}
.cid-uyKiS38xjJ .box .mbr-media {
  position: relative;
  overflow: hidden;
}
.cid-uyKiS38xjJ .box .mbr-media .mbr-iconfont {
  font-size: 25px;
  color: #f6b092;
  transition: all 0.3s ease-in-out;
  margin-left: 5px;
  z-index: 1;
}
.cid-uyKiS38xjJ .mbr-media {
  position: relative;
}
.cid-uyKiS38xjJ .mbr-media img {
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-uyKiS38xjJ .mbr-media .process_video {
  border-radius: 10px;
}
.cid-uyKiS38xjJ a:hover {
  background-image: none !important;
}
.cid-uyKiS38xjJ .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
.cid-uyKiS38xjJ .icon-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: #f6b092;
  opacity: .2;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.cid-uyKiS38xjJ .icon-wrap:hover::before,
.cid-uyKiS38xjJ .icon-wrap:focus::before {
  opacity: .5;
}
.cid-uyKiS38xjJ .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uyKiS38xjJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uyKiS38xjJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uyKiS38xjJ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uyKiS38xjJ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyKiS38xjJ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uyKiS38xjJ .mbr-section-title {
  color: #fafafa;
}
.cid-uyKiS38xjJ .mbr-section-subtitle {
  color: #000000;
}
.cid-uyKiS38xjJ .mbr-text {
  color: #000000;
}
.cid-uyKiS38xjJ .mbr-text,
.cid-uyKiS38xjJ .mbr-section-btn {
  color: #fafafa;
}
.cid-uyJxpMweW5 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyJxpMweW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyJxpMweW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyJxpMweW5 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyJxpMweW5 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uyJxpMweW5 .container {
    padding: 0 24px;
  }
}
.cid-uyJxpMweW5 .image-wrapper {
  position: sticky;
  top: 32px;
  display: flex;
  align-items: flex-end;
  height: 90vh;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .image-wrapper {
    padding: 24px;
    margin-bottom: 32px;
    height: 400px;
  }
}
.cid-uyJxpMweW5 .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper {
  padding: 40px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
  max-width: 37.5rem;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .image-wrapper .recall-wrapper {
    padding: 24px;
    max-width: 100%;
  }
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 25px;
  margin-bottom: 16px;
  color: #ffffff;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .mbr-recall {
  margin-bottom: 16px;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .image-wrap .person {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  object-fit: cover;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uyJxpMweW5 .image-wrapper .recall-wrapper .people-wrapper .people-wrap .rating-content .mbr-name {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uyJxpMweW5 .content-wrapper {
  padding: 96px 128px;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
}
@media (max-width: 1440px) {
  .cid-uyJxpMweW5 .content-wrapper {
    padding: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .content-wrapper {
    padding: 24px;
  }
}
.cid-uyJxpMweW5 .content-wrapper .content-wrap {
  margin-bottom: 32px;
}
.cid-uyJxpMweW5 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uyJxpMweW5 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uyJxpMweW5 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uyJxpMweW5 .item {
  margin-bottom: 16px;
}
.cid-uyJxpMweW5 .item:last-child {
  margin-bottom: 0;
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box {
  padding: 48px;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-uyJxpMweW5 .item .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box .desc-wrap .item-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box .item-text {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box .mbr-section-btn .btn {
  flex-direction: row-reverse;
}
.cid-uyJxpMweW5 .item .item-wrapper .card-box .mbr-section-btn .btn .mbr-iconfont {
  margin: 0 8px 0 0;
}
.cid-uyJxpMweW5 .mbr-section-title {
  color: #3a3e44;
}
.cid-uyJxpMweW5 .mbr-desc {
  color: #18212d;
}
.cid-uyJxpMweW5 .mbr-text {
  color: #18212d;
}
.cid-uyJxpMweW5 .mbr-recall {
  color: #ffffff;
}
.cid-uyJxpMweW5 .mbr-name {
  color: #ffffff;
}
.cid-uyJxpMweW5 .mbr-rating {
  color: #EFCC4E;
}
.cid-uyJxpMweW5 .item-title {
  color: #18212d;
}
.cid-uyJxpMweW5 .item-text {
  color: #18212d;
}
.cid-uyJxpMweW5 .item-desc {
  color: #18212d;
}
.cid-uyJxpMweW5 .item-text,
.cid-uyJxpMweW5 .mbr-section-btn {
  color: #040404;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uAEyaZpNos {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uAEyaZpNos .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAEyaZpNos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uAEyaZpNos .content-wrapper .clients-wrapper {
    display: none;
  }
}
.cid-uAEyaZpNos .content-wrapper .clients-wrapper .clients-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-uAEyaZpNos .content-wrapper .clients-wrapper .clients-wrap .item {
  padding: 16px;
}
.cid-uAEyaZpNos .content-wrapper .clients-wrapper .clients-wrap .item .item-wrapper .item-img img {
  height: 100px;
  object-fit: contain;
}
.cid-uAEyaZpNos .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uAEyaZpNos .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uAEyaZpNos .content-wrapper .text-wrapper .mbr-text {
  width: 40%;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uAEyaZpNos .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uAEyaZpNos .btn-wrapper {
  margin-top: -15%;
}
.cid-uAEyaZpNos .mbr-section-title {
  color: #272b2e;
}
.cid-uAEyaZpNos .mbr-text,
.cid-uAEyaZpNos .text-wrapper {
  color: #272b2e;
  text-align: center;
}
.cid-uAEyaZpNos .mbr-section-title,
.cid-uAEyaZpNos .mbr-section-btn,
.cid-uAEyaZpNos .clients-wrapper {
  text-align: center;
}
.cid-uAEuqawElG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAEuqawElG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAEuqawElG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAEuqawElG .container-fluid {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .cid-uAEuqawElG .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAEuqawElG .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uAEuqawElG .container {
    padding: 0 20px;
  }
}
.cid-uAEuqawElG .content-wrapper {
  padding: 60px 0;
}
@media (max-width: 992px) {
  .cid-uAEuqawElG .content-wrapper {
    padding: 46px 0;
  }
}
.cid-uAEuqawElG .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uAEuqawElG .dragArea.row .mbr-section-title {
  margin-bottom: 32px !important;
}
.cid-uAEuqawElG .dragArea.row .mbr-text {
  margin-bottom: 60px !important;
}
@media (max-width: 992px) {
  .cid-uAEuqawElG .dragArea.row .mbr-text {
    margin-bottom: 46px !important;
  }
}
.cid-uAEuqawElG .dragArea.row .form-group {
  margin-bottom: 46px !important;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-control {
  padding: 0 0 8px 0;
  border: none !important;
  border-bottom: 1px solid #dcdde0 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-control:hover,
.cid-uAEuqawElG .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #000000 !important;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-control::placeholder {
  color: #dcdde0;
}
.cid-uAEuqawElG .dragArea.row .form-group textarea {
  min-height: 150px;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uAEuqawElG .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
  border-radius: 0;
}
.cid-uAEuqawElG .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uAEuqawElG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uAEuqawElG .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uAEuqawElG .mbr-text,
.cid-uAEuqawElG .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAEuqawElG label {
  color: #000000;
}
.cid-uAEuqawElG .mbr-section-btn {
  text-align: center;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uAQ5BZLrM1 {
  padding-top: 280px;
  background-image: url("../../../assets/images/0A9A3278.jpg");
}
.cid-uAEzq8xlTb {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uAEzq8xlTb .timeline-element {
  position: relative;
}
.cid-uAEzq8xlTb .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uAEzq8xlTb .image-wrapper {
  padding: 1rem;
}
.cid-uAEzq8xlTb .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uAEzq8xlTb .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #3a3e44;
}
.cid-uAEzq8xlTb .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uAEzq8xlTb .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uAEzq8xlTb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uAEzq8xlTb .mbr-section-title,
.cid-uAEzq8xlTb .mbr-section-subtitle,
.cid-uAEzq8xlTb .timeline-date {
  text-align: center;
}
.cid-uAEzq8xlTb .row:after {
  content: "";
  position: absolute;
  background-color: #f6b092;
  width: 2px;
  height: calc(100% - 20px);
  top: 82px;
  left: 50%;
}
@media (max-width: 992px) {
  .cid-uAEzq8xlTb .row:after {
    top: 64px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uAEzq8xlTb .row:after {
    height: calc(100% + 50px);
    top: 0px;
    left: 15px;
  }
}
@media (max-width: 767px) {
  .cid-uAEzq8xlTb .timeline-date-wrapper,
  .cid-uAEzq8xlTb .timeline-text-wrapper,
  .cid-uAEzq8xlTb .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-uAEzq8xlTb .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-uAEzq8xlTb .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAEzq8xlTb .timeline-date-wrapper,
  .cid-uAEzq8xlTb .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAEzq8xlTb .timeline-date-wrapper,
  .cid-uAEzq8xlTb .timeline-text-wrapper,
  .cid-uAEzq8xlTb .image-wrapper {
    padding: 2rem;
  }
}
.cid-uAEzq8xlTb .mbr-text {
  color: #192227;
}
.cid-uAEzq8xlTb .mbr-timeline-date {
  color: #f6b092;
}
.cid-uAEzq8xlTb .mbr-timeline-title {
  color: #3a3e44;
}
.cid-uAEzq8xlTb .mbr-section-title {
  color: #192227;
}
.cid-uAQ49L8gKo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6b092;
}
.cid-uAQ49L8gKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAQ49L8gKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAQ49L8gKo .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uAQ49L8gKo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uAQ49L8gKo .container {
    padding: 0 26px;
  }
}
.cid-uAQ49L8gKo .row {
  justify-content: center;
}
.cid-uAQ49L8gKo .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
.cid-uAQ49L8gKo .text-wrapper .mbr-section-btn .btn {
  width: 45%;
}
@media (max-width: 768px) {
  .cid-uAQ49L8gKo .text-wrapper .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uAQ49L8gKo .mbr-text,
.cid-uAQ49L8gKo .icon-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uAQ49L8gKo .mbr-text,
.cid-uAQ49L8gKo .mbr-section-btn {
  text-align: center;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-9O6gm39bfE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-9O6gm39bfE .modal .modal-side {
    position: absolute;
    width: 100%;
    right: 10px;
    bottom: 10px;
    margin: 0;
  }
  .cid-9O6gm39bfE .modal-dialog.modal-bottom-right {
    bottom: 0;
  }
  .cid-9O6gm39bfE .modal-side.modal-bottom-left .modal-content {
    shadow-color-rgb: 0, 0, 0;
  }
}
@media (min-width: 576px) {
  .cid-9O6gm39bfE .modal-dialog {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  .cid-9O6gm39bfE .modal-sm {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .cid-9O6gm39bfE .modal .modal-dialog.modal-top-right {
    top: 10px;
    right: 10px;
  }
  .cid-9O6gm39bfE .modal .modal-dialog.modal-top-left {
    top: 10px;
    left: 10px;
  }
  .cid-9O6gm39bfE .modal .modal-dialog.modal-bottom-right {
    right: 10px;
    bottom: 50px;
  }
  .cid-9O6gm39bfE .modal .modal-dialog.modal-bottom-left {
    bottom: 10px;
    left: 10px;
  }
  .cid-9O6gm39bfE .modal-dialog {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    max-height: 300px;
  }
}
.cid-9O6gm39bfE .modal-dialog.modal-bottom-left {
  left: 0;
  height: inherit;
}
.cid-9O6gm39bfE .input-style {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #E0E0E0;
  border-radius: 0.25rem;
  transition: all .2s linear;
}
.cid-9O6gm39bfE .modal-dialog,
.cid-9O6gm39bfE .modal-content {
  height: auto;
}
.cid-9O6gm39bfE .form-check-input[type=checkbox] {
  border-radius: 0.25rem;
  margin-top: 0.19em;
  margin-right: 6px;
}
.cid-9O6gm39bfE .form-check .form-check-input {
  float: left;
  margin-left: -2em;
}
.cid-9O6gm39bfE .modal .modal-dialog.modal-bottom {
  bottom: 0;
}
.cid-9O6gm39bfE .modal .modal-dialog.modal-top {
  top: 0;
}
.cid-9O6gm39bfE .modal .modal-frame {
  position: absolute;
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.cid-9O6gm39bfE .btn,
.cid-9O6gm39bfE .mbr-section-btn {
  margin-left: 7px;
  margin-right: 7px;
}
.cid-9O6gm39bfE .modal.fade.top-left {
  display: contents;
}
.cid-9O6gm39bfE .modal.fade.top-left .modal-header {
  margin-top: 90px !important;
}
.cid-9O6gm39bfE .bgtopstatic {
  background-color: #4479d9;
}
.cid-9O6gm39bfE .bgtopleft {
  background-color: #4479d9;
}
.cid-9O6gm39bfE .bgtopright {
  background-color: #1de195;
}
.cid-9O6gm39bfE .bgverticalcenter {
  background-color: #000000;
}
.cid-9O6gm39bfE .bgbottomleft {
  background-color: #4479d9;
}
.cid-9O6gm39bfE .bgbottomright {
  background-color: #12109f;
}
.cid-9O6gm39bfE .bgtopsmall {
  background-color: #e43f3f;
}
.cid-9O6gm39bfE .bgtopfullwidth {
  background-color: #12109f;
}
.cid-9O6gm39bfE .bgbottomfullwidth {
  background-color: #4479d9;
}
.cid-9O6gm39bfE .htc {
  color: #f6b092;
  text-align: right;
}
.cid-9O6gm39bfE P {
  text-align: center;
}
.cid-9O6gm39bfE .modal-footer {
  padding: 5px !important;
}
.cid-9O6gm39bfE .hbl {
  color: #ffffff;
}
.cid-9O6gm39bfE .hbr {
  color: #ffffff;
}
.cid-9O6gm39bfE .p2br {
  text-align: left;
  color: #000000;
}
.cid-9O6gm39bfE .pbr {
  text-align: left;
  color: #12109f;
}
.cid-9O6gm39bfE .cart {
  color: #ffffff;
}
.cid-9O6gm39bfE .sca {
  text-align: left;
}
.cid-9O6gm39bfE .plh {
  color: #ffffff;
  text-align: left;
}
.cid-9O6gm39bfE .hts {
  color: #ffffff;
}
.cid-9O6gm39bfE .ptfw {
  color: #ffffff;
}
.cid-9O6gm39bfE .btfw {
  color: #ffffff;
  text-align: left;
}
.cid-9O6gm39bfE .ms-2 {
  margin-left: 0.5rem !important;
}
.cid-9O6gm39bfE .btn-sm {
  padding: 5px;
  font-size: 0.75rem;
}
@media screen and (max-width: 600px) {
  .cid-9O6gm39bfE .btfw {
    padding-top: 20px;
    text-align: center;
  }
  .cid-9O6gm39bfE .mbr-section-btn {
    text-align: center;
  }
}
.cid-9O6gm39bfE .align-items-center {
  align-items: center !important;
}
.cid-9O6gm39bfE .justify-content-center {
  justify-content: center !important;
}
.cid-9O6gm39bfE .hts2 {
  color: #ffffff;
}
.cid-9O6gm39bfE .pts2 {
  color: #ffffff;
}
@media only screen and (max-width: 600px) {
  .cid-9O6gm39bfE .btfw {
    padding-top: 20px;
    text-align: center;
  }
  .cid-9O6gm39bfE .mbr-section-btn.pos {
    width: 100%;
  }
}
.cid-n7C2XKR0he .modal-dialog {
  height: auto;
}
.cid-n7C2XKR0he .hidden {
  display: none;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uAEDlLafMr {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-7970-1159x1544.jpg");
}
.cid-uAEDlLafMr .subtitle {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 600;
}
.cid-uAEDlLafMr .sc__title {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
  padding-bottom: 0;
}
.cid-uAEDlLafMr .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
}
.cid-uAEJqQHoHo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uAEJqQHoHo .item:focus,
.cid-uAEJqQHoHo span:focus {
  outline: none;
}
.cid-uAEJqQHoHo .item-wrapper {
  position: relative;
}
.cid-uAEJqQHoHo .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uAEJqQHoHo .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uAEJqQHoHo .container {
    padding: 0 24px;
  }
}
.cid-uAEJqQHoHo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
  border-right: 1px solid #f6b092;
  padding: 0 32px;
}
@media (max-width: 767px) {
  .cid-uAEJqQHoHo .embla__slide {
    min-width: 100%;
    max-width: 100%;
    border: none;
    padding: 0 24px;
  }
}
.cid-uAEJqQHoHo .embla__slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.cid-uAEJqQHoHo .embla__slide .slide-content:hover .item-wrapper .item-img,
.cid-uAEJqQHoHo .embla__slide .slide-content:focus .item-wrapper .item-img {
  min-height: 620px;
}
@media (max-width: 767px) {
  .cid-uAEJqQHoHo .embla__slide .slide-content:hover .item-wrapper .item-img,
  .cid-uAEJqQHoHo .embla__slide .slide-content:focus .item-wrapper .item-img {
    min-height: 400px;
  }
}
.cid-uAEJqQHoHo .embla__slide .slide-content:hover .item-wrapper .item-content .item-text,
.cid-uAEJqQHoHo .embla__slide .slide-content:focus .item-wrapper .item-content .item-text {
  transform: translateY(0);
  height: auto;
  opacity: 1;
}
.cid-uAEJqQHoHo .embla__slide .slide-content:hover .btn-wrap,
.cid-uAEJqQHoHo .embla__slide .slide-content:focus .btn-wrap {
  margin-top: 0;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 650px;
  margin-bottom: 32px;
  transition: all 0.3s ease-in-out;
  border-radius: .5rem;
}
@media (max-width: 767px) {
  .cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img {
    min-height: 400px;
    margin-bottom: 24px;
  }
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img img {
  transform: scale(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img .list-wrapper {
  display: block;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 12px;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap {
  background-color: #f6b092;
  padding: 8px 12px;
  border-radius: 5px;
  margin-bottom: 8px;
  width: fit-content;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-img .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid #f6b092;
  padding-top: 32px;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .mbr-date {
  margin-bottom: 0;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .title-wrap {
  display: block;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .title-wrap:hover .item-title,
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .title-wrap:focus .item-title {
  color: #f6b092;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .item-wrapper .item-content .item-text {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  opacity: 0;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .btn-wrap {
  margin-top: -3rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .btn-wrap .mbr-section-btn {
  margin-top: 24px;
  z-index: 1;
}
.cid-uAEJqQHoHo .embla__slide .slide-content .btn-wrap .mbr-number {
  margin: 16px 0 0 0;
}
.cid-uAEJqQHoHo .embla__button--next,
.cid-uAEJqQHoHo .embla__button--prev {
  display: flex;
}
.cid-uAEJqQHoHo .embla__button {
  bottom: 1rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 21px;
  background-color: #2e3134 !important;
  color: #040404;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uAEJqQHoHo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAEJqQHoHo .embla__button:hover {
  opacity: .85 !important;
  color: #3a3e44 !important;
}
.cid-uAEJqQHoHo .embla__button.embla__button--prev {
  left: 32px;
}
.cid-uAEJqQHoHo .embla__button.embla__button--next {
  right: 32px;
}
.cid-uAEJqQHoHo .embla {
  position: relative;
  width: 100%;
  padding: 32px 0;
  border-top: 1px solid #f6b092;
  border-bottom: 1px solid #f6b092;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .cid-uAEJqQHoHo .embla {
    padding: 24px 0;
    padding-bottom: 6rem;
  }
}
.cid-uAEJqQHoHo .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uAEJqQHoHo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAEJqQHoHo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAEJqQHoHo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAEJqQHoHo .list {
  color: #000000;
}
.cid-uAEJqQHoHo .mbr-date {
  color: #f6b092;
}
.cid-uAEJqQHoHo .item-title {
  color: #F9F6E0;
}
.cid-uAEJqQHoHo .item-text {
  color: #192227;
}
.cid-uAEJqQHoHo .mbr-number {
  color: #f6b092;
}
.cid-uAEJqQHoHo .item-title,
.cid-uAEJqQHoHo .mbr-section-btn {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uPElbdgpup {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPElbdgpup .item {
  padding-bottom: 2rem;
}
.cid-uPElbdgpup img,
.cid-uPElbdgpup .item-wrapper {
  transition: all 0.7s;
}
.cid-uPElbdgpup .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPElbdgpup .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPElbdgpup .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPElbdgpup .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPElbdgpup .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPElbdgpup .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPElbdgpup .close::before {
  content: "\e91a";
}
.cid-uPElbdgpup .close:hover {
  color: #fff;
}
.cid-uPElbdgpup .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPElbdgpup .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPElbdgpup .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPElbdgpup .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPElbdgpup .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPElbdgpup .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPElbdgpup .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPElbdgpup .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPElbdgpup .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPElbdgpup .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPElbdgpup .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPElbdgpup .carousel-item img {
    width: 70%;
  }
}
.cid-uPElbdgpup .carousel-inner > .active {
  display: block;
}
.cid-uPElbdgpup .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPElbdgpup .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPElbdgpup .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPElbdgpup .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPElbdgpup .carousel-control,
  .cid-uPElbdgpup .carousel-indicators {
    position: fixed;
  }
}
.cid-uPElbdgpup .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPElbdgpup .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPElbdgpup .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPElbdgpup .modal-content {
    width: 70%;
  }
}
.cid-uPElbdgpup .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPElbdgpup .carousel {
  width: 100%;
}
.cid-uPElbdgpup .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPElbdgpup .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPElbdgpup .modal.fade .modal-dialog,
.cid-uPElbdgpup .modal.in .modal-dialog {
  transform: none;
}
.cid-uPElbdgpup .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPElbdgpup .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPElbdgpup .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPElbdgpup .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPElbdgpup .soc-item::before,
.cid-uPElbdgpup .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPElbdgpup .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPElbdgpup .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPElbdgpup .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPElbdgpup .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPElbdgpup .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPElbdgpup .text {
  color: #ddc499;
}
.cid-uPElbdgpup .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPElbdgpup .right {
    padding-right: 32px;
  }
  .cid-uPElbdgpup .left {
    padding-left: 32px;
  }
}
.cid-uPElbdgpup .mbr-section-title {
  color: #f6b092;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPEnNuUZpW .navbar-dropdown {
  position: relative !important;
}
.cid-uPEnNuUZpW .navbar-dropdown {
  position: absolute !important;
}
.cid-uPEnNuUZpW .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .container {
    flex-wrap: nowrap;
  }
}
.cid-uPEnNuUZpW .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uPEnNuUZpW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEnNuUZpW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPEnNuUZpW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPEnNuUZpW .dropdown-item:hover,
.cid-uPEnNuUZpW .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uPEnNuUZpW .dropdown-item:hover span {
  color: white;
}
.cid-uPEnNuUZpW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPEnNuUZpW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPEnNuUZpW .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uPEnNuUZpW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPEnNuUZpW .nav-link {
  position: relative;
}
.cid-uPEnNuUZpW .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPEnNuUZpW .dropdown-menu,
.cid-uPEnNuUZpW .navbar.opened {
  background: #192227 !important;
}
.cid-uPEnNuUZpW .nav-item:focus,
.cid-uPEnNuUZpW .nav-link:focus {
  outline: none;
}
.cid-uPEnNuUZpW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPEnNuUZpW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPEnNuUZpW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPEnNuUZpW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEnNuUZpW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPEnNuUZpW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPEnNuUZpW .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar {
    min-height: 105px;
  }
}
.cid-uPEnNuUZpW .navbar.opened {
  transition: all 0.3s;
}
.cid-uPEnNuUZpW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPEnNuUZpW .navbar .navbar-logo img {
  width: auto;
}
.cid-uPEnNuUZpW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uPEnNuUZpW .navbar.collapsed {
  justify-content: center;
}
.cid-uPEnNuUZpW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPEnNuUZpW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uPEnNuUZpW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPEnNuUZpW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPEnNuUZpW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPEnNuUZpW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPEnNuUZpW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPEnNuUZpW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPEnNuUZpW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPEnNuUZpW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPEnNuUZpW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPEnNuUZpW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPEnNuUZpW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPEnNuUZpW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPEnNuUZpW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPEnNuUZpW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPEnNuUZpW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPEnNuUZpW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPEnNuUZpW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPEnNuUZpW .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uPEnNuUZpW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPEnNuUZpW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPEnNuUZpW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uPEnNuUZpW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uPEnNuUZpW .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uPEnNuUZpW .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uPEnNuUZpW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPEnNuUZpW .dropdown-item.active,
.cid-uPEnNuUZpW .dropdown-item:active {
  background-color: transparent;
}
.cid-uPEnNuUZpW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPEnNuUZpW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPEnNuUZpW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPEnNuUZpW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uPEnNuUZpW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPEnNuUZpW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPEnNuUZpW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPEnNuUZpW .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uPEnNuUZpW .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uPEnNuUZpW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPEnNuUZpW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uPEnNuUZpW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPEnNuUZpW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEnNuUZpW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEnNuUZpW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPEnNuUZpW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEnNuUZpW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPEnNuUZpW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPEnNuUZpW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEnNuUZpW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uPEnNuUZpW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uPEnNuUZpW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPEnNuUZpW .navbar {
    height: 60px;
  }
  .cid-uPEnNuUZpW .navbar.opened {
    height: auto;
  }
  .cid-uPEnNuUZpW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uPEnNuUZpW .navbar {
    min-height: 105px;
  }
}
.cid-uPEnNwf4tS {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPEnNwf4tS .item {
  padding-bottom: 2rem;
}
.cid-uPEnNwf4tS img,
.cid-uPEnNwf4tS .item-wrapper {
  transition: all 0.7s;
}
.cid-uPEnNwf4tS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPEnNwf4tS .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPEnNwf4tS .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPEnNwf4tS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPEnNwf4tS .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPEnNwf4tS .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPEnNwf4tS .close::before {
  content: "\e91a";
}
.cid-uPEnNwf4tS .close:hover {
  color: #fff;
}
.cid-uPEnNwf4tS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPEnNwf4tS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPEnNwf4tS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPEnNwf4tS .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPEnNwf4tS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPEnNwf4tS .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPEnNwf4tS .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPEnNwf4tS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPEnNwf4tS .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPEnNwf4tS .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPEnNwf4tS .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPEnNwf4tS .carousel-item img {
    width: 70%;
  }
}
.cid-uPEnNwf4tS .carousel-inner > .active {
  display: block;
}
.cid-uPEnNwf4tS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPEnNwf4tS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPEnNwf4tS .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPEnNwf4tS .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPEnNwf4tS .carousel-control,
  .cid-uPEnNwf4tS .carousel-indicators {
    position: fixed;
  }
}
.cid-uPEnNwf4tS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPEnNwf4tS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPEnNwf4tS .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPEnNwf4tS .modal-content {
    width: 70%;
  }
}
.cid-uPEnNwf4tS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPEnNwf4tS .carousel {
  width: 100%;
}
.cid-uPEnNwf4tS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPEnNwf4tS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPEnNwf4tS .modal.fade .modal-dialog,
.cid-uPEnNwf4tS .modal.in .modal-dialog {
  transform: none;
}
.cid-uPEnNwf4tS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPEnNwf4tS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEnNwf4tS .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPEnNwf4tS .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPEnNwf4tS .soc-item::before,
.cid-uPEnNwf4tS .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPEnNwf4tS .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPEnNwf4tS .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPEnNwf4tS .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPEnNwf4tS .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPEnNwf4tS .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPEnNwf4tS .text {
  color: #ddc499;
}
.cid-uPEnNwf4tS .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPEnNwf4tS .right {
    padding-right: 32px;
  }
  .cid-uPEnNwf4tS .left {
    padding-left: 32px;
  }
}
.cid-uPEnNwf4tS .mbr-section-title {
  color: #f6b092;
}
.cid-uPEnNwXsil {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uPEnNwXsil .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPEnNwXsil .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPEnNwXsil .row {
    text-align: center;
  }
  .cid-uPEnNwXsil .row > div {
    margin: auto;
  }
  .cid-uPEnNwXsil .social-row {
    justify-content: center;
  }
}
.cid-uPEnNwXsil .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEnNwXsil .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPEnNwXsil .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPEnNwXsil .list {
    margin-bottom: 0rem;
  }
}
.cid-uPEnNwXsil .mbr-text {
  transition: .2s all;
}
.cid-uPEnNwXsil .mbr-text:hover {
  color: #2e3134;
}
.cid-uPEnNwXsil .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uPEnNwXsil .soc-item:hover {
  background-color: #2e3134;
}
.cid-uPEnNwXsil .mbr-iconfont {
  color: black;
}
.cid-uPEnNwXsil .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uPEnNwXsil .flex {
    display: block;
  }
}
.cid-uPEnNwXsil .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .follow {
    margin-right: 0px;
  }
}
.cid-uPEnNwXsil .footer-sotial {
  justify-content: space-between;
}
.cid-uPEnNwXsil .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uPEnNwXsil div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uPEnNwXsil .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .item-wrap {
    text-align: center;
  }
}
.cid-uPEnNwXsil H5 {
  color: #f7f7f7;
}
.cid-uPEnNwXsil .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uPEnNwXsil .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uPEnNwXsil .number:hover {
  color: #3a3e44;
}
.cid-uPEnNwXsil .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .social_out {
    display: block;
  }
}
.cid-uPEnNwXsil .email {
  transition: .2s all;
}
.cid-uPEnNwXsil .email:hover {
  color: #3a3e44;
}
.cid-uPEnNwXsil .copyright {
  color: #000000;
}
.cid-uPEnNwXsil .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uPEnNwXsil .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEnNwXsil .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uPEnNwXsil .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uPEnNwXsil .socicon {
  color: #fff;
}
.cid-uPEnNwXsil .icons {
  width: 18px;
  height: 20px;
}
.cid-uPEnNwXsil .href {
  padding-bottom: 1.5rem;
}
.cid-uPEnNwXsil .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPEnNwXsil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPEoCbeQd7 .navbar-dropdown {
  position: relative !important;
}
.cid-uPEoCbeQd7 .navbar-dropdown {
  position: absolute !important;
}
.cid-uPEoCbeQd7 .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .container {
    flex-wrap: nowrap;
  }
}
.cid-uPEoCbeQd7 .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uPEoCbeQd7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEoCbeQd7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPEoCbeQd7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPEoCbeQd7 .dropdown-item:hover,
.cid-uPEoCbeQd7 .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uPEoCbeQd7 .dropdown-item:hover span {
  color: white;
}
.cid-uPEoCbeQd7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPEoCbeQd7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPEoCbeQd7 .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uPEoCbeQd7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPEoCbeQd7 .nav-link {
  position: relative;
}
.cid-uPEoCbeQd7 .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPEoCbeQd7 .dropdown-menu,
.cid-uPEoCbeQd7 .navbar.opened {
  background: #192227 !important;
}
.cid-uPEoCbeQd7 .nav-item:focus,
.cid-uPEoCbeQd7 .nav-link:focus {
  outline: none;
}
.cid-uPEoCbeQd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPEoCbeQd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPEoCbeQd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPEoCbeQd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEoCbeQd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPEoCbeQd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPEoCbeQd7 .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar {
    min-height: 105px;
  }
}
.cid-uPEoCbeQd7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uPEoCbeQd7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPEoCbeQd7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uPEoCbeQd7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uPEoCbeQd7 .navbar.collapsed {
  justify-content: center;
}
.cid-uPEoCbeQd7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPEoCbeQd7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uPEoCbeQd7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPEoCbeQd7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPEoCbeQd7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPEoCbeQd7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPEoCbeQd7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPEoCbeQd7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPEoCbeQd7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPEoCbeQd7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPEoCbeQd7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPEoCbeQd7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPEoCbeQd7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPEoCbeQd7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPEoCbeQd7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPEoCbeQd7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPEoCbeQd7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPEoCbeQd7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPEoCbeQd7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPEoCbeQd7 .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uPEoCbeQd7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPEoCbeQd7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPEoCbeQd7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uPEoCbeQd7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uPEoCbeQd7 .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uPEoCbeQd7 .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uPEoCbeQd7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPEoCbeQd7 .dropdown-item.active,
.cid-uPEoCbeQd7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uPEoCbeQd7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPEoCbeQd7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPEoCbeQd7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPEoCbeQd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uPEoCbeQd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPEoCbeQd7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPEoCbeQd7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPEoCbeQd7 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uPEoCbeQd7 .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uPEoCbeQd7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPEoCbeQd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uPEoCbeQd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPEoCbeQd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEoCbeQd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEoCbeQd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPEoCbeQd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEoCbeQd7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPEoCbeQd7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPEoCbeQd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEoCbeQd7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uPEoCbeQd7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uPEoCbeQd7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPEoCbeQd7 .navbar {
    height: 60px;
  }
  .cid-uPEoCbeQd7 .navbar.opened {
    height: auto;
  }
  .cid-uPEoCbeQd7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uPEoCbeQd7 .navbar {
    min-height: 105px;
  }
}
.cid-uPEoCbLrl7 {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPEoCbLrl7 .item {
  padding-bottom: 2rem;
}
.cid-uPEoCbLrl7 img,
.cid-uPEoCbLrl7 .item-wrapper {
  transition: all 0.7s;
}
.cid-uPEoCbLrl7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPEoCbLrl7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPEoCbLrl7 .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPEoCbLrl7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPEoCbLrl7 .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPEoCbLrl7 .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPEoCbLrl7 .close::before {
  content: "\e91a";
}
.cid-uPEoCbLrl7 .close:hover {
  color: #fff;
}
.cid-uPEoCbLrl7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPEoCbLrl7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPEoCbLrl7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPEoCbLrl7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPEoCbLrl7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPEoCbLrl7 .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPEoCbLrl7 .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPEoCbLrl7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPEoCbLrl7 .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPEoCbLrl7 .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPEoCbLrl7 .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPEoCbLrl7 .carousel-item img {
    width: 70%;
  }
}
.cid-uPEoCbLrl7 .carousel-inner > .active {
  display: block;
}
.cid-uPEoCbLrl7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPEoCbLrl7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPEoCbLrl7 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPEoCbLrl7 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPEoCbLrl7 .carousel-control,
  .cid-uPEoCbLrl7 .carousel-indicators {
    position: fixed;
  }
}
.cid-uPEoCbLrl7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPEoCbLrl7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPEoCbLrl7 .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPEoCbLrl7 .modal-content {
    width: 70%;
  }
}
.cid-uPEoCbLrl7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPEoCbLrl7 .carousel {
  width: 100%;
}
.cid-uPEoCbLrl7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPEoCbLrl7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPEoCbLrl7 .modal.fade .modal-dialog,
.cid-uPEoCbLrl7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPEoCbLrl7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPEoCbLrl7 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEoCbLrl7 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPEoCbLrl7 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPEoCbLrl7 .soc-item::before,
.cid-uPEoCbLrl7 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPEoCbLrl7 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPEoCbLrl7 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPEoCbLrl7 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPEoCbLrl7 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPEoCbLrl7 .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPEoCbLrl7 .text {
  color: #ddc499;
}
.cid-uPEoCbLrl7 .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPEoCbLrl7 .right {
    padding-right: 32px;
  }
  .cid-uPEoCbLrl7 .left {
    padding-left: 32px;
  }
}
.cid-uPEoCbLrl7 .mbr-section-title {
  color: #f6b092;
}
.cid-uPEoCctafD {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uPEoCctafD .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPEoCctafD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPEoCctafD .row {
    text-align: center;
  }
  .cid-uPEoCctafD .row > div {
    margin: auto;
  }
  .cid-uPEoCctafD .social-row {
    justify-content: center;
  }
}
.cid-uPEoCctafD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEoCctafD .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPEoCctafD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPEoCctafD .list {
    margin-bottom: 0rem;
  }
}
.cid-uPEoCctafD .mbr-text {
  transition: .2s all;
}
.cid-uPEoCctafD .mbr-text:hover {
  color: #2e3134;
}
.cid-uPEoCctafD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uPEoCctafD .soc-item:hover {
  background-color: #2e3134;
}
.cid-uPEoCctafD .mbr-iconfont {
  color: black;
}
.cid-uPEoCctafD .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uPEoCctafD .flex {
    display: block;
  }
}
.cid-uPEoCctafD .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .follow {
    margin-right: 0px;
  }
}
.cid-uPEoCctafD .footer-sotial {
  justify-content: space-between;
}
.cid-uPEoCctafD .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uPEoCctafD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uPEoCctafD .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .item-wrap {
    text-align: center;
  }
}
.cid-uPEoCctafD H5 {
  color: #f7f7f7;
}
.cid-uPEoCctafD .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uPEoCctafD .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uPEoCctafD .number:hover {
  color: #3a3e44;
}
.cid-uPEoCctafD .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .social_out {
    display: block;
  }
}
.cid-uPEoCctafD .email {
  transition: .2s all;
}
.cid-uPEoCctafD .email:hover {
  color: #3a3e44;
}
.cid-uPEoCctafD .copyright {
  color: #000000;
}
.cid-uPEoCctafD .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uPEoCctafD .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEoCctafD .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uPEoCctafD .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uPEoCctafD .socicon {
  color: #fff;
}
.cid-uPEoCctafD .icons {
  width: 18px;
  height: 20px;
}
.cid-uPEoCctafD .href {
  padding-bottom: 1.5rem;
}
.cid-uPEoCctafD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPEoCctafD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPEp2xXg0T .navbar-dropdown {
  position: relative !important;
}
.cid-uPEp2xXg0T .navbar-dropdown {
  position: absolute !important;
}
.cid-uPEp2xXg0T .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .container {
    flex-wrap: nowrap;
  }
}
.cid-uPEp2xXg0T .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uPEp2xXg0T .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEp2xXg0T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPEp2xXg0T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPEp2xXg0T .dropdown-item:hover,
.cid-uPEp2xXg0T .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uPEp2xXg0T .dropdown-item:hover span {
  color: white;
}
.cid-uPEp2xXg0T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPEp2xXg0T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPEp2xXg0T .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uPEp2xXg0T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPEp2xXg0T .nav-link {
  position: relative;
}
.cid-uPEp2xXg0T .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPEp2xXg0T .dropdown-menu,
.cid-uPEp2xXg0T .navbar.opened {
  background: #192227 !important;
}
.cid-uPEp2xXg0T .nav-item:focus,
.cid-uPEp2xXg0T .nav-link:focus {
  outline: none;
}
.cid-uPEp2xXg0T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPEp2xXg0T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPEp2xXg0T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPEp2xXg0T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEp2xXg0T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPEp2xXg0T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPEp2xXg0T .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar {
    min-height: 105px;
  }
}
.cid-uPEp2xXg0T .navbar.opened {
  transition: all 0.3s;
}
.cid-uPEp2xXg0T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPEp2xXg0T .navbar .navbar-logo img {
  width: auto;
}
.cid-uPEp2xXg0T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uPEp2xXg0T .navbar.collapsed {
  justify-content: center;
}
.cid-uPEp2xXg0T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPEp2xXg0T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uPEp2xXg0T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPEp2xXg0T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPEp2xXg0T .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPEp2xXg0T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPEp2xXg0T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPEp2xXg0T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPEp2xXg0T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPEp2xXg0T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPEp2xXg0T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPEp2xXg0T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPEp2xXg0T .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPEp2xXg0T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPEp2xXg0T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPEp2xXg0T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPEp2xXg0T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPEp2xXg0T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPEp2xXg0T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPEp2xXg0T .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uPEp2xXg0T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPEp2xXg0T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPEp2xXg0T .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uPEp2xXg0T .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uPEp2xXg0T .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uPEp2xXg0T .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uPEp2xXg0T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPEp2xXg0T .dropdown-item.active,
.cid-uPEp2xXg0T .dropdown-item:active {
  background-color: transparent;
}
.cid-uPEp2xXg0T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPEp2xXg0T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPEp2xXg0T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPEp2xXg0T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uPEp2xXg0T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPEp2xXg0T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPEp2xXg0T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPEp2xXg0T .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uPEp2xXg0T .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uPEp2xXg0T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPEp2xXg0T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uPEp2xXg0T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPEp2xXg0T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEp2xXg0T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEp2xXg0T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPEp2xXg0T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEp2xXg0T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPEp2xXg0T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPEp2xXg0T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEp2xXg0T .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uPEp2xXg0T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uPEp2xXg0T .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPEp2xXg0T .navbar {
    height: 60px;
  }
  .cid-uPEp2xXg0T .navbar.opened {
    height: auto;
  }
  .cid-uPEp2xXg0T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uPEp2xXg0T .navbar {
    min-height: 105px;
  }
}
.cid-uPEp2yvk9m {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPEp2yvk9m .item {
  padding-bottom: 2rem;
}
.cid-uPEp2yvk9m img,
.cid-uPEp2yvk9m .item-wrapper {
  transition: all 0.7s;
}
.cid-uPEp2yvk9m .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPEp2yvk9m .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPEp2yvk9m .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPEp2yvk9m .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPEp2yvk9m .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPEp2yvk9m .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPEp2yvk9m .close::before {
  content: "\e91a";
}
.cid-uPEp2yvk9m .close:hover {
  color: #fff;
}
.cid-uPEp2yvk9m .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPEp2yvk9m .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPEp2yvk9m .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPEp2yvk9m .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPEp2yvk9m .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPEp2yvk9m .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPEp2yvk9m .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPEp2yvk9m .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPEp2yvk9m .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPEp2yvk9m .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPEp2yvk9m .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPEp2yvk9m .carousel-item img {
    width: 70%;
  }
}
.cid-uPEp2yvk9m .carousel-inner > .active {
  display: block;
}
.cid-uPEp2yvk9m .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPEp2yvk9m .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPEp2yvk9m .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPEp2yvk9m .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPEp2yvk9m .carousel-control,
  .cid-uPEp2yvk9m .carousel-indicators {
    position: fixed;
  }
}
.cid-uPEp2yvk9m .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPEp2yvk9m .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPEp2yvk9m .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPEp2yvk9m .modal-content {
    width: 70%;
  }
}
.cid-uPEp2yvk9m .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPEp2yvk9m .carousel {
  width: 100%;
}
.cid-uPEp2yvk9m .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPEp2yvk9m .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPEp2yvk9m .modal.fade .modal-dialog,
.cid-uPEp2yvk9m .modal.in .modal-dialog {
  transform: none;
}
.cid-uPEp2yvk9m .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPEp2yvk9m .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEp2yvk9m .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPEp2yvk9m .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPEp2yvk9m .soc-item::before,
.cid-uPEp2yvk9m .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPEp2yvk9m .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPEp2yvk9m .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPEp2yvk9m .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPEp2yvk9m .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPEp2yvk9m .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPEp2yvk9m .text {
  color: #ddc499;
}
.cid-uPEp2yvk9m .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPEp2yvk9m .right {
    padding-right: 32px;
  }
  .cid-uPEp2yvk9m .left {
    padding-left: 32px;
  }
}
.cid-uPEp2yvk9m .mbr-section-title {
  color: #f6b092;
}
.cid-uPEp2zi9M7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uPEp2zi9M7 .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPEp2zi9M7 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPEp2zi9M7 .row {
    text-align: center;
  }
  .cid-uPEp2zi9M7 .row > div {
    margin: auto;
  }
  .cid-uPEp2zi9M7 .social-row {
    justify-content: center;
  }
}
.cid-uPEp2zi9M7 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEp2zi9M7 .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPEp2zi9M7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPEp2zi9M7 .list {
    margin-bottom: 0rem;
  }
}
.cid-uPEp2zi9M7 .mbr-text {
  transition: .2s all;
}
.cid-uPEp2zi9M7 .mbr-text:hover {
  color: #2e3134;
}
.cid-uPEp2zi9M7 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uPEp2zi9M7 .soc-item:hover {
  background-color: #2e3134;
}
.cid-uPEp2zi9M7 .mbr-iconfont {
  color: black;
}
.cid-uPEp2zi9M7 .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uPEp2zi9M7 .flex {
    display: block;
  }
}
.cid-uPEp2zi9M7 .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .follow {
    margin-right: 0px;
  }
}
.cid-uPEp2zi9M7 .footer-sotial {
  justify-content: space-between;
}
.cid-uPEp2zi9M7 .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uPEp2zi9M7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uPEp2zi9M7 .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .item-wrap {
    text-align: center;
  }
}
.cid-uPEp2zi9M7 H5 {
  color: #f7f7f7;
}
.cid-uPEp2zi9M7 .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uPEp2zi9M7 .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uPEp2zi9M7 .number:hover {
  color: #3a3e44;
}
.cid-uPEp2zi9M7 .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .social_out {
    display: block;
  }
}
.cid-uPEp2zi9M7 .email {
  transition: .2s all;
}
.cid-uPEp2zi9M7 .email:hover {
  color: #3a3e44;
}
.cid-uPEp2zi9M7 .copyright {
  color: #000000;
}
.cid-uPEp2zi9M7 .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uPEp2zi9M7 .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEp2zi9M7 .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uPEp2zi9M7 .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uPEp2zi9M7 .socicon {
  color: #fff;
}
.cid-uPEp2zi9M7 .icons {
  width: 18px;
  height: 20px;
}
.cid-uPEp2zi9M7 .href {
  padding-bottom: 1.5rem;
}
.cid-uPEp2zi9M7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPEp2zi9M7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPEpxKyGaH .navbar-dropdown {
  position: relative !important;
}
.cid-uPEpxKyGaH .navbar-dropdown {
  position: absolute !important;
}
.cid-uPEpxKyGaH .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .container {
    flex-wrap: nowrap;
  }
}
.cid-uPEpxKyGaH .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uPEpxKyGaH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEpxKyGaH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPEpxKyGaH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPEpxKyGaH .dropdown-item:hover,
.cid-uPEpxKyGaH .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uPEpxKyGaH .dropdown-item:hover span {
  color: white;
}
.cid-uPEpxKyGaH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPEpxKyGaH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPEpxKyGaH .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uPEpxKyGaH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPEpxKyGaH .nav-link {
  position: relative;
}
.cid-uPEpxKyGaH .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPEpxKyGaH .dropdown-menu,
.cid-uPEpxKyGaH .navbar.opened {
  background: #192227 !important;
}
.cid-uPEpxKyGaH .nav-item:focus,
.cid-uPEpxKyGaH .nav-link:focus {
  outline: none;
}
.cid-uPEpxKyGaH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPEpxKyGaH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPEpxKyGaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPEpxKyGaH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPEpxKyGaH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPEpxKyGaH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPEpxKyGaH .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar {
    min-height: 105px;
  }
}
.cid-uPEpxKyGaH .navbar.opened {
  transition: all 0.3s;
}
.cid-uPEpxKyGaH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPEpxKyGaH .navbar .navbar-logo img {
  width: auto;
}
.cid-uPEpxKyGaH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uPEpxKyGaH .navbar.collapsed {
  justify-content: center;
}
.cid-uPEpxKyGaH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPEpxKyGaH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uPEpxKyGaH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPEpxKyGaH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPEpxKyGaH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uPEpxKyGaH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPEpxKyGaH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPEpxKyGaH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPEpxKyGaH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPEpxKyGaH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPEpxKyGaH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPEpxKyGaH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPEpxKyGaH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uPEpxKyGaH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPEpxKyGaH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPEpxKyGaH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPEpxKyGaH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPEpxKyGaH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPEpxKyGaH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPEpxKyGaH .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uPEpxKyGaH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPEpxKyGaH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPEpxKyGaH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uPEpxKyGaH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uPEpxKyGaH .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uPEpxKyGaH .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uPEpxKyGaH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPEpxKyGaH .dropdown-item.active,
.cid-uPEpxKyGaH .dropdown-item:active {
  background-color: transparent;
}
.cid-uPEpxKyGaH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPEpxKyGaH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPEpxKyGaH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPEpxKyGaH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uPEpxKyGaH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPEpxKyGaH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPEpxKyGaH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uPEpxKyGaH .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uPEpxKyGaH .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uPEpxKyGaH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uPEpxKyGaH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uPEpxKyGaH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPEpxKyGaH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEpxKyGaH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPEpxKyGaH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPEpxKyGaH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEpxKyGaH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPEpxKyGaH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPEpxKyGaH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPEpxKyGaH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uPEpxKyGaH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uPEpxKyGaH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPEpxKyGaH .navbar {
    height: 60px;
  }
  .cid-uPEpxKyGaH .navbar.opened {
    height: auto;
  }
  .cid-uPEpxKyGaH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uPEpxKyGaH .navbar {
    min-height: 105px;
  }
}
.cid-uPEpxL50FG {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPEpxL50FG .item {
  padding-bottom: 2rem;
}
.cid-uPEpxL50FG img,
.cid-uPEpxL50FG .item-wrapper {
  transition: all 0.7s;
}
.cid-uPEpxL50FG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPEpxL50FG .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPEpxL50FG .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPEpxL50FG .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPEpxL50FG .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPEpxL50FG .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPEpxL50FG .close::before {
  content: "\e91a";
}
.cid-uPEpxL50FG .close:hover {
  color: #fff;
}
.cid-uPEpxL50FG .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPEpxL50FG .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPEpxL50FG .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPEpxL50FG .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPEpxL50FG .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPEpxL50FG .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPEpxL50FG .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPEpxL50FG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPEpxL50FG .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPEpxL50FG .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPEpxL50FG .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPEpxL50FG .carousel-item img {
    width: 70%;
  }
}
.cid-uPEpxL50FG .carousel-inner > .active {
  display: block;
}
.cid-uPEpxL50FG .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPEpxL50FG .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPEpxL50FG .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPEpxL50FG .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPEpxL50FG .carousel-control,
  .cid-uPEpxL50FG .carousel-indicators {
    position: fixed;
  }
}
.cid-uPEpxL50FG .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPEpxL50FG .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPEpxL50FG .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPEpxL50FG .modal-content {
    width: 70%;
  }
}
.cid-uPEpxL50FG .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPEpxL50FG .carousel {
  width: 100%;
}
.cid-uPEpxL50FG .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPEpxL50FG .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPEpxL50FG .modal.fade .modal-dialog,
.cid-uPEpxL50FG .modal.in .modal-dialog {
  transform: none;
}
.cid-uPEpxL50FG .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPEpxL50FG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEpxL50FG .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPEpxL50FG .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPEpxL50FG .soc-item::before,
.cid-uPEpxL50FG .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPEpxL50FG .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPEpxL50FG .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPEpxL50FG .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPEpxL50FG .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPEpxL50FG .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPEpxL50FG .text {
  color: #ddc499;
}
.cid-uPEpxL50FG .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPEpxL50FG .right {
    padding-right: 32px;
  }
  .cid-uPEpxL50FG .left {
    padding-left: 32px;
  }
}
.cid-uPEpxL50FG .mbr-section-title {
  color: #f6b092;
}
.cid-uPEpxLLPoL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uPEpxLLPoL .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPEpxLLPoL .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uPEpxLLPoL .row {
    text-align: center;
  }
  .cid-uPEpxLLPoL .row > div {
    margin: auto;
  }
  .cid-uPEpxLLPoL .social-row {
    justify-content: center;
  }
}
.cid-uPEpxLLPoL .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPEpxLLPoL .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uPEpxLLPoL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPEpxLLPoL .list {
    margin-bottom: 0rem;
  }
}
.cid-uPEpxLLPoL .mbr-text {
  transition: .2s all;
}
.cid-uPEpxLLPoL .mbr-text:hover {
  color: #2e3134;
}
.cid-uPEpxLLPoL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uPEpxLLPoL .soc-item:hover {
  background-color: #2e3134;
}
.cid-uPEpxLLPoL .mbr-iconfont {
  color: black;
}
.cid-uPEpxLLPoL .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uPEpxLLPoL .flex {
    display: block;
  }
}
.cid-uPEpxLLPoL .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .follow {
    margin-right: 0px;
  }
}
.cid-uPEpxLLPoL .footer-sotial {
  justify-content: space-between;
}
.cid-uPEpxLLPoL .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uPEpxLLPoL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uPEpxLLPoL .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .item-wrap {
    text-align: center;
  }
}
.cid-uPEpxLLPoL H5 {
  color: #f7f7f7;
}
.cid-uPEpxLLPoL .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uPEpxLLPoL .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uPEpxLLPoL .number:hover {
  color: #3a3e44;
}
.cid-uPEpxLLPoL .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .social_out {
    display: block;
  }
}
.cid-uPEpxLLPoL .email {
  transition: .2s all;
}
.cid-uPEpxLLPoL .email:hover {
  color: #3a3e44;
}
.cid-uPEpxLLPoL .copyright {
  color: #000000;
}
.cid-uPEpxLLPoL .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uPEpxLLPoL .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uPEpxLLPoL .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uPEpxLLPoL .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uPEpxLLPoL .socicon {
  color: #fff;
}
.cid-uPEpxLLPoL .icons {
  width: 18px;
  height: 20px;
}
.cid-uPEpxLLPoL .href {
  padding-bottom: 1.5rem;
}
.cid-uPEpxLLPoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPEpxLLPoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: relative !important;
}
.cid-uqfibRspZD .navbar-dropdown {
  position: absolute !important;
}
.cid-uqfibRspZD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .container {
    flex-wrap: nowrap;
  }
}
.cid-uqfibRspZD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uqfibRspZD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqfibRspZD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqfibRspZD .dropdown-item:hover,
.cid-uqfibRspZD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uqfibRspZD .dropdown-item:hover span {
  color: white;
}
.cid-uqfibRspZD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqfibRspZD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqfibRspZD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqfibRspZD .nav-link {
  position: relative;
}
.cid-uqfibRspZD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqfibRspZD .dropdown-menu,
.cid-uqfibRspZD .navbar.opened {
  background: #192227 !important;
}
.cid-uqfibRspZD .nav-item:focus,
.cid-uqfibRspZD .nav-link:focus {
  outline: none;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqfibRspZD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqfibRspZD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqfibRspZD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqfibRspZD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.opened {
  transition: all 0.3s;
}
.cid-uqfibRspZD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqfibRspZD .navbar .navbar-logo img {
  width: auto;
}
.cid-uqfibRspZD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uqfibRspZD .navbar.collapsed {
  justify-content: center;
}
.cid-uqfibRspZD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqfibRspZD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqfibRspZD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqfibRspZD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqfibRspZD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqfibRspZD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqfibRspZD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqfibRspZD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqfibRspZD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqfibRspZD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqfibRspZD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqfibRspZD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqfibRspZD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqfibRspZD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqfibRspZD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqfibRspZD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uqfibRspZD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uqfibRspZD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqfibRspZD .dropdown-item.active,
.cid-uqfibRspZD .dropdown-item:active {
  background-color: transparent;
}
.cid-uqfibRspZD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqfibRspZD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uqfibRspZD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqfibRspZD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqfibRspZD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqfibRspZD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqfibRspZD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uqfibRspZD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uqfibRspZD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqfibRspZD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqfibRspZD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqfibRspZD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqfibRspZD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uqfibRspZD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqfibRspZD .navbar {
    height: 60px;
  }
  .cid-uqfibRspZD .navbar.opened {
    height: auto;
  }
  .cid-uqfibRspZD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uqfibRspZD .navbar {
    min-height: 105px;
  }
}
.cid-uPGWni9z2M {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #3a3e44;
}
.cid-uPGWni9z2M .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-uPGWni9z2M .mbr-section-title {
  color: #fafafa;
  margin-bottom: 20.4px;
}
.cid-uPGWni9z2M .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-uPGWni9z2M .star {
  color: #f6b092;
  fill: currentColor;
  overflow: hidden;
}
.cid-uPGWni9z2M .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-uPGWni9z2M .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-uPGWMQ1BE3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a6a6a6;
}
.cid-uPGWMQ1BE3 h2,
.cid-uPGWMQ1BE3 h3,
.cid-uPGWMQ1BE3 h4,
.cid-uPGWMQ1BE3 p {
  margin: 0;
}
.cid-uPGWMQ1BE3 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-uPGWMQ1BE3 .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-uPGWMQ1BE3 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-uPGVXbC98a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3a3e44;
}
.cid-uPGVXbC98a .item {
  padding-bottom: 2rem;
}
.cid-uPGVXbC98a img,
.cid-uPGVXbC98a .item-wrapper {
  transition: all 0.7s;
}
.cid-uPGVXbC98a .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPGVXbC98a .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPGVXbC98a .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPGVXbC98a .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPGVXbC98a .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPGVXbC98a .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPGVXbC98a .close::before {
  content: "\e91a";
}
.cid-uPGVXbC98a .close:hover {
  color: #fff;
}
.cid-uPGVXbC98a .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPGVXbC98a .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPGVXbC98a .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPGVXbC98a .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPGVXbC98a .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPGVXbC98a .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPGVXbC98a .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPGVXbC98a .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPGVXbC98a .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPGVXbC98a .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPGVXbC98a .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPGVXbC98a .carousel-item img {
    width: 70%;
  }
}
.cid-uPGVXbC98a .carousel-inner > .active {
  display: block;
}
.cid-uPGVXbC98a .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGVXbC98a .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPGVXbC98a .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPGVXbC98a .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPGVXbC98a .carousel-control,
  .cid-uPGVXbC98a .carousel-indicators {
    position: fixed;
  }
}
.cid-uPGVXbC98a .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPGVXbC98a .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPGVXbC98a .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPGVXbC98a .modal-content {
    width: 70%;
  }
}
.cid-uPGVXbC98a .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPGVXbC98a .carousel {
  width: 100%;
}
.cid-uPGVXbC98a .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPGVXbC98a .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPGVXbC98a .modal.fade .modal-dialog,
.cid-uPGVXbC98a .modal.in .modal-dialog {
  transform: none;
}
.cid-uPGVXbC98a .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPGVXbC98a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPGVXbC98a .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPGVXbC98a .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPGVXbC98a .soc-item::before,
.cid-uPGVXbC98a .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPGVXbC98a .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPGVXbC98a .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPGVXbC98a .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPGVXbC98a .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPGVXbC98a .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPGVXbC98a .text {
  color: #ddc499;
}
.cid-uPGVXbC98a .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPGVXbC98a .right {
    padding-right: 32px;
  }
  .cid-uPGVXbC98a .left {
    padding-left: 32px;
  }
}
.cid-uPGVXbC98a .mbr-section-title {
  color: #f6b092;
}
.cid-uPGVYIDFpl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3a3e44;
}
.cid-uPGVYIDFpl .item {
  padding-bottom: 2rem;
}
.cid-uPGVYIDFpl img,
.cid-uPGVYIDFpl .item-wrapper {
  transition: all 0.7s;
}
.cid-uPGVYIDFpl .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPGVYIDFpl .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPGVYIDFpl .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPGVYIDFpl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPGVYIDFpl .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPGVYIDFpl .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPGVYIDFpl .close::before {
  content: "\e91a";
}
.cid-uPGVYIDFpl .close:hover {
  color: #fff;
}
.cid-uPGVYIDFpl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPGVYIDFpl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPGVYIDFpl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPGVYIDFpl .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPGVYIDFpl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPGVYIDFpl .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPGVYIDFpl .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPGVYIDFpl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPGVYIDFpl .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPGVYIDFpl .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPGVYIDFpl .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPGVYIDFpl .carousel-item img {
    width: 70%;
  }
}
.cid-uPGVYIDFpl .carousel-inner > .active {
  display: block;
}
.cid-uPGVYIDFpl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGVYIDFpl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPGVYIDFpl .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPGVYIDFpl .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPGVYIDFpl .carousel-control,
  .cid-uPGVYIDFpl .carousel-indicators {
    position: fixed;
  }
}
.cid-uPGVYIDFpl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPGVYIDFpl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPGVYIDFpl .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPGVYIDFpl .modal-content {
    width: 70%;
  }
}
.cid-uPGVYIDFpl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPGVYIDFpl .carousel {
  width: 100%;
}
.cid-uPGVYIDFpl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPGVYIDFpl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPGVYIDFpl .modal.fade .modal-dialog,
.cid-uPGVYIDFpl .modal.in .modal-dialog {
  transform: none;
}
.cid-uPGVYIDFpl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPGVYIDFpl .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPGVYIDFpl .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPGVYIDFpl .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPGVYIDFpl .soc-item::before,
.cid-uPGVYIDFpl .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPGVYIDFpl .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPGVYIDFpl .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPGVYIDFpl .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPGVYIDFpl .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPGVYIDFpl .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPGVYIDFpl .text {
  color: #ddc499;
}
.cid-uPGVYIDFpl .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPGVYIDFpl .right {
    padding-right: 32px;
  }
  .cid-uPGVYIDFpl .left {
    padding-left: 32px;
  }
}
.cid-uPGVYIDFpl .mbr-section-title {
  color: #f6b092;
}
.cid-uPGVYIDFpl .mbr-text {
  color: #efefef;
}
.cid-uPGW0Tggwo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3a3e44;
}
.cid-uPGW0Tggwo .item {
  padding-bottom: 2rem;
}
.cid-uPGW0Tggwo img,
.cid-uPGW0Tggwo .item-wrapper {
  transition: all 0.7s;
}
.cid-uPGW0Tggwo .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPGW0Tggwo .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPGW0Tggwo .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPGW0Tggwo .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPGW0Tggwo .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPGW0Tggwo .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPGW0Tggwo .close::before {
  content: "\e91a";
}
.cid-uPGW0Tggwo .close:hover {
  color: #fff;
}
.cid-uPGW0Tggwo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPGW0Tggwo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPGW0Tggwo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPGW0Tggwo .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPGW0Tggwo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPGW0Tggwo .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPGW0Tggwo .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPGW0Tggwo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPGW0Tggwo .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPGW0Tggwo .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPGW0Tggwo .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPGW0Tggwo .carousel-item img {
    width: 70%;
  }
}
.cid-uPGW0Tggwo .carousel-inner > .active {
  display: block;
}
.cid-uPGW0Tggwo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGW0Tggwo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPGW0Tggwo .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPGW0Tggwo .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPGW0Tggwo .carousel-control,
  .cid-uPGW0Tggwo .carousel-indicators {
    position: fixed;
  }
}
.cid-uPGW0Tggwo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPGW0Tggwo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPGW0Tggwo .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPGW0Tggwo .modal-content {
    width: 70%;
  }
}
.cid-uPGW0Tggwo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPGW0Tggwo .carousel {
  width: 100%;
}
.cid-uPGW0Tggwo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPGW0Tggwo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPGW0Tggwo .modal.fade .modal-dialog,
.cid-uPGW0Tggwo .modal.in .modal-dialog {
  transform: none;
}
.cid-uPGW0Tggwo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPGW0Tggwo .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPGW0Tggwo .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPGW0Tggwo .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPGW0Tggwo .soc-item::before,
.cid-uPGW0Tggwo .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPGW0Tggwo .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPGW0Tggwo .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPGW0Tggwo .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPGW0Tggwo .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPGW0Tggwo .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPGW0Tggwo .text {
  color: #ddc499;
}
.cid-uPGW0Tggwo .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPGW0Tggwo .right {
    padding-right: 32px;
  }
  .cid-uPGW0Tggwo .left {
    padding-left: 32px;
  }
}
.cid-uPGW0Tggwo .mbr-section-title {
  color: #f6b092;
}
.cid-uPGW1VtGy2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #3a3e44;
}
.cid-uPGW1VtGy2 .item {
  padding-bottom: 2rem;
}
.cid-uPGW1VtGy2 img,
.cid-uPGW1VtGy2 .item-wrapper {
  transition: all 0.7s;
}
.cid-uPGW1VtGy2 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPGW1VtGy2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPGW1VtGy2 .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPGW1VtGy2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPGW1VtGy2 .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPGW1VtGy2 .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPGW1VtGy2 .close::before {
  content: "\e91a";
}
.cid-uPGW1VtGy2 .close:hover {
  color: #fff;
}
.cid-uPGW1VtGy2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPGW1VtGy2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPGW1VtGy2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPGW1VtGy2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPGW1VtGy2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPGW1VtGy2 .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPGW1VtGy2 .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPGW1VtGy2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPGW1VtGy2 .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPGW1VtGy2 .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPGW1VtGy2 .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPGW1VtGy2 .carousel-item img {
    width: 70%;
  }
}
.cid-uPGW1VtGy2 .carousel-inner > .active {
  display: block;
}
.cid-uPGW1VtGy2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGW1VtGy2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPGW1VtGy2 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPGW1VtGy2 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPGW1VtGy2 .carousel-control,
  .cid-uPGW1VtGy2 .carousel-indicators {
    position: fixed;
  }
}
.cid-uPGW1VtGy2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPGW1VtGy2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPGW1VtGy2 .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPGW1VtGy2 .modal-content {
    width: 70%;
  }
}
.cid-uPGW1VtGy2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPGW1VtGy2 .carousel {
  width: 100%;
}
.cid-uPGW1VtGy2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPGW1VtGy2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPGW1VtGy2 .modal.fade .modal-dialog,
.cid-uPGW1VtGy2 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPGW1VtGy2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPGW1VtGy2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPGW1VtGy2 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPGW1VtGy2 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPGW1VtGy2 .soc-item::before,
.cid-uPGW1VtGy2 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPGW1VtGy2 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPGW1VtGy2 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPGW1VtGy2 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPGW1VtGy2 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPGW1VtGy2 .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPGW1VtGy2 .text {
  color: #ddc499;
}
.cid-uPGW1VtGy2 .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPGW1VtGy2 .right {
    padding-right: 32px;
  }
  .cid-uPGW1VtGy2 .left {
    padding-left: 32px;
  }
}
.cid-uPGW1VtGy2 .mbr-section-title {
  color: #f6b092;
}
.cid-uPGW2RHnwR {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uPGW2RHnwR .item {
  padding-bottom: 2rem;
}
.cid-uPGW2RHnwR img,
.cid-uPGW2RHnwR .item-wrapper {
  transition: all 0.7s;
}
.cid-uPGW2RHnwR .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPGW2RHnwR .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPGW2RHnwR .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uPGW2RHnwR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPGW2RHnwR .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uPGW2RHnwR .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPGW2RHnwR .close::before {
  content: "\e91a";
}
.cid-uPGW2RHnwR .close:hover {
  color: #fff;
}
.cid-uPGW2RHnwR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPGW2RHnwR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPGW2RHnwR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPGW2RHnwR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPGW2RHnwR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uPGW2RHnwR .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uPGW2RHnwR .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uPGW2RHnwR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uPGW2RHnwR .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uPGW2RHnwR .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uPGW2RHnwR .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uPGW2RHnwR .carousel-item img {
    width: 70%;
  }
}
.cid-uPGW2RHnwR .carousel-inner > .active {
  display: block;
}
.cid-uPGW2RHnwR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGW2RHnwR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPGW2RHnwR .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uPGW2RHnwR .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uPGW2RHnwR .carousel-control,
  .cid-uPGW2RHnwR .carousel-indicators {
    position: fixed;
  }
}
.cid-uPGW2RHnwR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPGW2RHnwR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPGW2RHnwR .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uPGW2RHnwR .modal-content {
    width: 70%;
  }
}
.cid-uPGW2RHnwR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPGW2RHnwR .carousel {
  width: 100%;
}
.cid-uPGW2RHnwR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPGW2RHnwR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPGW2RHnwR .modal.fade .modal-dialog,
.cid-uPGW2RHnwR .modal.in .modal-dialog {
  transform: none;
}
.cid-uPGW2RHnwR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPGW2RHnwR .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uPGW2RHnwR .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uPGW2RHnwR .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uPGW2RHnwR .soc-item::before,
.cid-uPGW2RHnwR .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uPGW2RHnwR .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uPGW2RHnwR .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uPGW2RHnwR .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uPGW2RHnwR .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uPGW2RHnwR .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uPGW2RHnwR .text {
  color: #ddc499;
}
.cid-uPGW2RHnwR .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uPGW2RHnwR .right {
    padding-right: 32px;
  }
  .cid-uPGW2RHnwR .left {
    padding-left: 32px;
  }
}
.cid-uPGW2RHnwR .mbr-section-title {
  color: #f6b092;
}
.cid-uqNEyKKQ4K {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uqNEyKKQ4K .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uqNEyKKQ4K .row {
    text-align: center;
  }
  .cid-uqNEyKKQ4K .row > div {
    margin: auto;
  }
  .cid-uqNEyKKQ4K .social-row {
    justify-content: center;
  }
}
.cid-uqNEyKKQ4K .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uqNEyKKQ4K .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uqNEyKKQ4K .list {
    margin-bottom: 0rem;
  }
}
.cid-uqNEyKKQ4K .mbr-text {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .mbr-text:hover {
  color: #2e3134;
}
.cid-uqNEyKKQ4K .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uqNEyKKQ4K .soc-item:hover {
  background-color: #2e3134;
}
.cid-uqNEyKKQ4K .mbr-iconfont {
  color: black;
}
.cid-uqNEyKKQ4K .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uqNEyKKQ4K .flex {
    display: block;
  }
}
.cid-uqNEyKKQ4K .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .follow {
    margin-right: 0px;
  }
}
.cid-uqNEyKKQ4K .footer-sotial {
  justify-content: space-between;
}
.cid-uqNEyKKQ4K .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uqNEyKKQ4K div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uqNEyKKQ4K .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .item-wrap {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K H5 {
  color: #f7f7f7;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uqNEyKKQ4K .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uqNEyKKQ4K .number:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .social_out {
    display: block;
  }
}
.cid-uqNEyKKQ4K .email {
  transition: .2s all;
}
.cid-uqNEyKKQ4K .email:hover {
  color: #3a3e44;
}
.cid-uqNEyKKQ4K .copyright {
  color: #000000;
}
.cid-uqNEyKKQ4K .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uqNEyKKQ4K .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uqNEyKKQ4K .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uqNEyKKQ4K .socicon {
  color: #fff;
}
.cid-uqNEyKKQ4K .icons {
  width: 18px;
  height: 20px;
}
.cid-uqNEyKKQ4K .href {
  padding-bottom: 1.5rem;
}
.cid-uqNEyKKQ4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqNEyKKQ4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWkDiYUDo .navbar-dropdown {
  position: relative !important;
}
.cid-uTWkDiYUDo .navbar-dropdown {
  position: absolute !important;
}
.cid-uTWkDiYUDo .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .container {
    flex-wrap: nowrap;
  }
}
.cid-uTWkDiYUDo .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uTWkDiYUDo .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkDiYUDo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTWkDiYUDo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTWkDiYUDo .dropdown-item:hover,
.cid-uTWkDiYUDo .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uTWkDiYUDo .dropdown-item:hover span {
  color: white;
}
.cid-uTWkDiYUDo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTWkDiYUDo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTWkDiYUDo .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uTWkDiYUDo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTWkDiYUDo .nav-link {
  position: relative;
}
.cid-uTWkDiYUDo .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTWkDiYUDo .dropdown-menu,
.cid-uTWkDiYUDo .navbar.opened {
  background: #192227 !important;
}
.cid-uTWkDiYUDo .nav-item:focus,
.cid-uTWkDiYUDo .nav-link:focus {
  outline: none;
}
.cid-uTWkDiYUDo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTWkDiYUDo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTWkDiYUDo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTWkDiYUDo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkDiYUDo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTWkDiYUDo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTWkDiYUDo .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar {
    min-height: 105px;
  }
}
.cid-uTWkDiYUDo .navbar.opened {
  transition: all 0.3s;
}
.cid-uTWkDiYUDo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTWkDiYUDo .navbar .navbar-logo img {
  width: auto;
}
.cid-uTWkDiYUDo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uTWkDiYUDo .navbar.collapsed {
  justify-content: center;
}
.cid-uTWkDiYUDo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTWkDiYUDo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uTWkDiYUDo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTWkDiYUDo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTWkDiYUDo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTWkDiYUDo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTWkDiYUDo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTWkDiYUDo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTWkDiYUDo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTWkDiYUDo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTWkDiYUDo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTWkDiYUDo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTWkDiYUDo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTWkDiYUDo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTWkDiYUDo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTWkDiYUDo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTWkDiYUDo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTWkDiYUDo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTWkDiYUDo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTWkDiYUDo .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uTWkDiYUDo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTWkDiYUDo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTWkDiYUDo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uTWkDiYUDo .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uTWkDiYUDo .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uTWkDiYUDo .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uTWkDiYUDo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTWkDiYUDo .dropdown-item.active,
.cid-uTWkDiYUDo .dropdown-item:active {
  background-color: transparent;
}
.cid-uTWkDiYUDo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTWkDiYUDo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTWkDiYUDo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTWkDiYUDo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uTWkDiYUDo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTWkDiYUDo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTWkDiYUDo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTWkDiYUDo .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uTWkDiYUDo .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uTWkDiYUDo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTWkDiYUDo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uTWkDiYUDo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTWkDiYUDo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkDiYUDo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkDiYUDo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTWkDiYUDo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkDiYUDo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTWkDiYUDo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTWkDiYUDo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkDiYUDo .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTWkDiYUDo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uTWkDiYUDo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTWkDiYUDo .navbar {
    height: 60px;
  }
  .cid-uTWkDiYUDo .navbar.opened {
    height: auto;
  }
  .cid-uTWkDiYUDo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uTWkDiYUDo .navbar {
    min-height: 105px;
  }
}
.cid-uTWkDjsJBr {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uTWkDjsJBr .item {
  padding-bottom: 2rem;
}
.cid-uTWkDjsJBr img,
.cid-uTWkDjsJBr .item-wrapper {
  transition: all 0.7s;
}
.cid-uTWkDjsJBr .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTWkDjsJBr .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uTWkDjsJBr .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uTWkDjsJBr .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uTWkDjsJBr .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uTWkDjsJBr .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uTWkDjsJBr .close::before {
  content: "\e91a";
}
.cid-uTWkDjsJBr .close:hover {
  color: #fff;
}
.cid-uTWkDjsJBr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTWkDjsJBr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTWkDjsJBr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTWkDjsJBr .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTWkDjsJBr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uTWkDjsJBr .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uTWkDjsJBr .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uTWkDjsJBr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uTWkDjsJBr .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uTWkDjsJBr .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uTWkDjsJBr .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uTWkDjsJBr .carousel-item img {
    width: 70%;
  }
}
.cid-uTWkDjsJBr .carousel-inner > .active {
  display: block;
}
.cid-uTWkDjsJBr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTWkDjsJBr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTWkDjsJBr .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uTWkDjsJBr .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uTWkDjsJBr .carousel-control,
  .cid-uTWkDjsJBr .carousel-indicators {
    position: fixed;
  }
}
.cid-uTWkDjsJBr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTWkDjsJBr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTWkDjsJBr .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uTWkDjsJBr .modal-content {
    width: 70%;
  }
}
.cid-uTWkDjsJBr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTWkDjsJBr .carousel {
  width: 100%;
}
.cid-uTWkDjsJBr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTWkDjsJBr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTWkDjsJBr .modal.fade .modal-dialog,
.cid-uTWkDjsJBr .modal.in .modal-dialog {
  transform: none;
}
.cid-uTWkDjsJBr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTWkDjsJBr .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkDjsJBr .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uTWkDjsJBr .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uTWkDjsJBr .soc-item::before,
.cid-uTWkDjsJBr .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uTWkDjsJBr .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uTWkDjsJBr .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uTWkDjsJBr .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uTWkDjsJBr .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uTWkDjsJBr .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uTWkDjsJBr .text {
  color: #ddc499;
}
.cid-uTWkDjsJBr .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uTWkDjsJBr .right {
    padding-right: 32px;
  }
  .cid-uTWkDjsJBr .left {
    padding-left: 32px;
  }
}
.cid-uTWkDjsJBr .mbr-section-title {
  color: #f6b092;
}
.cid-uTWkDk151Y {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTWkDk151Y .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uTWkDk151Y .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTWkDk151Y .row {
    text-align: center;
  }
  .cid-uTWkDk151Y .row > div {
    margin: auto;
  }
  .cid-uTWkDk151Y .social-row {
    justify-content: center;
  }
}
.cid-uTWkDk151Y .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkDk151Y .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uTWkDk151Y .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTWkDk151Y .list {
    margin-bottom: 0rem;
  }
}
.cid-uTWkDk151Y .mbr-text {
  transition: .2s all;
}
.cid-uTWkDk151Y .mbr-text:hover {
  color: #2e3134;
}
.cid-uTWkDk151Y .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uTWkDk151Y .soc-item:hover {
  background-color: #2e3134;
}
.cid-uTWkDk151Y .mbr-iconfont {
  color: black;
}
.cid-uTWkDk151Y .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uTWkDk151Y .flex {
    display: block;
  }
}
.cid-uTWkDk151Y .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .follow {
    margin-right: 0px;
  }
}
.cid-uTWkDk151Y .footer-sotial {
  justify-content: space-between;
}
.cid-uTWkDk151Y .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uTWkDk151Y div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uTWkDk151Y .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .item-wrap {
    text-align: center;
  }
}
.cid-uTWkDk151Y H5 {
  color: #f7f7f7;
}
.cid-uTWkDk151Y .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uTWkDk151Y .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uTWkDk151Y .number:hover {
  color: #3a3e44;
}
.cid-uTWkDk151Y .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .social_out {
    display: block;
  }
}
.cid-uTWkDk151Y .email {
  transition: .2s all;
}
.cid-uTWkDk151Y .email:hover {
  color: #3a3e44;
}
.cid-uTWkDk151Y .copyright {
  color: #000000;
}
.cid-uTWkDk151Y .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uTWkDk151Y .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkDk151Y .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uTWkDk151Y .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uTWkDk151Y .socicon {
  color: #fff;
}
.cid-uTWkDk151Y .icons {
  width: 18px;
  height: 20px;
}
.cid-uTWkDk151Y .href {
  padding-bottom: 1.5rem;
}
.cid-uTWkDk151Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWkDk151Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWkGKAuHE .navbar-dropdown {
  position: relative !important;
}
.cid-uTWkGKAuHE .navbar-dropdown {
  position: absolute !important;
}
.cid-uTWkGKAuHE .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .container {
    flex-wrap: nowrap;
  }
}
.cid-uTWkGKAuHE .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uTWkGKAuHE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkGKAuHE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTWkGKAuHE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTWkGKAuHE .dropdown-item:hover,
.cid-uTWkGKAuHE .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uTWkGKAuHE .dropdown-item:hover span {
  color: white;
}
.cid-uTWkGKAuHE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTWkGKAuHE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTWkGKAuHE .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uTWkGKAuHE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTWkGKAuHE .nav-link {
  position: relative;
}
.cid-uTWkGKAuHE .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTWkGKAuHE .dropdown-menu,
.cid-uTWkGKAuHE .navbar.opened {
  background: #192227 !important;
}
.cid-uTWkGKAuHE .nav-item:focus,
.cid-uTWkGKAuHE .nav-link:focus {
  outline: none;
}
.cid-uTWkGKAuHE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTWkGKAuHE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTWkGKAuHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTWkGKAuHE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkGKAuHE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTWkGKAuHE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTWkGKAuHE .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar {
    min-height: 105px;
  }
}
.cid-uTWkGKAuHE .navbar.opened {
  transition: all 0.3s;
}
.cid-uTWkGKAuHE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTWkGKAuHE .navbar .navbar-logo img {
  width: auto;
}
.cid-uTWkGKAuHE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uTWkGKAuHE .navbar.collapsed {
  justify-content: center;
}
.cid-uTWkGKAuHE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTWkGKAuHE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uTWkGKAuHE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTWkGKAuHE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTWkGKAuHE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTWkGKAuHE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTWkGKAuHE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTWkGKAuHE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTWkGKAuHE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTWkGKAuHE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTWkGKAuHE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTWkGKAuHE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTWkGKAuHE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTWkGKAuHE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTWkGKAuHE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTWkGKAuHE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTWkGKAuHE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTWkGKAuHE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTWkGKAuHE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTWkGKAuHE .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uTWkGKAuHE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTWkGKAuHE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTWkGKAuHE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uTWkGKAuHE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uTWkGKAuHE .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uTWkGKAuHE .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uTWkGKAuHE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTWkGKAuHE .dropdown-item.active,
.cid-uTWkGKAuHE .dropdown-item:active {
  background-color: transparent;
}
.cid-uTWkGKAuHE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTWkGKAuHE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTWkGKAuHE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTWkGKAuHE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uTWkGKAuHE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTWkGKAuHE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTWkGKAuHE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTWkGKAuHE .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uTWkGKAuHE .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uTWkGKAuHE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTWkGKAuHE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uTWkGKAuHE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTWkGKAuHE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkGKAuHE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkGKAuHE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTWkGKAuHE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkGKAuHE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTWkGKAuHE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTWkGKAuHE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkGKAuHE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTWkGKAuHE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uTWkGKAuHE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTWkGKAuHE .navbar {
    height: 60px;
  }
  .cid-uTWkGKAuHE .navbar.opened {
    height: auto;
  }
  .cid-uTWkGKAuHE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uTWkGKAuHE .navbar {
    min-height: 105px;
  }
}
.cid-uTWkGL8j4g {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uTWkGL8j4g .item {
  padding-bottom: 2rem;
}
.cid-uTWkGL8j4g img,
.cid-uTWkGL8j4g .item-wrapper {
  transition: all 0.7s;
}
.cid-uTWkGL8j4g .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTWkGL8j4g .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uTWkGL8j4g .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uTWkGL8j4g .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uTWkGL8j4g .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uTWkGL8j4g .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uTWkGL8j4g .close::before {
  content: "\e91a";
}
.cid-uTWkGL8j4g .close:hover {
  color: #fff;
}
.cid-uTWkGL8j4g .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTWkGL8j4g .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTWkGL8j4g .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTWkGL8j4g .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTWkGL8j4g .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uTWkGL8j4g .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uTWkGL8j4g .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uTWkGL8j4g .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uTWkGL8j4g .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uTWkGL8j4g .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uTWkGL8j4g .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uTWkGL8j4g .carousel-item img {
    width: 70%;
  }
}
.cid-uTWkGL8j4g .carousel-inner > .active {
  display: block;
}
.cid-uTWkGL8j4g .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTWkGL8j4g .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTWkGL8j4g .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uTWkGL8j4g .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uTWkGL8j4g .carousel-control,
  .cid-uTWkGL8j4g .carousel-indicators {
    position: fixed;
  }
}
.cid-uTWkGL8j4g .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTWkGL8j4g .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTWkGL8j4g .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uTWkGL8j4g .modal-content {
    width: 70%;
  }
}
.cid-uTWkGL8j4g .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTWkGL8j4g .carousel {
  width: 100%;
}
.cid-uTWkGL8j4g .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTWkGL8j4g .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTWkGL8j4g .modal.fade .modal-dialog,
.cid-uTWkGL8j4g .modal.in .modal-dialog {
  transform: none;
}
.cid-uTWkGL8j4g .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTWkGL8j4g .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkGL8j4g .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uTWkGL8j4g .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uTWkGL8j4g .soc-item::before,
.cid-uTWkGL8j4g .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uTWkGL8j4g .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uTWkGL8j4g .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uTWkGL8j4g .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uTWkGL8j4g .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uTWkGL8j4g .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uTWkGL8j4g .text {
  color: #ddc499;
}
.cid-uTWkGL8j4g .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uTWkGL8j4g .right {
    padding-right: 32px;
  }
  .cid-uTWkGL8j4g .left {
    padding-left: 32px;
  }
}
.cid-uTWkGL8j4g .mbr-section-title {
  color: #f6b092;
}
.cid-uTWkGLJKmt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTWkGLJKmt .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uTWkGLJKmt .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTWkGLJKmt .row {
    text-align: center;
  }
  .cid-uTWkGLJKmt .row > div {
    margin: auto;
  }
  .cid-uTWkGLJKmt .social-row {
    justify-content: center;
  }
}
.cid-uTWkGLJKmt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkGLJKmt .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uTWkGLJKmt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTWkGLJKmt .list {
    margin-bottom: 0rem;
  }
}
.cid-uTWkGLJKmt .mbr-text {
  transition: .2s all;
}
.cid-uTWkGLJKmt .mbr-text:hover {
  color: #2e3134;
}
.cid-uTWkGLJKmt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uTWkGLJKmt .soc-item:hover {
  background-color: #2e3134;
}
.cid-uTWkGLJKmt .mbr-iconfont {
  color: black;
}
.cid-uTWkGLJKmt .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uTWkGLJKmt .flex {
    display: block;
  }
}
.cid-uTWkGLJKmt .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .follow {
    margin-right: 0px;
  }
}
.cid-uTWkGLJKmt .footer-sotial {
  justify-content: space-between;
}
.cid-uTWkGLJKmt .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uTWkGLJKmt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uTWkGLJKmt .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .item-wrap {
    text-align: center;
  }
}
.cid-uTWkGLJKmt H5 {
  color: #f7f7f7;
}
.cid-uTWkGLJKmt .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uTWkGLJKmt .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uTWkGLJKmt .number:hover {
  color: #3a3e44;
}
.cid-uTWkGLJKmt .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .social_out {
    display: block;
  }
}
.cid-uTWkGLJKmt .email {
  transition: .2s all;
}
.cid-uTWkGLJKmt .email:hover {
  color: #3a3e44;
}
.cid-uTWkGLJKmt .copyright {
  color: #000000;
}
.cid-uTWkGLJKmt .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uTWkGLJKmt .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkGLJKmt .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uTWkGLJKmt .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uTWkGLJKmt .socicon {
  color: #fff;
}
.cid-uTWkGLJKmt .icons {
  width: 18px;
  height: 20px;
}
.cid-uTWkGLJKmt .href {
  padding-bottom: 1.5rem;
}
.cid-uTWkGLJKmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWkGLJKmt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWkHw2Qq9 .navbar-dropdown {
  position: relative !important;
}
.cid-uTWkHw2Qq9 .navbar-dropdown {
  position: absolute !important;
}
.cid-uTWkHw2Qq9 .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uTWkHw2Qq9 .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uTWkHw2Qq9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkHw2Qq9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTWkHw2Qq9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTWkHw2Qq9 .dropdown-item:hover,
.cid-uTWkHw2Qq9 .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uTWkHw2Qq9 .dropdown-item:hover span {
  color: white;
}
.cid-uTWkHw2Qq9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTWkHw2Qq9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTWkHw2Qq9 .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uTWkHw2Qq9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTWkHw2Qq9 .nav-link {
  position: relative;
}
.cid-uTWkHw2Qq9 .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTWkHw2Qq9 .dropdown-menu,
.cid-uTWkHw2Qq9 .navbar.opened {
  background: #192227 !important;
}
.cid-uTWkHw2Qq9 .nav-item:focus,
.cid-uTWkHw2Qq9 .nav-link:focus {
  outline: none;
}
.cid-uTWkHw2Qq9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTWkHw2Qq9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTWkHw2Qq9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTWkHw2Qq9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkHw2Qq9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTWkHw2Qq9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTWkHw2Qq9 .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar {
    min-height: 105px;
  }
}
.cid-uTWkHw2Qq9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uTWkHw2Qq9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTWkHw2Qq9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uTWkHw2Qq9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uTWkHw2Qq9 .navbar.collapsed {
  justify-content: center;
}
.cid-uTWkHw2Qq9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTWkHw2Qq9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uTWkHw2Qq9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTWkHw2Qq9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTWkHw2Qq9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTWkHw2Qq9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTWkHw2Qq9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTWkHw2Qq9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTWkHw2Qq9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTWkHw2Qq9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTWkHw2Qq9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTWkHw2Qq9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTWkHw2Qq9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTWkHw2Qq9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTWkHw2Qq9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTWkHw2Qq9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTWkHw2Qq9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTWkHw2Qq9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTWkHw2Qq9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTWkHw2Qq9 .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uTWkHw2Qq9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTWkHw2Qq9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTWkHw2Qq9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uTWkHw2Qq9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uTWkHw2Qq9 .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uTWkHw2Qq9 .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uTWkHw2Qq9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTWkHw2Qq9 .dropdown-item.active,
.cid-uTWkHw2Qq9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uTWkHw2Qq9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTWkHw2Qq9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTWkHw2Qq9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTWkHw2Qq9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uTWkHw2Qq9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTWkHw2Qq9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTWkHw2Qq9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTWkHw2Qq9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uTWkHw2Qq9 .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uTWkHw2Qq9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTWkHw2Qq9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uTWkHw2Qq9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTWkHw2Qq9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkHw2Qq9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkHw2Qq9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTWkHw2Qq9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkHw2Qq9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTWkHw2Qq9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTWkHw2Qq9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkHw2Qq9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTWkHw2Qq9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uTWkHw2Qq9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTWkHw2Qq9 .navbar {
    height: 60px;
  }
  .cid-uTWkHw2Qq9 .navbar.opened {
    height: auto;
  }
  .cid-uTWkHw2Qq9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uTWkHw2Qq9 .navbar {
    min-height: 105px;
  }
}
.cid-uTWkHwtjJj {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uTWkHwtjJj .item {
  padding-bottom: 2rem;
}
.cid-uTWkHwtjJj img,
.cid-uTWkHwtjJj .item-wrapper {
  transition: all 0.7s;
}
.cid-uTWkHwtjJj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTWkHwtjJj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uTWkHwtjJj .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uTWkHwtjJj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uTWkHwtjJj .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uTWkHwtjJj .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uTWkHwtjJj .close::before {
  content: "\e91a";
}
.cid-uTWkHwtjJj .close:hover {
  color: #fff;
}
.cid-uTWkHwtjJj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTWkHwtjJj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTWkHwtjJj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTWkHwtjJj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTWkHwtjJj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uTWkHwtjJj .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uTWkHwtjJj .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uTWkHwtjJj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uTWkHwtjJj .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uTWkHwtjJj .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uTWkHwtjJj .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uTWkHwtjJj .carousel-item img {
    width: 70%;
  }
}
.cid-uTWkHwtjJj .carousel-inner > .active {
  display: block;
}
.cid-uTWkHwtjJj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTWkHwtjJj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTWkHwtjJj .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uTWkHwtjJj .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uTWkHwtjJj .carousel-control,
  .cid-uTWkHwtjJj .carousel-indicators {
    position: fixed;
  }
}
.cid-uTWkHwtjJj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTWkHwtjJj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTWkHwtjJj .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uTWkHwtjJj .modal-content {
    width: 70%;
  }
}
.cid-uTWkHwtjJj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTWkHwtjJj .carousel {
  width: 100%;
}
.cid-uTWkHwtjJj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTWkHwtjJj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTWkHwtjJj .modal.fade .modal-dialog,
.cid-uTWkHwtjJj .modal.in .modal-dialog {
  transform: none;
}
.cid-uTWkHwtjJj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTWkHwtjJj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkHwtjJj .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uTWkHwtjJj .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uTWkHwtjJj .soc-item::before,
.cid-uTWkHwtjJj .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uTWkHwtjJj .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uTWkHwtjJj .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uTWkHwtjJj .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uTWkHwtjJj .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uTWkHwtjJj .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uTWkHwtjJj .text {
  color: #ddc499;
}
.cid-uTWkHwtjJj .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uTWkHwtjJj .right {
    padding-right: 32px;
  }
  .cid-uTWkHwtjJj .left {
    padding-left: 32px;
  }
}
.cid-uTWkHwtjJj .mbr-section-title {
  color: #f6b092;
}
.cid-uTWkHwVdA0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTWkHwVdA0 .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uTWkHwVdA0 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTWkHwVdA0 .row {
    text-align: center;
  }
  .cid-uTWkHwVdA0 .row > div {
    margin: auto;
  }
  .cid-uTWkHwVdA0 .social-row {
    justify-content: center;
  }
}
.cid-uTWkHwVdA0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkHwVdA0 .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uTWkHwVdA0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTWkHwVdA0 .list {
    margin-bottom: 0rem;
  }
}
.cid-uTWkHwVdA0 .mbr-text {
  transition: .2s all;
}
.cid-uTWkHwVdA0 .mbr-text:hover {
  color: #2e3134;
}
.cid-uTWkHwVdA0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uTWkHwVdA0 .soc-item:hover {
  background-color: #2e3134;
}
.cid-uTWkHwVdA0 .mbr-iconfont {
  color: black;
}
.cid-uTWkHwVdA0 .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uTWkHwVdA0 .flex {
    display: block;
  }
}
.cid-uTWkHwVdA0 .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .follow {
    margin-right: 0px;
  }
}
.cid-uTWkHwVdA0 .footer-sotial {
  justify-content: space-between;
}
.cid-uTWkHwVdA0 .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uTWkHwVdA0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uTWkHwVdA0 .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .item-wrap {
    text-align: center;
  }
}
.cid-uTWkHwVdA0 H5 {
  color: #f7f7f7;
}
.cid-uTWkHwVdA0 .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uTWkHwVdA0 .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uTWkHwVdA0 .number:hover {
  color: #3a3e44;
}
.cid-uTWkHwVdA0 .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .social_out {
    display: block;
  }
}
.cid-uTWkHwVdA0 .email {
  transition: .2s all;
}
.cid-uTWkHwVdA0 .email:hover {
  color: #3a3e44;
}
.cid-uTWkHwVdA0 .copyright {
  color: #000000;
}
.cid-uTWkHwVdA0 .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uTWkHwVdA0 .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkHwVdA0 .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uTWkHwVdA0 .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uTWkHwVdA0 .socicon {
  color: #fff;
}
.cid-uTWkHwVdA0 .icons {
  width: 18px;
  height: 20px;
}
.cid-uTWkHwVdA0 .href {
  padding-bottom: 1.5rem;
}
.cid-uTWkHwVdA0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWkHwVdA0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTWkI9uTkD .navbar-dropdown {
  position: relative !important;
}
.cid-uTWkI9uTkD .navbar-dropdown {
  position: absolute !important;
}
.cid-uTWkI9uTkD .container {
  max-width: 1312px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .container {
    flex-wrap: nowrap;
  }
}
.cid-uTWkI9uTkD .container-custom {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
.cid-uTWkI9uTkD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkI9uTkD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTWkI9uTkD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTWkI9uTkD .dropdown-item:hover,
.cid-uTWkI9uTkD .dropdown-item:focus {
  background: #3a3e44 !important;
  color: white !important;
}
.cid-uTWkI9uTkD .dropdown-item:hover span {
  color: white;
}
.cid-uTWkI9uTkD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTWkI9uTkD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTWkI9uTkD .nav-dropdown .link {
  padding: 0.75em 1em !important;
}
.cid-uTWkI9uTkD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTWkI9uTkD .nav-link {
  position: relative;
}
.cid-uTWkI9uTkD .iconfont-wrapper {
  color: #002549 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTWkI9uTkD .dropdown-menu,
.cid-uTWkI9uTkD .navbar.opened {
  background: #192227 !important;
}
.cid-uTWkI9uTkD .nav-item:focus,
.cid-uTWkI9uTkD .nav-link:focus {
  outline: none;
}
.cid-uTWkI9uTkD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTWkI9uTkD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTWkI9uTkD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTWkI9uTkD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTWkI9uTkD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTWkI9uTkD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTWkI9uTkD .navbar {
  min-height: 60px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(25, 34, 39, 0.1);
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar {
    min-height: 105px;
  }
}
.cid-uTWkI9uTkD .navbar.opened {
  transition: all 0.3s;
}
.cid-uTWkI9uTkD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTWkI9uTkD .navbar .navbar-logo img {
  width: auto;
}
.cid-uTWkI9uTkD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar .navbar-collapse {
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar .navbar-nav-container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
.cid-uTWkI9uTkD .navbar.collapsed {
  justify-content: center;
}
.cid-uTWkI9uTkD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTWkI9uTkD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uTWkI9uTkD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTWkI9uTkD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTWkI9uTkD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTWkI9uTkD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTWkI9uTkD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTWkI9uTkD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTWkI9uTkD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTWkI9uTkD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTWkI9uTkD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTWkI9uTkD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTWkI9uTkD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTWkI9uTkD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTWkI9uTkD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTWkI9uTkD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTWkI9uTkD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTWkI9uTkD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTWkI9uTkD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uTWkI9uTkD .navbar.navbar-short {
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar.navbar-short {
    min-height: 105px;
  }
}
.cid-uTWkI9uTkD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTWkI9uTkD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTWkI9uTkD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 40%;
    top: 50%;
    transform: translateY(-50%);
    width: 20%;
    min-height: 100%;
    z-index: 5;
  }
}
.cid-uTWkI9uTkD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
  flex-wrap: nowrap;
  color: #002549;
}
.cid-uTWkI9uTkD .navbar-brand .navbar-caption span {
  line-height: inherit !important;
  font-weight: inherit !important;
  color: #3a3e44;
}
.cid-uTWkI9uTkD .navbar-brand .navbar-caption:hover {
  color: #3a3e44;
}
.cid-uTWkI9uTkD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTWkI9uTkD .dropdown-item.active,
.cid-uTWkI9uTkD .dropdown-item:active {
  background-color: transparent;
}
.cid-uTWkI9uTkD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTWkI9uTkD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTWkI9uTkD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTWkI9uTkD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #192227;
}
.cid-uTWkI9uTkD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTWkI9uTkD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTWkI9uTkD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTWkI9uTkD .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar-buttons {
    width: 40%;
    text-align: right;
  }
}
.cid-uTWkI9uTkD .navbar-buttons .btn {
  min-width: 144px;
  font-weight: 400;
}
.cid-uTWkI9uTkD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTWkI9uTkD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fafafa;
}
.cid-uTWkI9uTkD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTWkI9uTkD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkI9uTkD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTWkI9uTkD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTWkI9uTkD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkI9uTkD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTWkI9uTkD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTWkI9uTkD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTWkI9uTkD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uTWkI9uTkD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002549;
}
.cid-uTWkI9uTkD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTWkI9uTkD .navbar {
    height: 60px;
  }
  .cid-uTWkI9uTkD .navbar.opened {
    height: auto;
  }
  .cid-uTWkI9uTkD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 992px), (-ms-high-contrast: none) and (min-width: 992px) {
  .cid-uTWkI9uTkD .navbar {
    min-height: 105px;
  }
}
.cid-uTWkI9Ve0J {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #3a3e44;
}
.cid-uTWkI9Ve0J .item {
  padding-bottom: 2rem;
}
.cid-uTWkI9Ve0J img,
.cid-uTWkI9Ve0J .item-wrapper {
  transition: all 0.7s;
}
.cid-uTWkI9Ve0J .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uTWkI9Ve0J .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uTWkI9Ve0J .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;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-uTWkI9Ve0J .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uTWkI9Ve0J .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-uTWkI9Ve0J .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: 0.7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: "Moririse2";
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uTWkI9Ve0J .close::before {
  content: "\e91a";
}
.cid-uTWkI9Ve0J .close:hover {
  color: #fff;
}
.cid-uTWkI9Ve0J .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uTWkI9Ve0J .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uTWkI9Ve0J .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uTWkI9Ve0J .carousel-control-next span {
  margin-left: 5px;
}
.cid-uTWkI9Ve0J .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-uTWkI9Ve0J .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-uTWkI9Ve0J .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-uTWkI9Ve0J .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-uTWkI9Ve0J .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-uTWkI9Ve0J .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-uTWkI9Ve0J .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-uTWkI9Ve0J .carousel-item img {
    width: 70%;
  }
}
.cid-uTWkI9Ve0J .carousel-inner > .active {
  display: block;
}
.cid-uTWkI9Ve0J .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uTWkI9Ve0J .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uTWkI9Ve0J .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-uTWkI9Ve0J .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-uTWkI9Ve0J .carousel-control,
  .cid-uTWkI9Ve0J .carousel-indicators {
    position: fixed;
  }
}
.cid-uTWkI9Ve0J .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uTWkI9Ve0J .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uTWkI9Ve0J .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-uTWkI9Ve0J .modal-content {
    width: 70%;
  }
}
.cid-uTWkI9Ve0J .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uTWkI9Ve0J .carousel {
  width: 100%;
}
.cid-uTWkI9Ve0J .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uTWkI9Ve0J .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uTWkI9Ve0J .modal.fade .modal-dialog,
.cid-uTWkI9Ve0J .modal.in .modal-dialog {
  transform: none;
}
.cid-uTWkI9Ve0J .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uTWkI9Ve0J .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkI9Ve0J .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uTWkI9Ve0J .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-uTWkI9Ve0J .soc-item::before,
.cid-uTWkI9Ve0J .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uTWkI9Ve0J .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-uTWkI9Ve0J .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-uTWkI9Ve0J .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-uTWkI9Ve0J .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-uTWkI9Ve0J .mbr-section-subtitle {
  color: #f6f6f6;
  margin-bottom: 77px;
}
.cid-uTWkI9Ve0J .text {
  color: #ddc499;
}
.cid-uTWkI9Ve0J .one {
  color: #c0bcb7;
  font-style: italic;
}
@media (min-width: 992px) {
  .cid-uTWkI9Ve0J .right {
    padding-right: 32px;
  }
  .cid-uTWkI9Ve0J .left {
    padding-left: 32px;
  }
}
.cid-uTWkI9Ve0J .mbr-section-title {
  color: #f6b092;
}
.cid-uTWkIarUZv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uTWkIarUZv .media-wrap {
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uTWkIarUZv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uTWkIarUZv .row {
    text-align: center;
  }
  .cid-uTWkIarUZv .row > div {
    margin: auto;
  }
  .cid-uTWkIarUZv .social-row {
    justify-content: center;
  }
}
.cid-uTWkIarUZv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uTWkIarUZv .list {
  list-style: none;
  padding-left: 0;
  color: #8d8d8d;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uTWkIarUZv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uTWkIarUZv .list {
    margin-bottom: 0rem;
  }
}
.cid-uTWkIarUZv .mbr-text {
  transition: .2s all;
}
.cid-uTWkIarUZv .mbr-text:hover {
  color: #2e3134;
}
.cid-uTWkIarUZv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #040404;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  transition: .2s all;
}
.cid-uTWkIarUZv .soc-item:hover {
  background-color: #2e3134;
}
.cid-uTWkIarUZv .mbr-iconfont {
  color: black;
}
.cid-uTWkIarUZv .flex {
  display: flex;
}
@media (max-width: 990px) {
  .cid-uTWkIarUZv .flex {
    display: block;
  }
}
.cid-uTWkIarUZv .follow {
  vertical-align: sub;
  color: #8d8d8d;
  margin-right: 20px;
  line-height: 2.5rem;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .follow {
    margin-right: 0px;
  }
}
.cid-uTWkIarUZv .footer-sotial {
  justify-content: space-between;
}
.cid-uTWkIarUZv .rigth-col {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .rigth-col {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uTWkIarUZv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uTWkIarUZv .item-wrap {
  text-transform: uppercase;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .item-wrap {
    text-align: center;
  }
}
.cid-uTWkIarUZv H5 {
  color: #f7f7f7;
}
.cid-uTWkIarUZv .mbr-section-subtitle {
  color: #8d8d8d;
}
.cid-uTWkIarUZv .number {
  color: #2e3134;
  font-weight: bold;
}
.cid-uTWkIarUZv .number:hover {
  color: #3a3e44;
}
.cid-uTWkIarUZv .social_out {
  display: flex;
  margin-top: 8rem;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .social_out {
    display: block;
  }
}
.cid-uTWkIarUZv .email {
  transition: .2s all;
}
.cid-uTWkIarUZv .email:hover {
  color: #3a3e44;
}
.cid-uTWkIarUZv .copyright {
  color: #000000;
}
.cid-uTWkIarUZv .mbr-section-subtitle P {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .mbr-section-subtitle P {
    text-align: center;
  }
}
.cid-uTWkIarUZv .mbr-section-subtitle DIV {
  text-align: right;
}
@media (max-width: 765px) {
  .cid-uTWkIarUZv .mbr-section-subtitle DIV {
    text-align: center;
  }
}
.cid-uTWkIarUZv .copyright P {
  vertical-align: sub;
  display: inline-block;
  color: #868378;
  text-align: center;
}
.cid-uTWkIarUZv .socicon {
  color: #fff;
}
.cid-uTWkIarUZv .icons {
  width: 18px;
  height: 20px;
}
.cid-uTWkIarUZv .href {
  padding-bottom: 1.5rem;
}
.cid-uTWkIarUZv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTWkIarUZv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}