body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Gilda Display', serif;
  font-size: 2.9rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.64rem;
}
.display-2 {
  font-family: 'Gilda Display', serif;
  font-size: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 5.6rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.36rem;
}
.display-5 {
  font-family: 'Gilda Display', serif;
  font-size: 1.7rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'Gilda Display', serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.32rem;
    font-size: calc( 1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.665rem + (2.9 - 1.665) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 10px 15px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #c19b76 !important;
}
.bg-success {
  background-color: #92bda3 !important;
}
.bg-info {
  background-color: #709faf !important;
}
.bg-warning {
  background-color: #b7b6b6 !important;
}
.bg-danger {
  background-color: #c4302b !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #a17549 !important;
  border-color: #a17549 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #709faf !important;
  border-color: #709faf !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c7887 !important;
  border-color: #4c7887 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #62a07b !important;
  border-color: #62a07b !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #918f8f !important;
  border-color: #918f8f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #c4302b !important;
  border-color: #c4302b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #85211d !important;
  border-color: #85211d !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #85211d !important;
  border-color: #85211d !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #906841 !important;
  color: #906841 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c19b76 !important;
  border-color: #c19b76 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #426977 !important;
  color: #426977 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #709faf !important;
  border-color: #709faf !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #58916f !important;
  color: #58916f !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #92bda3 !important;
  border-color: #92bda3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #848383 !important;
  color: #848383 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #b7b6b6 !important;
  border-color: #b7b6b6 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #701c19 !important;
  color: #701c19 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #c4302b !important;
  border-color: #c4302b !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c4302b !important;
  border-color: #c4302b !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c19b76 !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #92bda3 !important;
}
.text-info {
  color: #709faf !important;
}
.text-warning {
  color: #b7b6b6 !important;
}
.text-danger {
  color: #c4302b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #906841 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #58916f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #426977 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #848383 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #701c19 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #709faf;
}
.alert-warning {
  background-color: #b7b6b6;
}
.alert-danger {
  background-color: #c4302b;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c19b76;
  border-color: #c19b76;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #c19b76;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9dbce;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1ede6;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c2d6dd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f6f6f6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e58c89;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Gilda Display', serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #c19b76;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #c19b76;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #c19b76;
}
.up-z-index {
  z-index: 1000 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c19b76;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c19b76;
  border-bottom-color: #c19b76;
}
.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: #c19b76 !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: #333333 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23c19b76' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tXszU1iAMZ .nav-item:focus,
.cid-tXszU1iAMZ .nav-link:focus {
  outline: none;
}
.cid-tXszU1iAMZ a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #02013b;
}
.cid-tXszU1iAMZ .navbar.opened {
  transition: all .3s;
  background: #02013b !important;
}
.cid-tXszU1iAMZ .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tXszU1iAMZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tXszU1iAMZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-tXszU1iAMZ .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tXszU1iAMZ .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXszU1iAMZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tXszU1iAMZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXszU1iAMZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXszU1iAMZ .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXszU1iAMZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXszU1iAMZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tXszU1iAMZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tXszU1iAMZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXszU1iAMZ .navbar.navbar-short {
  background: #02013b !important;
  min-height: 60px;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXszU1iAMZ .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXszU1iAMZ .dropdown-item.active,
.cid-tXszU1iAMZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXszU1iAMZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tXszU1iAMZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXszU1iAMZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXszU1iAMZ .navbar-buttons {
  text-align: center;
}
.cid-tXszU1iAMZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tXszU1iAMZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tXszU1iAMZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXszU1iAMZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXszU1iAMZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tXszU1iAMZ .nav-link:hover,
.cid-tXszU1iAMZ .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tXszU1iAMZ .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tXszU1iAMZ .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tXszU1iAMZ .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tXszU1iAMZ .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tXszU1iAMZ .dropdown-menu {
    top: 100%;
  }
  .cid-tXszU1iAMZ .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tXszU1iAMZ .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tXszU1iAMZ .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tXszU1iAMZ .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-sVNw7pNkaT {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/eu-assets.simpleview-europe-1-750x430.jpg");
}
.cid-sVNw7pNkaT .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-sVNw7pNkaT .mbr-arrow i {
  color: #ffffff !important;
}
.cid-sVNw7pNkaT .btn-wrap {
  width: 100%;
}
.cid-sVNw7pNkaT .mbr-media.show-modal {
  cursor: pointer;
  display: inline-block;
  height: 4em;
  width: 4em;
}
.cid-sVNw7pNkaT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sVNw7pNkaT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sVNw7pNkaT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sVNw7pNkaT a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sVNw7pNkaT a.close:hover {
  color: #ffffff;
}
.cid-sVNAB5Hxn7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
  box-sizing: border-box;
}
.cid-sVNAB5Hxn7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sVNAB5Hxn7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sVNAB5Hxn7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sVNAB5Hxn7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sVNAB5Hxn7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sVNAB5Hxn7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
  text-align: center;
}
.cid-sVNAB5Hxn7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sVNAB5Hxn7 ul {
  font-size: 0;
}
.cid-sVNAB5Hxn7 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #0c5b47;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s;
}
.cid-sVNAB5Hxn7 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-bottom: 2px #0c5b47 solid;
  border-radius: 0 !important;
}
.cid-sVNAB5Hxn7 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-sVNAB5Hxn7 .btn-primary-outline:hover,
.cid-sVNAB5Hxn7 .btn-primary-outline:focus,
.cid-sVNAB5Hxn7 .btn-primary-outline.focus,
.cid-sVNAB5Hxn7 .btn-primary-outline.active {
  background-color: transparent !important;
  color: #0c5b47 !important;
}
.cid-tXsCDkqDae {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tXsCDkqDae {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.cid-tXsCDkqDae img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXsCDkqDae H1 {
  color: #e6e6e6;
  text-align: center;
}
.cid-tXsCDkqDae .mbr-text,
.cid-tXsCDkqDae .mbr-section-btn {
  color: #132c70;
}
.cid-tXsCDkqDae H3 {
  color: #132c70;
}
.cid-tXsCDkqDae .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXsCDkqDae .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXsCDkqDae .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXsCDkqDae .link:hover {
  color: #c19b76 !important;
}
.cid-tXsCDkqDae .link:hover .link-ico {
  color: #c19b76 !important;
  padding-left: 10px;
}
.cid-tXsCDkqDae DIV {
  color: #57468b;
}
.cid-tXsCDkqDae .text-1 {
  line-height: 1;
}
.cid-tXsCDkqDae .container-fluid {
  max-width: 1300px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-tXsCDkqDae .mbr-section-title {
    margin-bottom: 2rem;
    width: auto;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-tXsCDkqDae .mbr-section-title {
    margin-bottom: 2rem;
    width: 42rem;
    margin: auto;
  }
}
.cid-tXszU1iAMZ .nav-item:focus,
.cid-tXszU1iAMZ .nav-link:focus {
  outline: none;
}
.cid-tXszU1iAMZ a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #02013b;
}
.cid-tXszU1iAMZ .navbar.opened {
  transition: all .3s;
  background: #02013b !important;
}
.cid-tXszU1iAMZ .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tXszU1iAMZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tXszU1iAMZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-tXszU1iAMZ .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tXszU1iAMZ .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXszU1iAMZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tXszU1iAMZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXszU1iAMZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXszU1iAMZ .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXszU1iAMZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXszU1iAMZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tXszU1iAMZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tXszU1iAMZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXszU1iAMZ .navbar.navbar-short {
  background: #02013b !important;
  min-height: 60px;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXszU1iAMZ .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXszU1iAMZ .dropdown-item.active,
.cid-tXszU1iAMZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXszU1iAMZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tXszU1iAMZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXszU1iAMZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXszU1iAMZ .navbar-buttons {
  text-align: center;
}
.cid-tXszU1iAMZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tXszU1iAMZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tXszU1iAMZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXszU1iAMZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXszU1iAMZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tXszU1iAMZ .nav-link:hover,
.cid-tXszU1iAMZ .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tXszU1iAMZ .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tXszU1iAMZ .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tXszU1iAMZ .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tXszU1iAMZ .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tXszU1iAMZ .dropdown-menu {
    top: 100%;
  }
  .cid-tXszU1iAMZ .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tXszU1iAMZ .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tXszU1iAMZ .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tXszU1iAMZ .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-tXsBrNMeg5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-tXsBrNMeg5 a.btn > span {
  margin-left: 0.5rem;
}
.cid-tXsBrNMeg5 .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tXsBrNMeg5 .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-tXsBrNMeg5 .mbr-section-subtitle {
  color: #14142b;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.cid-tXsBrNMeg5 .mbr-text {
  color: #5f5d68;
  margin-bottom: 56px;
}
.cid-tXsBrNMeg5 .right-side {
  max-width: 554px;
}
.cid-tXsBrNMeg5 .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tXsBrNMeg5 .margin {
  margin-right: 14px;
}
.cid-tXsBrNMeg5 .shadow {
  padding: 62px 56px 64px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 690px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tXsBrNMeg5 img {
  max-width: 186px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 17px;
}
.cid-tXsBrNMeg5 .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-tXsBrNMeg5 .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-tXsBrNMeg5 .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-tXsBrNMeg5 .mbr-social-likes.big .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 37px;
  height: 37px;
  line-height: 44px;
  margin: 0 10px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #c19b76;
  cursor: pointer;
}
.cid-tXsBrNMeg5 .mbr-social-likes.big .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tXsBrNMeg5 .mbr-social-likes.big .btn-social:hover {
  color: #fff;
}
.cid-tXsBrNMeg5 .mbr-social-likes.big .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tXsBrNMeg5 .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cid-tXsBrNMeg5 .mbr-social-likes.small {
  display: flex;
}
.cid-tXsBrNMeg5 .mbr-social-likes.big {
  display: block;
}
.cid-tXsBrNMeg5 .mbr-social-likes.small .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #c19b76;
  cursor: pointer;
}
.cid-tXsBrNMeg5 .mbr-social-likes.small .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tXsBrNMeg5 .mbr-social-likes.small .btn-social:hover {
  color: #fff;
}
.cid-tXsBrNMeg5 .mbr-social-likes.small .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tXsBrNMeg5 .form-control,
.cid-tXsBrNMeg5 form .btn {
  min-height: initial;
}
.cid-tXsBrNMeg5 a.btn,
.cid-tXsBrNMeg5 button {
  padding: 24px 40px;
  border-radius: 80px;
}
.cid-tXsBrNMeg5 input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 40px;
  padding: 8px 26px;
}
.cid-tXsBrNMeg5 textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-tXsBrNMeg5 input:hover {
  border-color: #14142b !important;
}
.cid-tXsBrNMeg5 textarea:hover {
  border-color: #14142b !important;
}
.cid-tXsBrNMeg5 input:focus {
  border-color: #14142b !important;
}
.cid-tXsBrNMeg5 textarea:focus {
  border-color: #14142b !important;
}
.cid-tXsBrNMeg5 .form-group {
  margin-bottom: 0;
}
.cid-tXsBrNMeg5 .listen {
  margin-bottom: 24px;
}
.cid-tXsBrNMeg5 .phone {
  margin-bottom: 44px;
}
.cid-tXsBrNMeg5 .email {
  margin-bottom: 21px;
}
.cid-tXsBrNMeg5 .listen,
.cid-tXsBrNMeg5 .big {
  text-align: left;
  color: #8c8c95;
}
.cid-tXsBrNMeg5 .mbr-text,
.cid-tXsBrNMeg5 .button-align {
  color: #232323;
}
.cid-tXsBrNMeg5 .email span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-tXsBrNMeg5 .phone span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-tXsBrNMeg5 select.form-control:hover {
  border-color: #14142b;
}
.cid-tXsBrNMeg5 select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-tXsBrNMeg5 .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .cid-tXsBrNMeg5 .shadow {
    width: 100%;
    margin-top: 60px;
    max-width: initial;
  }
  .cid-tXsBrNMeg5 .left-side,
  .cid-tXsBrNMeg5 .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .cid-tXsBrNMeg5 .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
  .cid-tXsBrNMeg5 .shadow {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-tXsBrNMeg5 .shadow {
    padding: 25px;
  }
  .cid-tXsBrNMeg5 input {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-tXsBrNMeg5 .r {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .cid-tXsBrNMeg5 .mbr-social-likes.small {
    margin-top: 20px;
  }
}
.cid-tXsBrNMeg5 .big > .socicon-bg-youtube {
  background-color: #333333;
}
.cid-tXsBrNMeg5 .big > .socicon-bg-facebook {
  background-color: #333333;
}
.cid-tXsBrNMeg5 .big > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tXsBrNMeg5 .big > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tXsBrNMeg5 .big > .socicon-bg-mail {
  background-color: #134785;
}
.cid-tXsBrNMeg5 .small > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tXsBrNMeg5 .small > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tXsBrNMeg5 .small > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tXsBrNMeg5 .small > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tXsBrNMeg5 .small > .socicon-bg-mail {
  background-color: #134785;
}
.cid-tXsBrNMeg5 .mbr-iconfont {
  margin-right: 8px;
}
.cid-tXsCpChksw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tXsCpChksw {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.cid-tXsCpChksw img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXsCpChksw H1 {
  color: #e6e6e6;
  text-align: center;
}
.cid-tXsCpChksw .mbr-text,
.cid-tXsCpChksw .mbr-section-btn {
  color: #132c70;
}
.cid-tXsCpChksw H3 {
  color: #132c70;
}
.cid-tXsCpChksw .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXsCpChksw .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXsCpChksw .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXsCpChksw .link:hover {
  color: #c19b76 !important;
}
.cid-tXsCpChksw .link:hover .link-ico {
  color: #c19b76 !important;
  padding-left: 10px;
}
.cid-tXsCpChksw DIV {
  color: #57468b;
}
.cid-tXsCpChksw .text-1 {
  line-height: 1;
}
.cid-tXsCpChksw .container-fluid {
  max-width: 1300px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-tXsCpChksw .mbr-section-title {
    margin-bottom: 2rem;
    width: auto;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-tXsCpChksw .mbr-section-title {
    margin-bottom: 2rem;
    width: 42rem;
    margin: auto;
  }
}
.cid-tXszU1iAMZ .nav-item:focus,
.cid-tXszU1iAMZ .nav-link:focus {
  outline: none;
}
.cid-tXszU1iAMZ a.nav-link:focus {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #02013b;
}
.cid-tXszU1iAMZ .navbar.opened {
  transition: all .3s;
  background: #02013b !important;
}
.cid-tXszU1iAMZ .navbar .dropdown-item {
  padding: .3rem 1.5rem;
}
.cid-tXszU1iAMZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  z-index: 1;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-flex-grow: 0;
  flex-grow: 0;
}
.cid-tXszU1iAMZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.2rem);
  }
}
.cid-tXszU1iAMZ .navbar.collapsed .navbar-collapse {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-tXszU1iAMZ .navbar.collapsed .nav-link:hover::before {
  width: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  border: none !important;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tXszU1iAMZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tXszU1iAMZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .15rem 1.5rem;
  text-align: center;
}
.cid-tXszU1iAMZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tXszU1iAMZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tXszU1iAMZ .navbar .navbar-collapse {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tXszU1iAMZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tXszU1iAMZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tXszU1iAMZ .navbar .dropdown-menu .dropdown-item {
    padding: .15rem 1.5rem;
    text-align: center;
  }
  .cid-tXszU1iAMZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
  .cid-tXszU1iAMZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tXszU1iAMZ .navbar.navbar-short {
  background: #02013b !important;
  min-height: 60px;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tXszU1iAMZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tXszU1iAMZ .navbar-brand {
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption-wrap {
  display: flex;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: normal;
}
.cid-tXszU1iAMZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tXszU1iAMZ .dropdown-item.active,
.cid-tXszU1iAMZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tXszU1iAMZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tXszU1iAMZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: transparent;
}
.cid-tXszU1iAMZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 30%;
}
.cid-tXszU1iAMZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tXszU1iAMZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tXszU1iAMZ .navbar-buttons {
  text-align: center;
}
.cid-tXszU1iAMZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tXszU1iAMZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tXszU1iAMZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tXszU1iAMZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tXszU1iAMZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.cid-tXszU1iAMZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tXszU1iAMZ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-tXszU1iAMZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
.cid-tXszU1iAMZ .nav-link:hover,
.cid-tXszU1iAMZ .icons-menu .mbr-iconfont:hover {
  color: #ffffff !important;
}
.cid-tXszU1iAMZ .dropdown-item:hover {
  color: #878787 !important;
}
.cid-tXszU1iAMZ .nav-item .nav-link::before {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -0.5rem;
  width: 0;
  left: -1rem;
  background: #ffffff;
  transition: width 0.3s ease-in;
}
.cid-tXszU1iAMZ .dropdown-menu {
  padding: 0;
  transition: top .3s;
}
.cid-tXszU1iAMZ .nav-item .nav-link {
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cid-tXszU1iAMZ .navbar-expand-lg {
    -webkit-justify-content: space-around;
    justify-content: space-around;
  }
  .cid-tXszU1iAMZ .nav-link:hover::before {
    width: calc(100% + 2rem);
  }
  .cid-tXszU1iAMZ .dropdown-menu {
    top: 100%;
  }
  .cid-tXszU1iAMZ .dropdown-item {
    border-bottom: 1px solid #b3b3b3;
    box-shadow: 0px 2px 5px #ffffff;
    background: #ffffff !important;
  }
  .cid-tXszU1iAMZ .dropdown-item:hover {
    background: #e6e6e6 !important;
  }
  .cid-tXszU1iAMZ .nav-item.open .nav-link::before {
    left: calc(1.667em - 1rem);
    bottom: 0.538px;
    width: calc(100% - 3.334em + 2rem);
  }
  .cid-tXszU1iAMZ .navbar-short .dropdown-menu {
    top: 100%;
  }
}
.cid-unA3AhgNnY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9f2b19;
}
.cid-unA3AhgNnY .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-title {
  color: #ffffff;
  font-weight: 700;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-title span:first-child {
  color: #ff4e3c;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-title span:nth-child(2) {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-unA3AhgNnY .card .wrapper .mbr-text {
  color: #ffffff;
  font-weight: 300;
}
.cid-unA3AhgNnY .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-unA3AhgNnY .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-unA3AhgNnY .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-unA3AhgNnY .card .wrapper .buttons-wrap .mbr-section-btn .btn.display-4 {
  padding: 12px 35px;
  line-height: 1.0625;
}
.cid-unA3AhgNnY .card .wrapper .mbr-list .list,
.cid-unA3AhgNnY .card .wrapper .mbr-section-btn UL {
  text-align: center;
}
.cid-unA3AhgNnY .card .wrapper .mbr-section-subtitle,
.cid-unA3AhgNnY .mbr-section-btn,
.cid-unA3AhgNnY .mbr-list .list {
  text-align: center;
  color: #ffffff;
}
.cid-unA3AhgNnY .card .wrapper .mbr-text,
.cid-unA3AhgNnY .mbr-section-btn,
.cid-unA3AhgNnY .mbr-list .list {
  text-align: center;
}
.cid-uNTl9kbJ7j {
  background-color: #02013b;
  padding-top: 7rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .cid-uNTl9kbJ7j .carousel {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uNTl9kbJ7j .carousel {
    height: 60vh;
  }
}
.cid-uNTl9kbJ7j .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uNTl9kbJ7j .carousel-item,
.cid-uNTl9kbJ7j .carousel-inner {
  height: 100%;
}
.cid-uNTl9kbJ7j .content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0 15%;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uNTl9kbJ7j .content_wrap {
    padding: 100px 15%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uNTl9kbJ7j .content_wrap {
    padding: 60px 12px;
  }
}
.cid-uNTl9kbJ7j .carousel-item,
.cid-uNTl9kbJ7j .carousel-inner {
  height: 100%;
}
.cid-uNTl9kbJ7j .mbr-section-title {
  margin-bottom: 25px;
  color: #202020;
}
.cid-uNTl9kbJ7j .mbr-section-btn {
  margin-top: 42px;
}
.cid-uNTl9kbJ7j .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uNTl9kbJ7j .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uNTl9kbJ7j .carousel-control:hover.carousel-control-prev .mobi-mbri {
  transform: translateX(3px);
}
.cid-uNTl9kbJ7j .carousel-control:hover.carousel-control-next .mobi-mbri {
  transform: translateX(-3px);
}
.cid-uNTl9kbJ7j .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uNTl9kbJ7j .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uNTl9kbJ7j .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uNTl9kbJ7j .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uNTl9kbJ7j .carousel-control {
  top: 50%;
  width: 92px;
  height: 92px;
  margin-top: -1.5rem;
  font-size: 21px;
  border-radius: 50%;
  color: #202020;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.cid-uNTl9kbJ7j .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: -1.9rem;
}
.cid-uNTl9kbJ7j .carousel-control.carousel-control-next {
  right: 0;
  margin-right: -1.9rem;
}
.cid-uNTl9kbJ7j .carousel-control .mobi-mbri {
  transition: all 0.2s ease-out;
}
@media (max-width: 768px) {
  .cid-uNTl9kbJ7j .carousel-control {
    display: none !important;
  }
}
.cid-uNTl9kbJ7j .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 2rem !important;
  align-items: center;
}
.cid-uNTl9kbJ7j .carousel-indicators li {
  max-width: 10px;
  max-height: 10px;
  height: 6px;
  width: 6px;
  margin: 10px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.cid-uNTl9kbJ7j .carousel-indicators li.active,
.cid-uNTl9kbJ7j .carousel-indicators li:hover {
  transform: scale(1.6);
}
.cid-uNTl9kbJ7j .carousel-indicators li::after,
.cid-uNTl9kbJ7j .carousel-indicators li::before {
  content: none;
}
.cid-uNTl9kbJ7j .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uNTl9kbJ7j .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uNTl9kbJ7j .height_100 {
    height: 100%;
  }
}
.cid-uNTlkUerRM {
  background-image: url("../../../assets/images/caulkheadsphoto-2-990x660.jpg");
}
.cid-uNTlkUerRM .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-uNTlkUerRM .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uNTlkUerRM .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNTlkUerRM .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-uNTlkUerRM .image-element {
    padding-left: 0;
  }
}
.cid-uNTlkUerRM .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-uNTlkUerRM .mbr-text {
  color: #878787;
  line-height: 27px;
}
.cid-uNTlkUerRM .brown {
  color: #c19b76;
}
.cid-uNTlkUerRM .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uNTlkUerRM .paragraphs-wrapper .first-paragraph,
.cid-uNTlkUerRM .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-uNTlkUerRM .image-element {
    padding-top: 1rem;
  }
  .cid-uNTlkUerRM .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uNTlkUerRM .paragraphs-wrapper .first-paragraph,
  .cid-uNTlkUerRM .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-uNTlkUerRM .first-paragraph,
  .cid-uNTlkUerRM .second-paragraph {
    width: 50%;
  }
  .cid-uNTlkUerRM .first-paragraph {
    padding-right: .5rem;
  }
  .cid-uNTlkUerRM .second-paragraph {
    padding-left: .5rem;
  }
  .cid-uNTlkUerRM .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-uNTlkUerRM .mbr-section-title,
  .cid-uNTlkUerRM .mbr-section-btn {
    text-align: left;
  }
}
.cid-uNTlkUerRM .mbr-text,
.cid-uNTlkUerRM .mbr-section-btn {
  color: #ffffff;
}
.cid-uZRU0X6VoN {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #02013b;
}
.cid-uZRU0X6VoN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZRU0X6VoN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZRU0X6VoN .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-uZRU0X6VoN .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-uZRU0X6VoN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZRU0X6VoN .item-wrapper .w-100 {
  height: 100%;
}
.cid-uZRU0X6VoN .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uZRU0X6VoN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uZRU0X6VoN .carousel-control,
.cid-uZRU0X6VoN .close {
  background: #1b1b1b;
}
.cid-uZRU0X6VoN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZRU0X6VoN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZRU0X6VoN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZRU0X6VoN .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZRU0X6VoN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uZRU0X6VoN .close::before {
  content: '\e91a';
}
.cid-uZRU0X6VoN .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-uZRU0X6VoN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uZRU0X6VoN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRU0X6VoN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZRU0X6VoN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZRU0X6VoN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZRU0X6VoN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZRU0X6VoN .carousel-indicators li.active,
.cid-uZRU0X6VoN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZRU0X6VoN .carousel-indicators li::after,
.cid-uZRU0X6VoN .carousel-indicators li::before {
  content: none;
}
.cid-uZRU0X6VoN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZRU0X6VoN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZRU0X6VoN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZRU0X6VoN .carousel-indicators {
    display: none;
  }
}
.cid-uZRU0X6VoN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZRU0X6VoN .carousel-inner > .active {
  display: block;
}
.cid-uZRU0X6VoN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRU0X6VoN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZRU0X6VoN .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZRU0X6VoN .carousel-control,
  .cid-uZRU0X6VoN .carousel-indicators,
  .cid-uZRU0X6VoN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZRU0X6VoN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZRU0X6VoN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZRU0X6VoN .carousel-indicators .active,
.cid-uZRU0X6VoN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZRU0X6VoN .carousel-indicators .active {
  background: #fafafa;
}
.cid-uZRU0X6VoN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZRU0X6VoN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZRU0X6VoN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZRU0X6VoN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZRU0X6VoN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZRU0X6VoN .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZRU0X6VoN .carousel {
  width: 100%;
}
.cid-uZRU0X6VoN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZRU0X6VoN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZRU0X6VoN .modal.fade .modal-dialog,
.cid-uZRU0X6VoN .modal.in .modal-dialog {
  transform: none;
}
.cid-uZRU0X6VoN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZRU0X6VoN H6 {
  text-align: center;
}
.cid-uZRU0X6VoN .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uZRU0X6VoN .rotate {
    top: -6px;
  }
}
.cid-uZRU0X6VoN .title-relative {
  position: relative;
}
.cid-uZRU0X6VoN .mbr-section-title,
.cid-uZRU0X6VoN .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uZRU0X6VoN .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-uZRU0X6VoN .item-content {
    padding: 1rem;
  }
}
.cid-uZRU0X6VoN .mbr-text,
.cid-uZRU0X6VoN .item-title {
  color: #fafafa;
}
.cid-uZRU0X6VoN .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-uZRU0X6VoN .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-uZRU0X6VoN .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-uZRU0X6VoN .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-uZRU0X6VoN .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-uZRU0X6VoN .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-uZRU0X6VoN .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-uZRU0X6VoN .item-title {
  color: #ffbf01;
}
.cid-v8be9dUVJe {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #02013b;
}
.cid-v8be9dUVJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8be9dUVJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8be9dUVJe .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-v8be9dUVJe .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-v8be9dUVJe .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v8be9dUVJe .item-wrapper .w-100 {
  height: 100%;
}
.cid-v8be9dUVJe .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-v8be9dUVJe .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v8be9dUVJe .carousel-control,
.cid-v8be9dUVJe .close {
  background: #1b1b1b;
}
.cid-v8be9dUVJe .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v8be9dUVJe .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v8be9dUVJe .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v8be9dUVJe .carousel-control-next span {
  margin-left: 5px;
}
.cid-v8be9dUVJe .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v8be9dUVJe .close::before {
  content: '\e91a';
}
.cid-v8be9dUVJe .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-v8be9dUVJe .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v8be9dUVJe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8be9dUVJe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v8be9dUVJe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v8be9dUVJe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v8be9dUVJe .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v8be9dUVJe .carousel-indicators li.active,
.cid-v8be9dUVJe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v8be9dUVJe .carousel-indicators li::after,
.cid-v8be9dUVJe .carousel-indicators li::before {
  content: none;
}
.cid-v8be9dUVJe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v8be9dUVJe .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v8be9dUVJe .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v8be9dUVJe .carousel-indicators {
    display: none;
  }
}
.cid-v8be9dUVJe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v8be9dUVJe .carousel-inner > .active {
  display: block;
}
.cid-v8be9dUVJe .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8be9dUVJe .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8be9dUVJe .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v8be9dUVJe .carousel-control,
  .cid-v8be9dUVJe .carousel-indicators,
  .cid-v8be9dUVJe .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v8be9dUVJe .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v8be9dUVJe .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v8be9dUVJe .carousel-indicators .active,
.cid-v8be9dUVJe .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v8be9dUVJe .carousel-indicators .active {
  background: #fafafa;
}
.cid-v8be9dUVJe .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v8be9dUVJe .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v8be9dUVJe .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v8be9dUVJe .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v8be9dUVJe .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v8be9dUVJe .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v8be9dUVJe .carousel {
  width: 100%;
}
.cid-v8be9dUVJe .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v8be9dUVJe .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v8be9dUVJe .modal.fade .modal-dialog,
.cid-v8be9dUVJe .modal.in .modal-dialog {
  transform: none;
}
.cid-v8be9dUVJe .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v8be9dUVJe H6 {
  text-align: center;
}
.cid-v8be9dUVJe .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-v8be9dUVJe .rotate {
    top: -6px;
  }
}
.cid-v8be9dUVJe .title-relative {
  position: relative;
}
.cid-v8be9dUVJe .mbr-section-title,
.cid-v8be9dUVJe .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-v8be9dUVJe .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-v8be9dUVJe .item-content {
    padding: 1rem;
  }
}
.cid-v8be9dUVJe .mbr-text,
.cid-v8be9dUVJe .item-title {
  color: #fafafa;
}
.cid-v8be9dUVJe .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-v8be9dUVJe .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-v8be9dUVJe .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-v8be9dUVJe .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-v8be9dUVJe .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-v8be9dUVJe .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-v8be9dUVJe .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-v8be9dUVJe .item-title {
  color: #ffbf01;
}
.cid-v8bdC6ytal {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #02013b;
}
.cid-v8bdC6ytal .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8bdC6ytal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8bdC6ytal .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-v8bdC6ytal .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-v8bdC6ytal .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v8bdC6ytal .item-wrapper .w-100 {
  height: 100%;
}
.cid-v8bdC6ytal .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-v8bdC6ytal .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v8bdC6ytal .carousel-control,
.cid-v8bdC6ytal .close {
  background: #1b1b1b;
}
.cid-v8bdC6ytal .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v8bdC6ytal .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v8bdC6ytal .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v8bdC6ytal .carousel-control-next span {
  margin-left: 5px;
}
.cid-v8bdC6ytal .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v8bdC6ytal .close::before {
  content: '\e91a';
}
.cid-v8bdC6ytal .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-v8bdC6ytal .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v8bdC6ytal .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8bdC6ytal .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v8bdC6ytal .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v8bdC6ytal .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v8bdC6ytal .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v8bdC6ytal .carousel-indicators li.active,
.cid-v8bdC6ytal .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v8bdC6ytal .carousel-indicators li::after,
.cid-v8bdC6ytal .carousel-indicators li::before {
  content: none;
}
.cid-v8bdC6ytal .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v8bdC6ytal .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v8bdC6ytal .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v8bdC6ytal .carousel-indicators {
    display: none;
  }
}
.cid-v8bdC6ytal .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v8bdC6ytal .carousel-inner > .active {
  display: block;
}
.cid-v8bdC6ytal .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8bdC6ytal .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8bdC6ytal .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v8bdC6ytal .carousel-control,
  .cid-v8bdC6ytal .carousel-indicators,
  .cid-v8bdC6ytal .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v8bdC6ytal .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v8bdC6ytal .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v8bdC6ytal .carousel-indicators .active,
.cid-v8bdC6ytal .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v8bdC6ytal .carousel-indicators .active {
  background: #fafafa;
}
.cid-v8bdC6ytal .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v8bdC6ytal .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v8bdC6ytal .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v8bdC6ytal .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v8bdC6ytal .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v8bdC6ytal .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v8bdC6ytal .carousel {
  width: 100%;
}
.cid-v8bdC6ytal .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v8bdC6ytal .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v8bdC6ytal .modal.fade .modal-dialog,
.cid-v8bdC6ytal .modal.in .modal-dialog {
  transform: none;
}
.cid-v8bdC6ytal .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v8bdC6ytal H6 {
  text-align: center;
}
.cid-v8bdC6ytal .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-v8bdC6ytal .rotate {
    top: -6px;
  }
}
.cid-v8bdC6ytal .title-relative {
  position: relative;
}
.cid-v8bdC6ytal .mbr-section-title,
.cid-v8bdC6ytal .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-v8bdC6ytal .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-v8bdC6ytal .item-content {
    padding: 1rem;
  }
}
.cid-v8bdC6ytal .mbr-text,
.cid-v8bdC6ytal .item-title {
  color: #fafafa;
}
.cid-v8bdC6ytal .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-v8bdC6ytal .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-v8bdC6ytal .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-v8bdC6ytal .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-v8bdC6ytal .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-v8bdC6ytal .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-v8bdC6ytal .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-v8bdC6ytal .item-title {
  color: #ffbf01;
}
.cid-uZRUQbVwXt {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #02013b;
}
.cid-uZRUQbVwXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZRUQbVwXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZRUQbVwXt .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-uZRUQbVwXt .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-uZRUQbVwXt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZRUQbVwXt .item-wrapper .w-100 {
  height: 100%;
}
.cid-uZRUQbVwXt .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uZRUQbVwXt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uZRUQbVwXt .carousel-control,
.cid-uZRUQbVwXt .close {
  background: #1b1b1b;
}
.cid-uZRUQbVwXt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZRUQbVwXt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZRUQbVwXt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZRUQbVwXt .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZRUQbVwXt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uZRUQbVwXt .close::before {
  content: '\e91a';
}
.cid-uZRUQbVwXt .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-uZRUQbVwXt .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uZRUQbVwXt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRUQbVwXt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZRUQbVwXt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZRUQbVwXt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZRUQbVwXt .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZRUQbVwXt .carousel-indicators li.active,
.cid-uZRUQbVwXt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZRUQbVwXt .carousel-indicators li::after,
.cid-uZRUQbVwXt .carousel-indicators li::before {
  content: none;
}
.cid-uZRUQbVwXt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZRUQbVwXt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZRUQbVwXt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZRUQbVwXt .carousel-indicators {
    display: none;
  }
}
.cid-uZRUQbVwXt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZRUQbVwXt .carousel-inner > .active {
  display: block;
}
.cid-uZRUQbVwXt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRUQbVwXt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZRUQbVwXt .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZRUQbVwXt .carousel-control,
  .cid-uZRUQbVwXt .carousel-indicators,
  .cid-uZRUQbVwXt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZRUQbVwXt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZRUQbVwXt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZRUQbVwXt .carousel-indicators .active,
.cid-uZRUQbVwXt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZRUQbVwXt .carousel-indicators .active {
  background: #fafafa;
}
.cid-uZRUQbVwXt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZRUQbVwXt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZRUQbVwXt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZRUQbVwXt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZRUQbVwXt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZRUQbVwXt .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZRUQbVwXt .carousel {
  width: 100%;
}
.cid-uZRUQbVwXt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZRUQbVwXt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZRUQbVwXt .modal.fade .modal-dialog,
.cid-uZRUQbVwXt .modal.in .modal-dialog {
  transform: none;
}
.cid-uZRUQbVwXt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZRUQbVwXt H6 {
  text-align: center;
}
.cid-uZRUQbVwXt .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uZRUQbVwXt .rotate {
    top: -6px;
  }
}
.cid-uZRUQbVwXt .title-relative {
  position: relative;
}
.cid-uZRUQbVwXt .mbr-section-title,
.cid-uZRUQbVwXt .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uZRUQbVwXt .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-uZRUQbVwXt .item-content {
    padding: 1rem;
  }
}
.cid-uZRUQbVwXt .mbr-text,
.cid-uZRUQbVwXt .item-title {
  color: #fafafa;
}
.cid-uZRUQbVwXt .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-uZRUQbVwXt .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-uZRUQbVwXt .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-uZRUQbVwXt .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-uZRUQbVwXt .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-uZRUQbVwXt .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-uZRUQbVwXt .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-uZRUQbVwXt .item-title {
  color: #ffbf01;
}
.cid-uZRVSBgp3P {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #02013b;
}
.cid-uZRVSBgp3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZRVSBgp3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZRVSBgp3P .item-wrapper {
  padding: 30px;
  transition: 0.2s;
  border: 1px solid transparent;
  position: relative;
}
.cid-uZRVSBgp3P .item-wrapper:hover {
  border: 1px solid #fafafa;
}
.cid-uZRVSBgp3P .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZRVSBgp3P .item-wrapper .w-100 {
  height: 100%;
}
.cid-uZRVSBgp3P .item-wrapper img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uZRVSBgp3P .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  color: #fafafa;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uZRVSBgp3P .carousel-control,
.cid-uZRVSBgp3P .close {
  background: #1b1b1b;
}
.cid-uZRVSBgp3P .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZRVSBgp3P .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZRVSBgp3P .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZRVSBgp3P .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZRVSBgp3P .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fafafa;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fafafa;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uZRVSBgp3P .close::before {
  content: '\e91a';
}
.cid-uZRVSBgp3P .close:hover {
  opacity: 1;
  background: #000000;
  color: #fafafa;
}
.cid-uZRVSBgp3P .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uZRVSBgp3P .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRVSBgp3P .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZRVSBgp3P .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZRVSBgp3P .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZRVSBgp3P .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fafafa;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZRVSBgp3P .carousel-indicators li.active,
.cid-uZRVSBgp3P .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZRVSBgp3P .carousel-indicators li::after,
.cid-uZRVSBgp3P .carousel-indicators li::before {
  content: none;
}
.cid-uZRVSBgp3P .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZRVSBgp3P .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZRVSBgp3P .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZRVSBgp3P .carousel-indicators {
    display: none;
  }
}
.cid-uZRVSBgp3P .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZRVSBgp3P .carousel-inner > .active {
  display: block;
}
.cid-uZRVSBgp3P .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZRVSBgp3P .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZRVSBgp3P .carousel-control:hover {
  background: #1c1c1c;
  color: #fafafa;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZRVSBgp3P .carousel-control,
  .cid-uZRVSBgp3P .carousel-indicators,
  .cid-uZRVSBgp3P .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZRVSBgp3P .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZRVSBgp3P .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZRVSBgp3P .carousel-indicators .active,
.cid-uZRVSBgp3P .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZRVSBgp3P .carousel-indicators .active {
  background: #fafafa;
}
.cid-uZRVSBgp3P .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZRVSBgp3P .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZRVSBgp3P .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZRVSBgp3P .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZRVSBgp3P .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZRVSBgp3P .modal-body img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZRVSBgp3P .carousel {
  width: 100%;
}
.cid-uZRVSBgp3P .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZRVSBgp3P .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZRVSBgp3P .modal.fade .modal-dialog,
.cid-uZRVSBgp3P .modal.in .modal-dialog {
  transform: none;
}
.cid-uZRVSBgp3P .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZRVSBgp3P H6 {
  text-align: center;
}
.cid-uZRVSBgp3P .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-uZRVSBgp3P .rotate {
    top: -6px;
  }
}
.cid-uZRVSBgp3P .title-relative {
  position: relative;
}
.cid-uZRVSBgp3P .mbr-section-title,
.cid-uZRVSBgp3P .mbr-section-subtitle {
  color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uZRVSBgp3P .item-content {
    padding-top: 10px;
  }
}
@media (max-width: 991px) {
  .cid-uZRVSBgp3P .item-content {
    padding: 1rem;
  }
}
.cid-uZRVSBgp3P .mbr-text,
.cid-uZRVSBgp3P .item-title {
  color: #fafafa;
}
.cid-uZRVSBgp3P .inner-position {
  padding: 40px;
  background-color: #fafafa;
  max-width: 60%;
  margin: 0 auto;
}
.cid-uZRVSBgp3P .inner-price {
  margin-bottom: 0;
  align-self: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
}
.cid-uZRVSBgp3P .style-button {
  padding: 15px 30px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0;
  font-weight: 500;
  background-color: #000000;
  color: #fafafa;
}
.cid-uZRVSBgp3P .order-position {
  display: flex;
  justify-content: space-between;
}
.cid-uZRVSBgp3P .text-size {
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.cid-uZRVSBgp3P .text-color {
  color: #c4c4c8;
  font-size: 14px;
  line-height: 24px;
}
.cid-uZRVSBgp3P .span-color {
  color: #000000;
  font-weight: 700;
}
.cid-uZRVSBgp3P .item-title {
  color: #ffbf01;
}
.cid-uZRW3CCf9S {
  background: #02013b;
}
.cid-uZRW3CCf9S .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-uZRW3CCf9S .image-block img {
  width: 100%;
}
.cid-uZRW3CCf9S .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uZRW3CCf9S .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uPMlBZkc6U {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #02013b;
}
.cid-uPMlBZkc6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPMlBZkc6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPMlBZkc6U .mbr-section-title {
  color: #f77c07;
}
.cid-uPMlBZkc6U .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-valExUdtfV {
  background: #ffffff;
}
.cid-valExUdtfV .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-valExUdtfV .video-block {
    width: 100% !important;
  }
}
.cid-v2gbvJDHXx {
  background: #02013b;
}
.cid-v2gbvJDHXx .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-v2gbvJDHXx .image-block img {
  width: 100%;
}
.cid-v2gbvJDHXx .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-v2gbvJDHXx .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-valFmmC9xu {
  background: #02013b;
}
.cid-valFmmC9xu .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-valFmmC9xu .image-block img {
  width: 100%;
}
.cid-valFmmC9xu .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-valFmmC9xu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-valFxXRbaW {
  background: #02013b;
}
.cid-valFxXRbaW .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-valFxXRbaW .image-block img {
  width: 100%;
}
.cid-valFxXRbaW .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-valFxXRbaW .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-valFD2zcUg {
  background: #ffffff;
}
.cid-valFD2zcUg .video-block {
  margin: auto;
  width: 100% !important;
}
@media (max-width: 767px) {
  .cid-valFD2zcUg .video-block {
    width: 100% !important;
  }
}
.cid-valFKdt2YA {
  background: #02013b;
}
.cid-valFKdt2YA .image-block {
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-valFKdt2YA .image-block img {
  width: 100%;
}
.cid-valFKdt2YA .image-block .img-caption {
  background: #444444;
  width: 100%;
  padding: 1rem 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-valFKdt2YA .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uNTm250ZmR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uNTm250ZmR a.btn > span {
  margin-left: 0.5rem;
}
.cid-uNTm250ZmR .row {
  align-items: center;
  justify-content: space-between;
}
.cid-uNTm250ZmR .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
  color: #14142b;
}
.cid-uNTm250ZmR .mbr-section-subtitle {
  color: #14142b;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}
.cid-uNTm250ZmR .mbr-text {
  color: #5f5d68;
  margin-bottom: 56px;
}
.cid-uNTm250ZmR .right-side {
  max-width: 554px;
}
.cid-uNTm250ZmR .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uNTm250ZmR .margin {
  margin-right: 14px;
}
.cid-uNTm250ZmR .shadow {
  padding: 62px 56px 64px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  max-width: 690px;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-uNTm250ZmR img {
  max-width: 186px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 17px;
}
.cid-uNTm250ZmR .card-title {
  margin-bottom: 4px;
  color: #14142b;
}
.cid-uNTm250ZmR .card-subtitle {
  margin-bottom: 21px;
  color: #8c8c95;
}
.cid-uNTm250ZmR .card-text {
  margin-bottom: 40px;
  color: #8c8c95;
}
.cid-uNTm250ZmR .mbr-social-likes.big .btn-social {
  font-size: 20px;
  border-radius: 25%;
  width: 37px;
  height: 37px;
  line-height: 44px;
  margin: 0 10px 0 0 !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #c19b76;
  cursor: pointer;
}
.cid-uNTm250ZmR .mbr-social-likes.big .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-uNTm250ZmR .mbr-social-likes.big .btn-social:hover {
  color: #fff;
}
.cid-uNTm250ZmR .mbr-social-likes.big .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-uNTm250ZmR .r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.cid-uNTm250ZmR .mbr-social-likes.small {
  display: flex;
}
.cid-uNTm250ZmR .mbr-social-likes.big {
  display: block;
}
.cid-uNTm250ZmR .mbr-social-likes.small .btn-social {
  font-size: 14px;
  border-radius: 50%;
  width: 30px;
  height: 30px !important;
  line-height: 30px;
  margin: 0 0px 0 10px !important;
  padding: 0;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #c19b76;
  cursor: pointer;
}
.cid-uNTm250ZmR .mbr-social-likes.small .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-uNTm250ZmR .mbr-social-likes.small .btn-social:hover {
  color: #fff;
}
.cid-uNTm250ZmR .mbr-social-likes.small .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-uNTm250ZmR .form-control,
.cid-uNTm250ZmR form .btn {
  min-height: initial;
}
.cid-uNTm250ZmR a.btn,
.cid-uNTm250ZmR button {
  padding: 24px 40px;
  border-radius: 80px;
}
.cid-uNTm250ZmR input {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 64px;
  margin-bottom: 40px;
  padding: 8px 26px;
}
.cid-uNTm250ZmR textarea {
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 14px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  box-shadow: none !important;
  height: 132px;
  margin-bottom: 40px;
  padding: 20px 26px;
}
.cid-uNTm250ZmR input:hover {
  border-color: #14142b !important;
}
.cid-uNTm250ZmR textarea:hover {
  border-color: #14142b !important;
}
.cid-uNTm250ZmR input:focus {
  border-color: #14142b !important;
}
.cid-uNTm250ZmR textarea:focus {
  border-color: #14142b !important;
}
.cid-uNTm250ZmR .form-group {
  margin-bottom: 0;
}
.cid-uNTm250ZmR .listen {
  margin-bottom: 24px;
}
.cid-uNTm250ZmR .phone {
  margin-bottom: 44px;
}
.cid-uNTm250ZmR .email {
  margin-bottom: 21px;
}
.cid-uNTm250ZmR .listen,
.cid-uNTm250ZmR .big {
  text-align: left;
  color: #8c8c95;
}
.cid-uNTm250ZmR .mbr-text,
.cid-uNTm250ZmR .button-align {
  color: #232323;
}
.cid-uNTm250ZmR .email span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-uNTm250ZmR .phone span {
  padding: 7px;
  background-color: #14142b;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 50%;
}
.cid-uNTm250ZmR select.form-control:hover {
  border-color: #14142b;
}
.cid-uNTm250ZmR select.form-control {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: #8c8c95;
  transition: border-color 300ms ease;
  min-height: 64px;
  padding-right: 26px;
  padding-left: 26px;
  border-style: solid !important;
  border-width: 1px !important;
  border-color: #e2e3e9 !important;
  border-radius: 100px;
  background-color: #fff;
  -webkit-transition: border-color 300ms ease;
  display: flex;
}
.cid-uNTm250ZmR .form-check > input {
  height: 1em;
  width: 1em;
  padding: 0;
  float: initial;
  margin-bottom: 0;
}
@media (max-width: 770px) {
  .cid-uNTm250ZmR .shadow {
    width: 100%;
    margin-top: 60px;
    max-width: initial;
  }
  .cid-uNTm250ZmR .left-side,
  .cid-uNTm250ZmR .right-side {
    width: 100%;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .cid-uNTm250ZmR .right-side {
    max-width: initial;
    margin-bottom: 50px;
  }
  .cid-uNTm250ZmR .shadow {
    margin: auto;
  }
}
@media (max-width: 600px) {
  .cid-uNTm250ZmR .shadow {
    padding: 25px;
  }
  .cid-uNTm250ZmR input {
    margin-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .cid-uNTm250ZmR .r {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .cid-uNTm250ZmR .mbr-social-likes.small {
    margin-top: 20px;
  }
}
.cid-uNTm250ZmR .big > .socicon-bg-youtube {
  background-color: #333333;
}
.cid-uNTm250ZmR .big > .socicon-bg-facebook {
  background-color: #333333;
}
.cid-uNTm250ZmR .big > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-uNTm250ZmR .big > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-uNTm250ZmR .big > .socicon-bg-mail {
  background-color: #134785;
}
.cid-uNTm250ZmR .small > .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-uNTm250ZmR .small > .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-uNTm250ZmR .small > .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-uNTm250ZmR .small > .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-uNTm250ZmR .small > .socicon-bg-mail {
  background-color: #134785;
}
.cid-uNTm250ZmR .mbr-iconfont {
  margin-right: 8px;
}
.cid-rzMgZGPH0E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rzMgZGPH0E .google-map {
  width: 100%;
  height: 25rem;
}
.cid-rzMgZGPH0E .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-tXsC0k8HZg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-tXsC0k8HZg {
    padding-top: 2px;
    padding-bottom: 2px;
  }
}
.cid-tXsC0k8HZg img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-tXsC0k8HZg H1 {
  color: #e6e6e6;
  text-align: center;
}
.cid-tXsC0k8HZg .mbr-text,
.cid-tXsC0k8HZg .mbr-section-btn {
  color: #132c70;
}
.cid-tXsC0k8HZg H3 {
  color: #132c70;
}
.cid-tXsC0k8HZg .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-tXsC0k8HZg .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-tXsC0k8HZg .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-tXsC0k8HZg .link:hover {
  color: #c19b76 !important;
}
.cid-tXsC0k8HZg .link:hover .link-ico {
  color: #c19b76 !important;
  padding-left: 10px;
}
.cid-tXsC0k8HZg DIV {
  color: #57468b;
}
.cid-tXsC0k8HZg .text-1 {
  line-height: 1;
}
.cid-tXsC0k8HZg .container-fluid {
  max-width: 1300px;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  .cid-tXsC0k8HZg .mbr-section-title {
    margin-bottom: 2rem;
    width: auto;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-tXsC0k8HZg .mbr-section-title {
    margin-bottom: 2rem;
    width: 42rem;
    margin: auto;
  }
}
