body {
  font-family: 'Montagu Slab', serif;
}
.display-1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Montagu Slab', serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Montagu Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Montagu Slab', serif;
  font-size: 2.6875rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.359375rem;
}
.display-7 {
  font-family: 'Montagu Slab', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.5rem;
}
/* ---- 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: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.15rem;
    font-size: calc( 1.590625rem + (2.6875 - 1.590625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.590625rem + (2.6875 - 1.590625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 3.5625rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 1.5625rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ffd800 !important;
}
.bg-success {
  background-color: #e5be8a !important;
}
.bg-info {
  background-color: #fff8ef !important;
}
.bg-warning {
  background-color: #b91d17 !important;
}
.bg-danger {
  background-color: #ffd800 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffd800 !important;
  border-color: #ffd800 !important;
  color: #000000 !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: #a88f00 !important;
  border-color: #a88f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a88f00 !important;
  border-color: #a88f00 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3d626c !important;
  border-color: #3d626c !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: #1e3035 !important;
  border-color: #1e3035 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1e3035 !important;
  border-color: #1e3035 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
  color: #ef8600 !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: #985600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ef8600 !important;
  background-color: #ffd298 !important;
  border-color: #ffd298 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e5be8a !important;
  border-color: #e5be8a !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: #d59743 !important;
  border-color: #d59743 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d59743 !important;
  border-color: #d59743 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #b91d17 !important;
  border-color: #b91d17 !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: #6c110d !important;
  border-color: #6c110d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6c110d !important;
  border-color: #6c110d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffd800 !important;
  border-color: #ffd800 !important;
  color: #000000 !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: #a88f00 !important;
  border-color: #a88f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #a88f00 !important;
  border-color: #a88f00 !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: transparent;
  color: #ffd800;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a88f00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffd800 !important;
  border-color: #ffd800 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d626c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #1e3035 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3d626c !important;
  border-color: #3d626c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff8ef;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffd298 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ef8600 !important;
  background-color: #fff8ef !important;
  border-color: #fff8ef !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e5be8a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d59743 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e5be8a !important;
  border-color: #e5be8a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b91d17;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #6c110d !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b91d17 !important;
  border-color: #b91d17 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd800;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a88f00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #ffd800 !important;
  border-color: #ffd800 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent !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: transparent;
  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: transparent !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: #ffd800 !important;
}
.text-secondary {
  color: #3d626c !important;
}
.text-success {
  color: #e5be8a !important;
}
.text-info {
  color: #fff8ef !important;
}
.text-warning {
  color: #b91d17 !important;
}
.text-danger {
  color: #ffd800 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ffd800 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3d626c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e5be8a !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #fff8ef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b91d17 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffd800 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !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 0.3s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  /*  background-position: 0px 1.2em; */
}
.nav-tabs .nav-link.active {
  color: #ffd800;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fff8ef;
}
.alert-warning {
  background-color: #b91d17;
}
.alert-danger {
  background-color: #ffd800;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffd800;
  border-color: #ffd800;
  color: #191600;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff7cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ec6964;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff7cc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montagu Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #ffd800 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montagu Slab', serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffd800;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffd800;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffd800;
}
.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: #ffd800;
  border-bottom-color: #ffd800;
}
.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: #000000 !important;
  background-color: #ffd800 !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: #3d626c !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='%23ffd800' %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;
}
p {
  margin-bottom: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}
.container {
  max-width: 1440px;
}
a {
  transition: color 300ms ease !important;
}
a.btn {
  transition: color 300ms ease !important;
  box-shadow: none !important;
}
a.btn.btn-warning:hover {
  background-color: #e5bc8a !important;
  border-color: #e5bc8a !important;
}
.card-title {
  margin-bottom: 0;
}
button:focus {
  box-shadow: none !important;
}
.cid-sUFMrenode .navbar-dropdown {
  position: relative !important;
}
.cid-sUFMrenode .navbar-dropdown {
  position: absolute !important;
}
.cid-sUFMrenode .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-sUFMrenode .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sUFMrenode .dropdown-item:hover,
.cid-sUFMrenode .dropdown-item:focus {
  color: #ffd800 !important;
}
.cid-sUFMrenode .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUFMrenode .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-sUFMrenode .container {
  display: flex;
  margin: auto;
}
.cid-sUFMrenode .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUFMrenode .dropdown-menu,
.cid-sUFMrenode .navbar.opened {
  background: #000000 !important;
}
.cid-sUFMrenode .nav-item:focus,
.cid-sUFMrenode .nav-link:focus {
  outline: none;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUFMrenode .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUFMrenode .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUFMrenode .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.9);
}
.cid-sUFMrenode .navbar.opened {
  transition: all 0.3s;
}
.cid-sUFMrenode .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sUFMrenode .navbar .navbar-logo img {
  width: auto;
}
.cid-sUFMrenode .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUFMrenode .navbar.collapsed {
  justify-content: center;
}
.cid-sUFMrenode .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUFMrenode .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUFMrenode .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUFMrenode .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-sUFMrenode .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUFMrenode .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUFMrenode .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUFMrenode .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-sUFMrenode .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sUFMrenode .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUFMrenode .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUFMrenode .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUFMrenode .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUFMrenode .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUFMrenode .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sUFMrenode .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sUFMrenode .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUFMrenode .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUFMrenode .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUFMrenode .dropdown-item.active,
.cid-sUFMrenode .dropdown-item:active {
  background-color: transparent;
}
.cid-sUFMrenode .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUFMrenode .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sUFMrenode .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUFMrenode .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUFMrenode ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sUFMrenode .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUFMrenode button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b91d17;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUFMrenode a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUFMrenode .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUFMrenode .navbar {
    height: 70px;
  }
  .cid-sUFMrenode .navbar.opened {
    height: auto;
  }
  .cid-sUFMrenode .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUFMrenode a {
  display: inline;
}
.cid-sUFMrenode img {
  display: inline;
  padding-right: 10px;
}
.cid-sUFMrenode .dropdown-toggle:after {
  display: none;
}
.cid-sUFMrenode .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sUFMrenode .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-sUFMrenode .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sUFMrenode .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sUFMrenode .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sUFMrenode .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sUFMrenode ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sUFMrenode .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sUFMrenode .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sUFMrenode .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sUFMrenode .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sUFMrenode .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sUFMrenode .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-sUFMrenode .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sUFMrenode .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-sUFMrenode .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sUFMrenode .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-sUFMrenode .container,
  .cid-sUFMrenode .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sUFMrenode li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sUFMrenode ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sUFMrenode .icons-menu {
    min-width: initial !important;
  }
  .cid-sUFMrenode a.btn {
    margin-top: 10px;
  }
}
.cid-sUFMrenode a.btn > span {
  margin-left: 0.5rem;
}
.cid-sUFMrenode .nav-item {
  position: relative;
}
.cid-sUFMrenode .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sUFMrenode .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-sUFMrenode .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-sUFMrenode a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-sUFMrenode li.nav-item {
  padding: 13px 20px !important;
}
.cid-sUFMrenode a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-sUFMsoSfcm {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/il-1588xn.2075380306-cff6-1588x1058.jpeg");
}
.cid-sUFMsoSfcm .mbr-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  letter-spacing: 5.2px;
}
.cid-sUFMsoSfcm .mbr-text {
  color: #8c8c95;
  text-align: center;
}
.cid-sUFMsoSfcm .button-align {
  text-align: center;
}
.cid-sUFMsoSfcm .mbr-section-btn {
  display: block;
}
.cid-sUFMsoSfcm .btn {
  margin-top: 20px;
  transition: all .3s !important;
}
.cid-sUFMsoSfcm a.btn > span {
  margin-left: 0.5rem;
}
.cid-sUFMsoSfcm .mbr-text,
.cid-sUFMsoSfcm .button-align {
  color: #ffffff;
}
.cid-sUFMsoSfcm a.btn {
  letter-spacing: 5.4px;
}
.cid-u3kUO0ivvN {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u3kUO0ivvN img {
  border-radius: 0px;
}
.cid-u3kUO0ivvN .row {
  justify-content: center;
}
.cid-u3kUO0ivvN .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-u3UQtukphU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #16181c;
}
.cid-u3UQtukphU .row {
  flex-direction: row-reverse;
}
.cid-u3UQtukphU .image-wrapper {
  padding: 0 2rem;
}
.cid-u3UQtukphU .image-wrapper img {
  width: 100%;
  border-radius: 15px;
}
@media (max-width: 1199px) {
  .cid-u3UQtukphU .image-wrapper {
    padding: 0;
    margin-bottom: 3rem;
  }
}
.cid-u3UQtukphU .mbr-section-title {
  color: #fff8ef;
  margin-bottom: 1.5rem;
  text-align: center;
}
.cid-u3UQtukphU .mbr-section-subtitle {
  color: #e2e3e9;
  margin-bottom: 4rem;
}
.cid-u3UQtukphU .mbr-text {
  color: #8b8d8d;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .cid-u3UQtukphU .text-wrapper,
  .cid-u3UQtukphU .price {
    padding-left: 4.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-u3UQtukphU .text-wrapper,
  .cid-u3UQtukphU .price {
    padding-left: 2.375rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .cid-u3UQtukphU .text-wrapper,
  .cid-u3UQtukphU .price {
    padding-left: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1030px) {
  .cid-u3UQtukphU .text-wrapper,
  .cid-u3UQtukphU .price {
    padding-left: 0.8rem;
  }
}
@media (min-width: 992px) and (max-width: 991px) {
  .cid-u3UQtukphU .text-wrapper,
  .cid-u3UQtukphU .price {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .content {
    text-align: center;
  }
}
.cid-u3UQtukphU .mbr-card-title {
  color: #1f1437;
  margin-bottom: 18px;
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .mbr-card-title {
    text-align: start;
  }
}
.cid-u3UQtukphU .nutrition {
  max-width: 543px;
  background-color: #f3edf7;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
  margin-right: 2rem;
}
@media (max-width: 1199px) {
  .cid-u3UQtukphU .nutrition {
    margin-left: 2.375rem;
  }
}
@media (max-width: 1099px) {
  .cid-u3UQtukphU .nutrition {
    margin-left: 1rem;
  }
}
@media (max-width: 1030px) {
  .cid-u3UQtukphU .nutrition {
    margin-left: 0.8rem;
  }
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .nutrition {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 479px) {
  .cid-u3UQtukphU .nutrition {
    padding: 1.5rem 1rem;
  }
}
.cid-u3UQtukphU .nutrition-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #cd8ad1;
  margin-bottom: 1rem;
}
.cid-u3UQtukphU .nutrition-head .numbers {
  margin-bottom: 18px;
}
.cid-u3UQtukphU .nutrition-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .nutrition-wrap {
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .cid-u3UQtukphU .nutrition-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 388px) {
  .cid-u3UQtukphU .nutrition-wrap {
    width: 100%;
  }
}
.cid-u3UQtukphU .nutrition-wrap .nutrition-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cid-u3UQtukphU .nutrition-wrap .nutrition-tile:last-child {
  margin-bottom: 0;
  margin-top: 1rem;
}
.cid-u3UQtukphU .tile-text-wrap {
  display: flex;
}
.cid-u3UQtukphU svg {
  display: inline-block;
  width: 50px;
  height: 38px;
  margin-left: -0.5rem;
  margin-right: 0.6rem;
}
.cid-u3UQtukphU svg path {
  fill: #cd8ad1;
}
.cid-u3UQtukphU .numbers {
  display: flex;
  align-self: center;
}
.cid-u3UQtukphU .mbr-number {
  width: 60px;
  margin-bottom: 0;
}
.cid-u3UQtukphU .mbr-number:first-child {
  margin-right: 1rem;
}
.cid-u3UQtukphU .mbr-tile-text {
  color: #1f1437;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .mbr-tile-text {
    text-align: start;
  }
}
.cid-u3UQtukphU .price {
  display: flex;
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .price {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.cid-u3UQtukphU .price-text-wrap {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
@media (max-width: 991px) {
  .cid-u3UQtukphU .price-text-wrap {
    margin-left: 0;
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.cid-u3UQtukphU .line {
  width: 1px;
  height: 50px;
  margin: 0 20px;
  background-color: #1f1437;
  opacity: 0.5;
  opacity: 0;
}
.cid-u3UQtukphU .mbr-price-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-u3UQtukphU .mbr-price-number {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-u3UQtukphU .mbr-amount-text {
  color: #1f1437;
  margin-bottom: 0;
}
.cid-u3UQtukphU .mbr-amount-number {
  color: #1f1437;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-u3UQtukphU div[class*="col-lg"] {
    width: 100%;
  }
}
.cid-u3UQtukphU .mbr-section-btn {
  display: flex;
}
.cid-u3UQtukphU .mbr-text-title {
  color: #fff8ef;
}
.cid-u3UQtukphU .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-u3UPpiChGr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdfcfa;
}
.cid-u3UPpiChGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3UPpiChGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3UPpiChGr .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-u3UPpiChGr .container {
    padding: 10px 8px;
  }
}
.cid-u3UPpiChGr .row {
  margin: 0;
}
.cid-u3UPpiChGr .row .card {
  padding: 0;
}
.cid-u3UPpiChGr .box {
  margin-left: 8px;
}
@media (max-width: 992px) {
  .cid-u3UPpiChGr .box {
    margin: 0;
  }
}
.cid-u3UPpiChGr .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 570px;
  border-radius: 25px !important;
}
@media (max-width: 992px) {
  .cid-u3UPpiChGr .box .mbr-media {
    height: 350px;
  }
}
.cid-u3UPpiChGr .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-u3UPpiChGr .box .mbr-media .mbr-iconfont {
  font-size: 32px;
  color: #fff8ef;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-u3UPpiChGr .mbr-media {
  position: relative;
}
.cid-u3UPpiChGr .mbr-media img {
  object-fit: cover;
}
.cid-u3UPpiChGr a:hover {
  background-image: none !important;
}
.cid-u3UPpiChGr .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background-color: #ff0058;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cid-u3UPpiChGr .icon-wrap:hover,
.cid-u3UPpiChGr .icon-wrap:focus {
  cursor: pointer;
  background-color: #fff8ef;
}
.cid-u3UPpiChGr .icon-wrap:hover .mbr-iconfont,
.cid-u3UPpiChGr .icon-wrap:focus .mbr-iconfont {
  color: #ff0058;
}
.cid-u3UPpiChGr .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-u3UPpiChGr .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u3UPpiChGr .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u3UPpiChGr .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u3UPpiChGr .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-u3UPpiChGr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u3UPpiChGr .content-wrapper {
  display: flex;
  align-items: center;
  padding: 50px 40px;
  background-color: #000000;
  border-radius: 25px;
  margin-right: 8px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u3UPpiChGr .content-wrapper {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 768px) {
  .cid-u3UPpiChGr .content-wrapper {
    padding: 50px 10px;
  }
}
.cid-u3UPpiChGr .content-wrapper .content-wrap {
  width: 100%;
}
.cid-u3UPpiChGr .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-u3UPpiChGr .content-wrapper .content-wrap .mbr-section-title span {
  opacity: .5;
}
.cid-u3UPpiChGr .mbr-section-title {
  color: #222222;
}
.cid-u3UPpiChGr .mbr-section-title,
.cid-u3UPpiChGr .mbr-section-btn {
  text-align: center;
  color: #fff8ef;
}
.cid-u6HqJUC2WQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/img-4410-2000x2000.png");
}
.cid-u6HqJUC2WQ .item-wrapper {
  width: 100%;
}
.cid-u6HqJUC2WQ .carousel-caption {
  bottom: 40px;
}
.cid-u6HqJUC2WQ .carousel-control {
  top: 59%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  transition: all 0.3s;
  color: #000000;
}
.cid-u6HqJUC2WQ .carousel-control.carousel-control-prev {
  left: -100px;
  margin-left: 4.5rem;
}
.cid-u6HqJUC2WQ .carousel-control.carousel-control-next {
  right: -100px;
  margin-right: 4.5rem;
}
.cid-u6HqJUC2WQ .left-side {
  text-align: left;
}
.cid-u6HqJUC2WQ .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 400px;
}
.cid-u6HqJUC2WQ .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u6HqJUC2WQ .row {
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: auto;
}
.cid-u6HqJUC2WQ .carousel-fade .active.carousel-item-left,
.cid-u6HqJUC2WQ .carousel-fade .active.carousel-item-right {
  transition: opacity 0.5s 0s;
}
.cid-u6HqJUC2WQ .carousel-fade .carousel-item-left.carousel-item-next,
.cid-u6HqJUC2WQ .carousel-fade .carousel-item-right.carousel-item-prev {
  transition: opacity 0.5s 0.5s;
}
.cid-u6HqJUC2WQ .carousel-control-next,
.cid-u6HqJUC2WQ .carousel-control-prev {
  opacity: 1;
}
.cid-u6HqJUC2WQ .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-u6HqJUC2WQ .card-box:focus-within {
  opacity: 1;
}
.cid-u6HqJUC2WQ .row-center {
  height: 100%;
}
.cid-u6HqJUC2WQ .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 400px;
  padding: 20px;
}
.cid-u6HqJUC2WQ .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}
.cid-u6HqJUC2WQ .card-wrapper:hover .card-box,
.cid-u6HqJUC2WQ .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u6HqJUC2WQ .card-wrapper:hover:before,
.cid-u6HqJUC2WQ .card-wrapper:focus-within:before {
  opacity: 0.5;
}
.cid-u6HqJUC2WQ .card-title {
  color: #fafafa;
  text-align: left;
}
.cid-u6HqJUC2WQ .carousel-item {
  justify-content: center;
}
.cid-u6HqJUC2WQ .g {
  grid-row-gap: 24px;
}
.cid-u6HqJUC2WQ .mobi-mbri {
  font-size: 25px;
  color: #012B3A !important;
}
.cid-u6HqJUC2WQ .container {
  width: 95%;
  margin: auto;
}
@media (max-width: 1000px) {
  .cid-u6HqJUC2WQ .carousel-control {
    display: none;
  }
  .cid-u6HqJUC2WQ .container {
    width: 100%;
    padding: 0;
  }
}
.cid-u6HqJUC2WQ .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #fff8ef;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-u6HqJUC2WQ .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: center;
}
.cid-u6HqJUC2WQ a {
  font-weight: 400;
}
.cid-u6HqJUC2WQ .card1 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.53.37-pm-1040x1562.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card2 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.59.07-pm-1052x1474.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card3 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-2.48.14-pm-1050x1544.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card4 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-2.49.57-pm-2000x1404.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card5 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-1.31.56-am-1042x1574.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card6 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.49.01-pm-1054x1568.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card7 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.49.17-pm-1040x1528.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card8 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.54.27-pm-1100x1518.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card9 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.58.39-pm-912x1450.png");
  background-size: cover;
  background-position: center;
}
.cid-u6HqJUC2WQ .card10 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.53.50-pm-1044x1546.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .cid-u6HqJUC2WQ .g {
    grid-row-gap: 15px;
  }
}
.cid-u6HqJUC2WQ .carousel.slide {
  padding: 0;
}
.cid-u3kYsHE3NF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/360-f-491537237-cyhjzd3gs4nvceb6jofg2efge3bzjjx0-641x360.jpg");
}
.cid-u3kYsHE3NF .item-wrapper {
  width: 100%;
}
.cid-u3kYsHE3NF .left-side {
  text-align: left;
}
.cid-u3kYsHE3NF .row {
  align-items: center;
  justify-content: center;
}
.cid-u3kYsHE3NF .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-u3kYsHE3NF .card-box:focus-within {
  opacity: 1;
}
.cid-u3kYsHE3NF .row-center {
  height: 100%;
}
.cid-u3kYsHE3NF .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-u3kYsHE3NF .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u3kYsHE3NF .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-u3kYsHE3NF .card-wrapper:hover .card-box,
.cid-u3kYsHE3NF .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u3kYsHE3NF .card-wrapper:hover .card-img,
.cid-u3kYsHE3NF .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-u3kYsHE3NF .card-wrapper:hover:before,
.cid-u3kYsHE3NF .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-u3kYsHE3NF .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-u3kYsHE3NF .g {
  grid-row-gap: 24px;
}
.cid-u3kYsHE3NF .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-u3kYsHE3NF .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-u3kYsHE3NF .carousel-control {
    display: none;
  }
}
.cid-u3kYsHE3NF .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-u3kYsHE3NF .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-u3kYsHE3NF .card1 {
  background-image: url("../../../assets/images/screen-shot-2024-06-06-at-12.48.23-pm-2000x1250.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kYsHE3NF .card2 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.42.19-pm-1568x1568.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kYsHE3NF .card3 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.41.54-pm-1570x1564.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kYsHE3NF .card4 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.43.06-pm-1568x1566.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kYsHE3NF .card5 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.43.19-pm-1572x1562.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kYsHE3NF .card6 {
  background-image: url("../../../assets/images/screen-shot-2024-03-11-at-4.42.52-pm-1574x1562.png");
  background-size: cover;
  background-position: center;
}
.cid-u3kWhWQsTi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/img-4410-2000x2000.png");
}
.cid-u3kWhWQsTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3kWhWQsTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3kWhWQsTi .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u3kWhWQsTi .container-fluid {
    padding: 0 20px;
  }
}
.cid-u3kWhWQsTi .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u3kWhWQsTi .container {
    padding: 0 20px;
  }
}
.cid-u3kWhWQsTi .row {
  min-height: 650px;
}
@media (max-width: 992px) {
  .cid-u3kWhWQsTi .row {
    min-height: 450px;
  }
}
.cid-u3UTEJ9pwN {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #b91d17;
  overflow: hidden;
}
.cid-u3UTEJ9pwN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3UTEJ9pwN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3UTEJ9pwN .card-row {
  align-items: stretch;
}
.cid-u3UTEJ9pwN .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  margin-top: 60px;
  border-radius: 10px;
  background: linear-gradient(145deg, #000000, #b91d17);
  box-shadow: 10px 10px 19px #16181c, -10px -10px 19px #16181c;
}
.cid-u3UTEJ9pwN .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-u3UTEJ9pwN .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-u3UTEJ9pwN .image-wrapper {
  margin-right: 30px;
}
.cid-u3UTEJ9pwN .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .image-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .text-left-wrap {
    margin-top: -46px;
  }
}
.cid-u3UTEJ9pwN .mbr-section-title {
  color: #fff8ef;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u3UTEJ9pwN .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-u3UTEJ9pwN .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .social-container {
    padding-top: 25px;
  }
}
.cid-u3UTEJ9pwN .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .social-title {
    text-align: center !important;
  }
}
.cid-u3UTEJ9pwN .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-u3UTEJ9pwN .social-list {
    justify-content: center !important;
  }
}
.cid-u3UTEJ9pwN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #16181c;
  transition: 0.4s all;
}
.cid-u3UTEJ9pwN .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-u3UTEJ9pwN .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-u3UTEJ9pwN .soc-item:hover {
  transform: translateY(-3px);
}
.cid-u3UTEJ9pwN .soc-item:hover:before {
  opacity: 1;
}
.cid-u3UTEJ9pwN .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u3UTEJ9pwN .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-u3UTEJ9pwN .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-u3UTEJ9pwN .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-u3UTEJ9pwN .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u3UTEJ9pwN .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-u3UTEJ9pwN .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-u3UTEJ9pwN .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-u3UTEJ9pwN .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-u3UTEJ9pwN .contact-item {
  padding: 10px 0 20px;
}
.cid-u3UTEJ9pwN .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-u3UTEJ9pwN .card-text {
  color: #fff8ef;
  margin-bottom: 0;
}
.cid-sUFMFToxmJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-sUFMFToxmJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sUFMFToxmJ a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-sUFMFToxmJ a.text-danger:hover {
  color: #EABB80 !important;
}
.cid-u6VUCXap2A {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #b91d17;
}
.cid-u6VUCXap2A .mbr-section-subtitle {
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  letter-spacing: 5.2px;
}
.cid-u6VUCXap2A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sUFMrenode .navbar-dropdown {
  position: relative !important;
}
.cid-sUFMrenode .navbar-dropdown {
  position: absolute !important;
}
.cid-sUFMrenode .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-sUFMrenode .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sUFMrenode .dropdown-item:hover,
.cid-sUFMrenode .dropdown-item:focus {
  color: #ffd800 !important;
}
.cid-sUFMrenode .nav-dropdown .link {
  padding: 13px 0em !important;
  font-weight: 500;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sUFMrenode .nav-link {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  padding-bottom: 13px !important;
}
.cid-sUFMrenode .container {
  display: flex;
  margin: auto;
}
.cid-sUFMrenode .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sUFMrenode .dropdown-menu,
.cid-sUFMrenode .navbar.opened {
  background: #000000 !important;
}
.cid-sUFMrenode .nav-item:focus,
.cid-sUFMrenode .nav-link:focus {
  outline: none;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sUFMrenode .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sUFMrenode .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sUFMrenode .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sUFMrenode .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(0, 0, 0, 0.9);
}
.cid-sUFMrenode .navbar.opened {
  transition: all 0.3s;
}
.cid-sUFMrenode .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sUFMrenode .navbar .navbar-logo img {
  width: auto;
}
.cid-sUFMrenode .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sUFMrenode .navbar.collapsed {
  justify-content: center;
}
.cid-sUFMrenode .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sUFMrenode .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sUFMrenode .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sUFMrenode .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-sUFMrenode .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sUFMrenode .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sUFMrenode .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sUFMrenode .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sUFMrenode .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-sUFMrenode .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sUFMrenode .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sUFMrenode .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sUFMrenode .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sUFMrenode .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sUFMrenode .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sUFMrenode .navbar.navbar-short {
  min-height: 60px;
}
.cid-sUFMrenode .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sUFMrenode .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sUFMrenode .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sUFMrenode .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sUFMrenode .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sUFMrenode .dropdown-item.active,
.cid-sUFMrenode .dropdown-item:active {
  background-color: transparent;
}
.cid-sUFMrenode .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sUFMrenode .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sUFMrenode .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-sUFMrenode .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sUFMrenode .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sUFMrenode ul.navbar-nav {
  flex-wrap: wrap;
  padding-left: 20px;
}
.cid-sUFMrenode .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sUFMrenode button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b91d17;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sUFMrenode button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sUFMrenode nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sUFMrenode a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sUFMrenode .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-end;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
  min-width: 340px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sUFMrenode .navbar {
    height: 70px;
  }
  .cid-sUFMrenode .navbar.opened {
    height: auto;
  }
  .cid-sUFMrenode .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUFMrenode a {
  display: inline;
}
.cid-sUFMrenode img {
  display: inline;
  padding-right: 10px;
}
.cid-sUFMrenode .dropdown-toggle:after {
  display: none;
}
.cid-sUFMrenode .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sUFMrenode .dropdown-item:hover {
  color: #75dbcd !important;
}
@media (max-width: 990px) {
  .cid-sUFMrenode .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sUFMrenode .nav-dropdown .link {
    margin: 0 !important;
  }
}
.cid-sUFMrenode .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sUFMrenode .nav-item:last-child {
  margin-right: 0;
}
@media (max-width: 970px) {
  .cid-sUFMrenode ul li {
    height: 45px;
    display: list-item;
  }
}
.cid-sUFMrenode .navbar-collapse.collapsing .nav-item {
  height: 45px;
}
.cid-sUFMrenode .navbar-collapse.collapse.show .nav-item {
  height: 45px;
}
.cid-sUFMrenode .navbar-collapse.collapse.show ul li {
  display: list-item;
}
.cid-sUFMrenode .mbr-iconfont {
  margin-left: -5px;
  margin-right: 7px;
}
.cid-sUFMrenode .btn {
  transition: color 350ms ease, transform 300ms ease, border 300ms ease, background-color 300ms ease, -webkit-transform 300ms ease !important;
  padding: 1rem 1.5625rem !important;
  display: inline-block;
  line-height: 20px;
  transform-style: preserve-3d !important;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu {
  display: flex;
  flex-direction: column;
}
.cid-sUFMrenode .navbar.collapsed .icons-menu .top {
  margin-top: 15px;
}
.cid-sUFMrenode .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-sUFMrenode .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}
.cid-sUFMrenode .dropdown-item:focus {
  color: #75dbcd !important;
}
@media (max-width: 945px) {
  .cid-sUFMrenode .icons-menu {
    display: flex;
    flex-direction: column;
  }
  .cid-sUFMrenode .top {
    margin-top: 25px;
  }
}
@media (min-width: 992px) {
  .cid-sUFMrenode .container,
  .cid-sUFMrenode .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-sUFMrenode li:last-child {
  margin-right: 0;
}
@media (max-width: 989px) {
  .cid-sUFMrenode ul.navbar-nav {
    padding-left: 0;
  }
}
@media (max-width: 430px) {
  .cid-sUFMrenode .icons-menu {
    min-width: initial !important;
  }
  .cid-sUFMrenode a.btn {
    margin-top: 10px;
  }
}
.cid-sUFMrenode a.btn > span {
  margin-left: 0.5rem;
}
.cid-sUFMrenode .nav-item {
  position: relative;
}
.cid-sUFMrenode .line-animation {
  padding: 0 40px;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sUFMrenode .nav-item:hover .line-animation {
  opacity: 1;
  background-color: #75dbcd !important;
}
.cid-sUFMrenode .nav-item:hover .nav-link {
  color: #75dbcd !important;
}
.cid-sUFMrenode a.btn {
  padding: 15px 30px !important;
  letter-spacing: 5.4px;
}
.cid-sUFMrenode li.nav-item {
  padding: 13px 20px !important;
}
.cid-sUFMrenode a.btn:hover {
  background-color: #8e443d !important;
  border-color: #8e443d !important;
}
.cid-u6VNwBCCSX {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6VNwBCCSX img {
  border-radius: 0px;
}
.cid-u6VNwBCCSX .row {
  justify-content: center;
}
.cid-u6VNwBCCSX .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-u6VNxZNajk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u6VNxZNajk .item-wrapper {
  width: 100%;
}
.cid-u6VNxZNajk .left-side {
  text-align: left;
}
.cid-u6VNxZNajk .row {
  align-items: center;
  justify-content: center;
}
.cid-u6VNxZNajk .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cid-u6VNxZNajk .card-box:focus-within {
  opacity: 1;
}
.cid-u6VNxZNajk .row-center {
  height: 100%;
}
.cid-u6VNxZNajk .card-img {
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  max-height: 300px;
}
.cid-u6VNxZNajk .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u6VNxZNajk .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 300px;
  padding: 20px;
  overflow: hidden;
  transition: all 1s;
}
.cid-u6VNxZNajk .card-wrapper:hover .card-box,
.cid-u6VNxZNajk .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-u6VNxZNajk .card-wrapper:hover .card-img,
.cid-u6VNxZNajk .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-u6VNxZNajk .card-wrapper:hover:before,
.cid-u6VNxZNajk .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-u6VNxZNajk .card-title {
  color: #fafafa;
  width: 100%;
  text-align: center;
}
.cid-u6VNxZNajk .g {
  grid-row-gap: 24px;
}
.cid-u6VNxZNajk .mobi-mbri {
  font-size: 50px;
  color: #3D626C;
}
.cid-u6VNxZNajk .container {
  width: 95%;
}
@media (max-width: 1100px) {
  .cid-u6VNxZNajk .carousel-control {
    display: none;
  }
}
.cid-u6VNxZNajk .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #012b3a;
  text-align: left;
}
.cid-u6VNxZNajk .mbr-section-title {
  margin-bottom: 60px;
  color: #012b3a;
  text-align: left;
}
.cid-u6VNxZNajk .card1 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.06.31-pm-1216x1208.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VNxZNajk .card2 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.06.46-pm-1204x1210.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VNxZNajk .card3 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.07.06-pm-1208x1218.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VNxZNajk .card4 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.08.16-pm-1198x1216.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VNxZNajk .card5 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.08.33-pm-1160x1176.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VNxZNajk .card6 {
  background-image: url("../../../assets/images/screen-shot-2024-03-13-at-12.07.54-pm-1198x1216.png");
  background-size: cover;
  background-position: center;
}
.cid-u6VSjFx22l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-4410-2000x2000.png");
}
.cid-u6VSjFx22l .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6VSjFx22l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6VSjFx22l .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u6VSjFx22l .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u6VSjFx22l .container {
    padding: 0;
  }
}
.cid-u6VSjFx22l .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-u6VSjFx22l .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u6VSjFx22l .embla__slide a {
  display: block;
  width: 100%;
}
.cid-u6VSjFx22l .embla__slide a .card-wrap {
  width: 100%;
}
.cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap {
  position: relative;
  height: 630px;
}
@media (max-width: 768px) {
  .cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap {
    height: 450px;
  }
}
.cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
}
.cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
  width: 115px;
  height: 115px;
  background-color: #b91d17;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-box {
    height: 50px;
    width: 50px;
  }
}
.cid-u6VSjFx22l .embla__slide a .card-wrap .item-wrapper .image-wrap .content-wrap .mbr-section-title {
  padding: 22px 16px;
  margin-bottom: 0;
}
.cid-u6VSjFx22l .embla__button--next,
.cid-u6VSjFx22l .embla__button--prev {
  display: flex;
}
.cid-u6VSjFx22l .embla__button {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 24px;
  background-color: #ffeec7;
  color: #d17756;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u6VSjFx22l .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u6VSjFx22l .embla__button:hover {
  background-color: #ffeec7;
  color: #d17756;
}
.cid-u6VSjFx22l .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-u6VSjFx22l .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-u6VSjFx22l .embla__button {
    top: 50%;
    width: 48px;
    height: 48px;
  }
}
.cid-u6VSjFx22l .embla {
  position: relative;
  width: 100%;
}
.cid-u6VSjFx22l .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u6VSjFx22l .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u6VSjFx22l .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u6VSjFx22l .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u6VSjFx22l .mbr-section-title {
  color: #ffffff;
}
.cid-u6VSjFx22l .mbr-box {
  color: #ffffff;
}
.cid-u8Ewln5Cls {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpg");
}
.cid-u8Ewln5Cls .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8Ewln5Cls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8Ewln5Cls .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-u8Ewln5Cls .team-card:hover {
  transform: translateY(-10px);
}
.cid-u8Ewln5Cls .card-wrap {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-u8Ewln5Cls .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-u8Ewln5Cls .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u8Ewln5Cls .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u8Ewln5Cls .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-u8Ewln5Cls .social-row {
  text-align: center;
}
.cid-u8Ewln5Cls .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
}
.cid-u8Ewln5Cls .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}
.cid-u8Ewln5Cls .social-row .soc-item:hover {
  background-color: #ffffff;
}
.cid-u8Ewln5Cls .social-row .soc-item:hover .mbr-iconfont {
  color: #000000;
}
.cid-u8Ewln5Cls .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-u8Ewln5Cls .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u8Ewln5Cls .embla__button--next,
.cid-u8Ewln5Cls .embla__button--prev {
  display: flex;
}
.cid-u8Ewln5Cls .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u8Ewln5Cls .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u8Ewln5Cls .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-u8Ewln5Cls .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u8Ewln5Cls .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u8Ewln5Cls .embla__button {
    top: auto;
  }
}
.cid-u8Ewln5Cls .embla {
  position: relative;
  width: 100%;
}
.cid-u8Ewln5Cls .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u8Ewln5Cls .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u8Ewln5Cls .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u8Ewln5Cls .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u8Ewln5Cls .mbr-role,
.cid-u8Ewln5Cls .social-row {
  color: #bbbbbb;
}
.cid-u8Ewln5Cls .card-text,
.cid-u8Ewln5Cls .mbr-section-btn,
.cid-u8Ewln5Cls .social-row {
  color: #ffffff;
}
.cid-u8Ewln5Cls .card-title,
.cid-u8Ewln5Cls .social-row {
  color: #ffffff;
}
.cid-u8Ewln5Cls .mbr-section-title {
  color: #ffffff;
}
.cid-u8Ewln5Cls .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6VNTCOcLy {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/il-1588xn.2075380306-cff6-1-1588x1058.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.cid-u6VNTCOcLy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6VNTCOcLy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6VNTCOcLy .card-row {
  align-items: stretch;
}
.cid-u6VNTCOcLy .item-wrap {
  position: relative;
  width: 100%;
  padding: 20px;
  margin-top: 60px;
  border-radius: 10px;
  background: linear-gradient(145deg, #000000, #b91d17);
  box-shadow: 10px 10px 19px #16181c, -10px -10px 19px #16181c;
}
.cid-u6VNTCOcLy .item-left-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-right: 1px solid #16181c;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .item-left-item {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .cid-u6VNTCOcLy .item-left-item {
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #16181c;
  }
}
.cid-u6VNTCOcLy .image-wrapper {
  margin-right: 30px;
}
.cid-u6VNTCOcLy .image-wrapper img {
  border-radius: 15px;
  max-width: 200px;
  aspect-ratio: 1;
  width: 200px;
  border: 5px solid #1e2024;
  position: relative;
  top: -80px;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .image-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .text-left-wrap {
    margin-top: -46px;
  }
}
.cid-u6VNTCOcLy .mbr-section-title {
  color: #fff8ef;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .mbr-section-title {
    text-align: center !important;
  }
}
.cid-u6VNTCOcLy .mbr-section-subtitle {
  color: #878e99;
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-u6VNTCOcLy .social-container {
  width: 100%;
  padding-top: 35px;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .social-container {
    padding-top: 25px;
  }
}
.cid-u6VNTCOcLy .social-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .social-title {
    text-align: center !important;
  }
}
.cid-u6VNTCOcLy .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
@media (max-width: 1199px) {
  .cid-u6VNTCOcLy .social-list {
    justify-content: center !important;
  }
}
.cid-u6VNTCOcLy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 7px;
  min-width: 53px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #16181c;
  transition: 0.4s all;
}
.cid-u6VNTCOcLy .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-u6VNTCOcLy .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 20px;
  color: #c4cfde;
}
.cid-u6VNTCOcLy .soc-item:hover {
  transform: translateY(-3px);
}
.cid-u6VNTCOcLy .soc-item:hover:before {
  opacity: 1;
}
.cid-u6VNTCOcLy .item-right-item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u6VNTCOcLy .item-right-item {
    padding-top: 10px;
    margin: 0 -20px -20px;
  }
}
@media (max-width: 575px) {
  .cid-u6VNTCOcLy .item-right-item {
    flex-wrap: wrap;
    margin: 0;
  }
}
.cid-u6VNTCOcLy .contacts-container {
  max-width: 50%;
  padding-left: 30px;
  margin: 16px 0;
}
@media (max-width: 991px) {
  .cid-u6VNTCOcLy .contacts-container {
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .cid-u6VNTCOcLy .contacts-container:nth-child(2) {
    padding-left: 100px;
  }
}
@media (max-width: 767px) {
  .cid-u6VNTCOcLy .contacts-container:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .cid-u6VNTCOcLy .contacts-container:nth-child(2) {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .cid-u6VNTCOcLy .contacts-container {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin: 0;
    padding: 0 !important;
  }
}
.cid-u6VNTCOcLy .contact-item {
  padding: 10px 0 20px;
}
.cid-u6VNTCOcLy .card-title {
  color: #878e99;
  margin-bottom: 4px;
}
.cid-u6VNTCOcLy .card-text {
  color: #fff8ef;
  margin-bottom: 0;
}
.cid-sUFMFToxmJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #16181c;
}
.cid-sUFMFToxmJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-sUFMFToxmJ a {
  font-weight: 400 !important;
  transition-duration: all .3s;
}
.cid-sUFMFToxmJ a.text-danger:hover {
  color: #EABB80 !important;
}
