body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #404041 !important;
}
.bg-success {
  background-color: #cfc3ac !important;
}
.bg-info {
  background-color: #a19a8c !important;
}
.bg-warning {
  background-color: #606060 !important;
}
.bg-danger {
  background-color: #fafafa !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #404041 !important;
  border-color: #404041 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #151515 !important;
  border-color: #151515 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #151515 !important;
  border-color: #151515 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #908269 !important;
  border-color: #908269 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #5e5544 !important;
  border-color: #5e5544 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5e5544 !important;
  border-color: #5e5544 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a19a8c !important;
  border-color: #a19a8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #766f60 !important;
  border-color: #766f60 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #766f60 !important;
  border-color: #766f60 !important;
}
.btn-success,
.btn-success:active {
  background-color: #cfc3ac !important;
  border-color: #cfc3ac !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #af9b75 !important;
  border-color: #af9b75 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #af9b75 !important;
  border-color: #af9b75 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #606060 !important;
  border-color: #606060 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #404041;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #151515 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #404041 !important;
  border-color: #404041 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #908269;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #5e5544 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #908269 !important;
  border-color: #908269 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a19a8c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #766f60 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a19a8c !important;
  border-color: #a19a8c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cfc3ac;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #af9b75 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cfc3ac !important;
  border-color: #cfc3ac !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #606060;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #353535 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #606060 !important;
  border-color: #606060 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #404041 !important;
}
.text-secondary {
  color: #908269 !important;
}
.text-success {
  color: #cfc3ac !important;
}
.text-info {
  color: #a19a8c !important;
}
.text-warning {
  color: #606060 !important;
}
.text-danger {
  color: #fafafa !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0d0d0e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #554d3e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #aa946b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #6d675a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #2d2d2d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #c7c7c7 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #404041;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a19a8c;
}
.alert-warning {
  background-color: #606060;
}
.alert-danger {
  background-color: #fafafa;
}
.mbr-gallery-filter li.active .btn {
  background-color: #404041;
  border-color: #404041;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #404041;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b4;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dad8d2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a0a0a0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #404041 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #404041;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #404041;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #404041;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #404041;
  border-bottom-color: #404041;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #404041 !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: #908269 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23404041' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tlEcqdZ9iC {
  z-index: 1000;
  width: 100%;
}
.cid-tlEcqdZ9iC .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-tlEcqdZ9iC .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-tlEcqdZ9iC .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .icons-menu {
    padding: 0 3rem;
  }
}
.cid-tlEcqdZ9iC nav.navbar {
  position: fixed;
}
.cid-tlEcqdZ9iC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlEcqdZ9iC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlEcqdZ9iC .dropdown-item:hover,
.cid-tlEcqdZ9iC .dropdown-item:focus {
  background: #404041 !important;
  color: white !important;
}
.cid-tlEcqdZ9iC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlEcqdZ9iC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlEcqdZ9iC .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-tlEcqdZ9iC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlEcqdZ9iC .nav-link {
  position: relative;
}
.cid-tlEcqdZ9iC .container {
  display: flex;
  margin: auto;
}
.cid-tlEcqdZ9iC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown-menu,
.cid-tlEcqdZ9iC .navbar.opened {
  background: #404041 !important;
  min-height: 100%;
}
.cid-tlEcqdZ9iC .nav-item:focus,
.cid-tlEcqdZ9iC .nav-link:focus {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlEcqdZ9iC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlEcqdZ9iC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(64, 64, 65, 0);
}
.cid-tlEcqdZ9iC .navbar.opened {
  transition: all 0.3s;
}
.cid-tlEcqdZ9iC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlEcqdZ9iC .navbar .navbar-logo img {
  width: auto;
}
.cid-tlEcqdZ9iC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlEcqdZ9iC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlEcqdZ9iC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tlEcqdZ9iC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlEcqdZ9iC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlEcqdZ9iC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tlEcqdZ9iC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlEcqdZ9iC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown-item.active,
.cid-tlEcqdZ9iC .dropdown-item:active {
  background-color: transparent;
}
.cid-tlEcqdZ9iC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #404041;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlEcqdZ9iC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlEcqdZ9iC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlEcqdZ9iC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #404041;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-tlEcqdZ9iC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlEcqdZ9iC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlEcqdZ9iC .navbar {
    height: 70px;
  }
  .cid-tlEcqdZ9iC .navbar.opened {
    height: auto;
  }
  .cid-tlEcqdZ9iC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlEtImyywt {
  background-image: url("../../../assets/images/intro-1280x853.jpg");
}
.cid-tlEtImyywt .link-wrapper {
  width: 100%;
}
.cid-tlEtImyywt .link {
  display: inline-block;
  position: relative;
  padding-right: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.cid-tlEtImyywt .link:before {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(0px);
}
.cid-tlEtImyywt .link:after {
  content: "\e96b";
  font-family: 'Moririse2' !important;
  position: absolute;
  top: 0;
  right: 0rem;
  transition: all 0.3s;
  transform: rotate(-45deg) translateX(-33px);
}
.cid-tlEtImyywt .link:hover:before {
  transform: rotate(-45deg) translateX(33px);
}
.cid-tlEtImyywt .link:hover:after {
  transform: rotate(-45deg) translateX(0px);
}
.cid-tlEtImyywt .mbr-section-title DIV {
  text-align: center;
}
.cid-tlEtImyywt .mbr-text,
.cid-tlEtImyywt .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tlEtImyywt .link,
.cid-tlEtImyywt .link-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-tlEtImyywt .mbr-section-title {
  color: #ffffff;
}
.cid-tlEtImyywt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlEtImyywt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlEyggUaqZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlEyggUaqZ .left-side {
  text-align: left;
}
.cid-tlEyggUaqZ .width {
  width: 360px;
  margin: auto;
}
.cid-tlEyggUaqZ .row {
  align-items: center;
  background: #353535;
  padding: 0px;
  margin: 0;
}
.cid-tlEyggUaqZ .mbr-section-title {
  margin: 0 0 15px;
  color: #FFFFFF;
  font-weight: 600;
}
.cid-tlEyggUaqZ .container-fluid {
  padding: 0;
}
.cid-tlEyggUaqZ .mbr-section-subtitle {
  color: #908269;
  text-align: left;
  padding-bottom: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.cid-tlEyggUaqZ .right-side {
  padding: 0;
}
.cid-tlEyggUaqZ .mbr-text {
  color: #ffffff;
  padding-bottom: 60px;
  margin-bottom: 0;
}
.cid-tlEyggUaqZ .lin .mbr-iconfont {
  border-radius: 100%;
}
.cid-tlEyggUaqZ .link-ico {
  font-size: 0.8rem !important;
  color: #ffffff;
  background-color: #000000;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  margin-left: 10px;
  margin-top: -2px;
  transition: .3s;
  display: inline-block;
}
.cid-tlEyggUaqZ .lin:hover .link-ico {
  transform: scale(1.2);
  transition: .3s;
}
.cid-tlEyggUaqZ a {
  font-weight: 500;
}
@media (max-width: 800px) {
  .cid-tlEyggUaqZ .left-side {
    padding: 30px 20px;
  }
  .cid-tlEyggUaqZ .width {
    width: 100%;
  }
}
@media (max-width: 690px) {
  .cid-tlEyggUaqZ .left-side {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tlEyggUaqZ .mbr-text,
.cid-tlEyggUaqZ .lin {
  text-align: left;
}
.cid-tlELHC9P08 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #111111;
}
.cid-tlELHC9P08 h3 {
  background: linear-gradient(to left, #908269, currentColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-tlELHC9P08 .count,
.cid-tlELHC9P08 .card-img {
  color: #cfc3ac;
}
.cid-tlELHC9P08 .mbr-subtitle {
  color: #999999;
}
.cid-tlF5A7ja6b {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dbd8d8;
}
.cid-tlF5A7ja6b .carousel {
  height: 800px;
}
.cid-tlF5A7ja6b .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tlF5A7ja6b .carousel-item,
.cid-tlF5A7ja6b .carousel-inner {
  height: 100%;
}
.cid-tlF5A7ja6b .carousel-caption {
  bottom: 40px;
}
.cid-tlF5A7ja6b .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tlF5A7ja6b .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tlF5A7ja6b .carousel-control:hover {
  background-color: #bbbbbb;
}
.cid-tlF5A7ja6b .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tlF5A7ja6b .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tlF5A7ja6b .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tlF5A7ja6b .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tlF5A7ja6b .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s;
  font-weight: 600;
  opacity: 1;
  color: #000000;
  background-color: #a19a8c;
}
.cid-tlF5A7ja6b .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlF5A7ja6b .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tlF5A7ja6b .carousel-control.carousel-control-prev {
    margin-left: 1.5rem;
  }
  .cid-tlF5A7ja6b .carousel-control.carousel-control-next {
    margin-right: 1.5rem;
  }
}
.cid-tlF5A7ja6b .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tlF5A7ja6b .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #a19a8c;
  border: 2px solid #a19a8c;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-tlF5A7ja6b .carousel-indicators li.active,
.cid-tlF5A7ja6b .carousel-indicators li:hover {
  background-color: #bbbbbb;
  border-color: #bbbbbb;
}
.cid-tlF5A7ja6b .carousel-indicators li::after,
.cid-tlF5A7ja6b .carousel-indicators li::before {
  content: none;
}
.cid-tlF5A7ja6b .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tlF5A7ja6b .carousel-indicators {
    display: none !important;
  }
}
.cid-tlF5A7ja6b ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-tlF5A7ja6b li {
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-tlF5A7ja6b ul li::before {
  position: absolute;
  content: "\2192";
  left: -30px;
  top: -15%;
  color: #000000;
  font-weight: bold;
  font-size: 1rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-tlF5A7ja6b ul li::before {
    top: 0;
  }
}
.cid-tlF5A7ja6b .btn {
  padding: 13px 37px 17px;
  margin-top: 25px;
  border-radius: 30px;
}
.cid-tlF5A7ja6b .btn:hover,
.cid-tlF5A7ja6b .btn:focus {
  border-color: #908269 !important;
  background-color: #908269 !important;
}
.cid-tlF5A7ja6b .mbr-section-title {
  margin-bottom: 65px;
}
.cid-tlF5A7ja6b .list {
  color: #000000;
  text-align: left;
}
.cid-tlF5A7ja6b .wrap {
  padding: 5rem 1rem;
}
@media (min-width: 1400px) {
  .cid-tlF5A7ja6b .wrap {
    padding: 0 3rem;
  }
}
.cid-tlF5D8w1Ly {
  background-color: #111111;
}
@media (min-width: 1300px) {
  .cid-tlF5D8w1Ly .carousel img {
    object-fit: cover;
  }
  .cid-tlF5D8w1Ly .right {
    padding-right: 32px;
  }
  .cid-tlF5D8w1Ly .left {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-tlF5D8w1Ly .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tlF5D8w1Ly .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tlF5D8w1Ly .carousel,
.cid-tlF5D8w1Ly .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tlF5D8w1Ly .item-wrapper {
  width: 100%;
  height: 1000px;
}
@media (max-width: 768px) {
  .cid-tlF5D8w1Ly .item-wrapper {
    height: 500px;
  }
}
.cid-tlF5D8w1Ly .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tlF5D8w1Ly .carousel-caption {
  bottom: 40px;
}
.cid-tlF5D8w1Ly .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tlF5D8w1Ly .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tlF5D8w1Ly .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tlF5D8w1Ly .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tlF5D8w1Ly .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tlF5D8w1Ly .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlF5D8w1Ly .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tlF5D8w1Ly .carousel-control.carousel-control-prev {
    margin-left: .5rem;
    font-size: 16px;
    opacity: .7;
  }
  .cid-tlF5D8w1Ly .carousel-control.carousel-control-prev:hover {
    margin-left: .3rem;
  }
  .cid-tlF5D8w1Ly .carousel-control.carousel-control-next {
    margin-right: .5rem;
    font-size: 16px;
    opacity: .7;
  }
  .cid-tlF5D8w1Ly .carousel-control.carousel-control-next:hover {
    margin-right: .3rem;
  }
}
.cid-tlF5D8w1Ly .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tlF5D8w1Ly .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tlF5D8w1Ly .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tlF5D8w1Ly .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tlF5D8w1Ly .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tlF5D8w1Ly .soc-item::before,
.cid-tlF5D8w1Ly .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tlF5D8w1Ly .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tlF5D8w1Ly .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tlF5D8w1Ly .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tlF5D8w1Ly .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tlF5D8w1Ly .mbr-section-subtitle {
  color: #c0bcb7;
  margin-bottom: 77px;
}
.cid-tlF5D8w1Ly .text {
  color: #ddc499;
}
.cid-tlF5D8w1Ly .one {
  color: #C0BCB7;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-tlF5D8w1Ly .left {
    margin-top: 2rem;
  }
}
.cid-tlF5D8w1Ly .mbr-section-title {
  color: #908269;
}
.cid-tlF5D8w1Ly .mbr-text .text {
  color: #a19a8c;
}
.cid-tlF5D8w1Ly .mbr-text {
  color: #fafafa;
}
.cid-tlFX53rzfc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlFX53rzfc img {
  width: 120px;
  margin: auto;
}
.cid-tlFX53rzfc .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tlFX53rzfc .card {
    max-width: 15%;
  }
}
.cid-tlG14l3Qsw {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tlG14l3Qsw img {
  width: 120px;
  margin: auto;
}
.cid-tlG14l3Qsw .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tlG14l3Qsw .card {
    max-width: 15%;
  }
}
.cid-tlGaXMIlAS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #101010;
}
.cid-tlGaXMIlAS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tlGaXMIlAS textarea {
  min-height: 150px;
}
.cid-tlGaXMIlAS input[name='yourSubject'] {
  margin-top: 1.5rem;
}
.cid-tlGaXMIlAS textarea[name='yourMessage'] {
  margin-top: 0.3rem;
}
.cid-tlGaXMIlAS .form-control,
.cid-tlGaXMIlAS .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none !important;
  border-bottom: 2px solid #414141 !important;
  border-color: #414141 !important;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tlGaXMIlAS .form-control input::-webkit-input-placeholder,
.cid-tlGaXMIlAS .field-input input::-webkit-input-placeholder,
.cid-tlGaXMIlAS .form-control textarea::-webkit-input-placeholder,
.cid-tlGaXMIlAS .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tlGaXMIlAS .form-control input:-moz-placeholder,
.cid-tlGaXMIlAS .field-input input:-moz-placeholder,
.cid-tlGaXMIlAS .form-control textarea:-moz-placeholder,
.cid-tlGaXMIlAS .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-tlGaXMIlAS .jq-number__spin:hover,
.cid-tlGaXMIlAS .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlGaXMIlAS .jq-number__spin {
  background-color: #101010;
  border-color: #414141 !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlGaXMIlAS .jq-selectbox li,
.cid-tlGaXMIlAS .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tlGaXMIlAS .jq-selectbox li:hover,
.cid-tlGaXMIlAS .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tlGaXMIlAS .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tlGaXMIlAS .jq-number__spin.minus:hover:after,
.cid-tlGaXMIlAS .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tlGaXMIlAS .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tlGaXMIlAS .jq-number__spin.minus:after,
.cid-tlGaXMIlAS .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tlGaXMIlAS .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tlGaXMIlAS .social-list {
    margin-bottom: 3rem;
  }
  .cid-tlGaXMIlAS .email-input {
    margin-top: 2rem;
  }
}
.cid-tlGaXMIlAS .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 2.4rem;
}
.cid-tlGaXMIlAS .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tlGaXMIlAS .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.6rem;
}
.cid-tlGaXMIlAS .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #fafafa;
  transition: all 0.3s;
}
.cid-tlGaXMIlAS .mbr-iconfont-social:hover {
  color: #fafafa;
}
.cid-tlGaXMIlAS .social-list {
  display: flex;
}
.cid-tlGaXMIlAS .social-list a {
  transition: 0.3s;
}
.cid-tlGaXMIlAS .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tlGaXMIlAS .row {
  align-items: center;
}
.cid-tlGaXMIlAS .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tlGaXMIlAS .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tlGaXMIlAS .form-btn {
  margin-top: 2.5rem;
}
.cid-tlGaXMIlAS input::-webkit-input-placeholder,
.cid-tlGaXMIlAS textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tlGaXMIlAS input:-moz-placeholder,
.cid-tlGaXMIlAS textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-tlGaXMIlAS .media-content {
    padding-right: 3rem;
  }
  .cid-tlGaXMIlAS .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tlGaXMIlAS .row {
    padding: 0 1rem;
  }
}
.cid-tlGaXMIlAS .btn:hover {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tlGaXMIlAS .form-btn {
    width: 100%;
  }
  .cid-tlGaXMIlAS .btn {
    width: 100%;
  }
}
.cid-tlGaXMIlAS .mbr-text,
.cid-tlGaXMIlAS .mbr-section-btn {
  color: #cfc3ac;
}
.cid-tlGpPf6wM3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-tlGpPf6wM3 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-tlGpPf6wM3 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tlEcqdZ9iC {
  z-index: 1000;
  width: 100%;
}
.cid-tlEcqdZ9iC .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-tlEcqdZ9iC .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-tlEcqdZ9iC .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .icons-menu {
    padding: 0 3rem;
  }
}
.cid-tlEcqdZ9iC nav.navbar {
  position: fixed;
}
.cid-tlEcqdZ9iC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlEcqdZ9iC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlEcqdZ9iC .dropdown-item:hover,
.cid-tlEcqdZ9iC .dropdown-item:focus {
  background: #404041 !important;
  color: white !important;
}
.cid-tlEcqdZ9iC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlEcqdZ9iC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlEcqdZ9iC .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-tlEcqdZ9iC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlEcqdZ9iC .nav-link {
  position: relative;
}
.cid-tlEcqdZ9iC .container {
  display: flex;
  margin: auto;
}
.cid-tlEcqdZ9iC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown-menu,
.cid-tlEcqdZ9iC .navbar.opened {
  background: #404041 !important;
  min-height: 100%;
}
.cid-tlEcqdZ9iC .nav-item:focus,
.cid-tlEcqdZ9iC .nav-link:focus {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlEcqdZ9iC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlEcqdZ9iC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(64, 64, 65, 0);
}
.cid-tlEcqdZ9iC .navbar.opened {
  transition: all 0.3s;
}
.cid-tlEcqdZ9iC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlEcqdZ9iC .navbar .navbar-logo img {
  width: auto;
}
.cid-tlEcqdZ9iC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlEcqdZ9iC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlEcqdZ9iC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tlEcqdZ9iC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlEcqdZ9iC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlEcqdZ9iC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tlEcqdZ9iC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlEcqdZ9iC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown-item.active,
.cid-tlEcqdZ9iC .dropdown-item:active {
  background-color: transparent;
}
.cid-tlEcqdZ9iC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #404041;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlEcqdZ9iC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlEcqdZ9iC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlEcqdZ9iC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #404041;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-tlEcqdZ9iC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlEcqdZ9iC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlEcqdZ9iC .navbar {
    height: 70px;
  }
  .cid-tlEcqdZ9iC .navbar.opened {
    height: auto;
  }
  .cid-tlEcqdZ9iC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlGsHrHtda {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/pool-and-villa-copy-2000x1333.jpg");
}
.cid-tlGsHrHtda .row.heading {
  margin-bottom: 72px;
}
.cid-tlGsHrHtda .card {
  flex-direction: row;
  justify-content: center;
}
.cid-tlGsHrHtda .card-box {
  display: flex;
  flex-direction: column;
}
.cid-tlGsHrHtda .card-box .card-title {
  color: #ffffff;
}
.cid-tlGsHrHtda .card-box .mbr-text {
  color: #ffffff;
}
.cid-tlGsHrHtda .card-box .link .btn {
  margin: 0;
}
.cid-tlGsHrHtda .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-tlGsHrHtda .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-tlGsHrHtda .card-title {
  margin: 0;
}
.cid-tlGsHrHtda .card-img,
.cid-tlGsHrHtda .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tlGsHrHtda .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-tlGsHrHtda .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-tlGsHrHtda .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-tlGsHrHtda .card .card-box .card-title,
  .cid-tlGsHrHtda .card .card-box .mbr-text,
  .cid-tlGsHrHtda .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-tlGsHrHtda .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-tlGUCMdTj2 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tlGUCMdTj2 .pile1 {
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.cid-tlGUCMdTj2 .pile3 {
  border-right: 1px solid #efefef;
}
.cid-tlGUCMdTj2 .pile2 {
  border-bottom: 1px solid #efefef;
}
.cid-tlGUCMdTj2 .text {
  padding: 11%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 570px) {
  .cid-tlGUCMdTj2 .pile3 {
    border-bottom: 1px solid #efefef;
    border-right: none;
  }
  .cid-tlGUCMdTj2 .pile1 {
    border-right: none;
  }
  .cid-tlGUCMdTj2 .text {
    padding: 15px 0;
  }
}
.cid-tlGUCMdTj2 .card-title {
  margin-bottom: 10px;
}
.cid-tlGUCMdTj2 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 50px;
}
.cid-tlGUCMdTj2 .iconfont-wrapper {
  padding-bottom: 18px;
}
.cid-tlGUCMdTj2 .card-text {
  padding-bottom: 30px;
}
.cid-tlGUCMdTj2 .lin .mbr-iconfont {
  background-color: #ff4433;
  border-radius: 100%;
}
.cid-tlGUCMdTj2 .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  position: absolute;
  margin-left: 10px;
  margin-top: -2px;
  transition: .3s;
}
.cid-tlGUCMdTj2 .card-link {
  width: 100%;
}
.cid-tlGUCMdTj2 .lin:hover .link-ico {
  transform: scale(1.2);
  transition: .3s;
}
.cid-tlGUCMdTj2 a {
  font-weight: 500;
  transition: color .3s;
}
.cid-tlH1jsKnE1 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #dbd8d8;
}
.cid-tlH1jsKnE1 .pile1 {
  border-right: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.cid-tlH1jsKnE1 .pile3 {
  border-right: 1px solid #efefef;
}
.cid-tlH1jsKnE1 .pile2 {
  border-bottom: 1px solid #efefef;
}
.cid-tlH1jsKnE1 .text {
  padding: 11%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 570px) {
  .cid-tlH1jsKnE1 .pile3 {
    border-bottom: 1px solid #efefef;
    border-right: none;
  }
  .cid-tlH1jsKnE1 .pile1 {
    border-right: none;
  }
  .cid-tlH1jsKnE1 .text {
    padding: 15px 0;
  }
}
.cid-tlH1jsKnE1 .card-title {
  margin-bottom: 10px;
}
.cid-tlH1jsKnE1 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 50px;
}
.cid-tlH1jsKnE1 .iconfont-wrapper {
  padding-bottom: 18px;
}
.cid-tlH1jsKnE1 .card-text {
  padding-bottom: 30px;
}
.cid-tlH1jsKnE1 .lin .mbr-iconfont {
  background-color: #ff4433;
  border-radius: 100%;
}
.cid-tlH1jsKnE1 .link-ico {
  font-size: 0.8rem;
  color: #ffffff;
  border-radius: 100%;
  padding: 0.5rem 0;
  font-weight: 900;
  padding-left: 9px;
  padding-right: 7px;
  position: absolute;
  margin-left: 10px;
  margin-top: -2px;
  transition: .3s;
}
.cid-tlH1jsKnE1 .card-link {
  width: 100%;
}
.cid-tlH1jsKnE1 .lin:hover .link-ico {
  transform: scale(1.2);
  transition: .3s;
}
.cid-tlH1jsKnE1 a {
  font-weight: 500;
  transition: color .3s;
}
.cid-tmlujIPJFN {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/shutterstock-549483754-large-1699x1080.jpg");
}
.cid-tmlujIPJFN .mbr-overlay {
  background: #111111;
}
.cid-tmlujIPJFN DIV {
  text-align: center;
}
.cid-tmlujIPJFN H1 {
  text-align: center;
}
.cid-tlGVM1M60h {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlGVM1M60h .container {
  max-width: 100%;
  padding: 0 1rem;
}
.cid-tlGVM1M60h .card {
  padding: 0!important;
}
.cid-tlGVM1M60h .card-box {
  z-index: 3;
  position: relative;
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
}
.cid-tlGVM1M60h .card-box:focus-within {
  opacity: 1;
}
.cid-tlGVM1M60h .row-center {
  height: 100%;
}
.cid-tlGVM1M60h .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.cid-tlGVM1M60h .card-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.cid-tlGVM1M60h .card-wrapper {
  display: flex;
  position: relative;
  margin: auto;
  width: 100%;
  cursor: pointer;
  height: 100%;
  padding: 14rem 1rem;
  transition: all 1s;
}
.cid-tlGVM1M60h .card-wrapper:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: black;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s;
}
.cid-tlGVM1M60h .card-wrapper:hover .card-box,
.cid-tlGVM1M60h .card-wrapper:focus-within .card-box {
  opacity: 1;
  transform: translateY(0px);
}
.cid-tlGVM1M60h .card-wrapper:hover .card-img,
.cid-tlGVM1M60h .card-wrapper:focus-within .card-img {
  transform: scale(1.1);
}
.cid-tlGVM1M60h .card-wrapper:hover:before,
.cid-tlGVM1M60h .card-wrapper:focus-within:before {
  opacity: 0.6;
}
.cid-tlGVM1M60h .row {
  justify-content: center;
}
.cid-tlGVM1M60h .card-title {
  color: #fafafa;
}
@media (max-width: 992px) {
  .cid-tlGVM1M60h .card-box {
    opacity: 1;
    transform: translateY(0px);
  }
  .cid-tlGVM1M60h .card-img {
    transform: scale(1.1);
  }
  .cid-tlGVM1M60h .card-wrapper:before {
    opacity: 0.6;
  }
}
.cid-tmlBROru8H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #606060;
}
.cid-tmlBROru8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmlBROru8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmlBROru8H .mbr-text {
  color: #fafafa;
}
.cid-tmlBROru8H .mbr-section-subtitle,
.cid-tmlBROru8H .mbr-section-title,
.cid-tmlBROru8H .card-title {
  color: #fafafa;
}
.cid-tmlBROru8H .title .card-title {
  z-index: 1;
}
.cid-tmlBROru8H .num {
  color: #fafafa;
  word-break: normal;
}
@media (max-width: 767px) {
  .cid-tmlBROru8H .content-column {
    margin-bottom: 2rem;
  }
  .cid-tmlBROru8H .line-for-mobile {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .cid-tmlBROru8H .line-for-mobile {
    width: 100%;
  }
  .cid-tmlBROru8H .pt-20 {
    padding: 0;
  }
}
.cid-tmlBROru8H .card-box .rotate {
  margin-left: 1rem;
}
.cid-tmlBROru8H .card-title {
  font-size: 20px;
}
.cid-tmlBROru8H .title-arrow {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tmlBROru8H .title-arrow {
    top: -7px;
  }
}
.cid-tmlBROru8H .rotate {
  transform: rotate(225deg);
}
.cid-tmlBROru8H .hidden-text {
  visibility: hidden;
}
.cid-tmlBROru8H .position {
  height: 76%;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .cid-tmlBROru8H .card {
    padding-bottom: 40px;
  }
  .cid-tmlBROru8H .end {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tmlBROru8H .btn,
  .cid-tmlBROru8H .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    margin-left: auto;
    word-break: normal;
  }
  .cid-tmlBROru8H .btn .rotate,
  .cid-tmlBROru8H .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
  }
  .cid-tmlBROru8H .btn svg,
  .cid-tmlBROru8H .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlBROru8H .btn:hover > svg,
  .cid-tmlBROru8H .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 991px) {
  .cid-tmlBROru8H .btn,
  .cid-tmlBROru8H .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-tmlBROru8H .btn .rotate,
  .cid-tmlBROru8H .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-tmlBROru8H .btn svg,
  .cid-tmlBROru8H .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlBROru8H .btn:hover > svg,
  .cid-tmlBROru8H .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 576px) {
  .cid-tmlBROru8H .btn,
  .cid-tmlBROru8H .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-tmlBROru8H .btn .rotate,
  .cid-tmlBROru8H .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-tmlBROru8H .btn svg,
  .cid-tmlBROru8H .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlBROru8H .btn:hover > svg,
  .cid-tmlBROru8H .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
  .cid-tmlBROru8H .btn p,
  .cid-tmlBROru8H .btn-primary p {
    margin-bottom: 0.5rem;
  }
}
.cid-tmlBROru8H .hide {
  display: none;
}
.cid-tmlBROru8H .pt-20 {
  padding-top: 20px;
}
@media (max-width: 425px) {
  .cid-tmlBROru8H .pt-20 {
    padding-top: 10px;
  }
}
.cid-tmlHSY1vad {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #2b2b2b;
}
.cid-tmlHSY1vad .mbr-fallback-image.disabled {
  display: none;
}
.cid-tmlHSY1vad .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tmlHSY1vad .mbr-text {
  color: #fafafa;
}
.cid-tmlHSY1vad .mbr-section-subtitle,
.cid-tmlHSY1vad .mbr-section-title,
.cid-tmlHSY1vad .card-title {
  color: #fafafa;
}
.cid-tmlHSY1vad .title .card-title {
  z-index: 1;
}
.cid-tmlHSY1vad .num {
  color: #fafafa;
  word-break: normal;
}
@media (max-width: 767px) {
  .cid-tmlHSY1vad .content-column {
    margin-bottom: 2rem;
  }
  .cid-tmlHSY1vad .line-for-mobile {
    width: 80%;
  }
}
@media (max-width: 576px) {
  .cid-tmlHSY1vad .line-for-mobile {
    width: 100%;
  }
  .cid-tmlHSY1vad .pt-20 {
    padding: 0;
  }
}
.cid-tmlHSY1vad .card-box .rotate {
  margin-left: 1rem;
}
.cid-tmlHSY1vad .card-title {
  font-size: 20px;
}
.cid-tmlHSY1vad .title-arrow {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tmlHSY1vad .title-arrow {
    top: -7px;
  }
}
.cid-tmlHSY1vad .rotate {
  transform: rotate(225deg);
}
.cid-tmlHSY1vad .hidden-text {
  visibility: hidden;
}
.cid-tmlHSY1vad .position {
  height: 76%;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .cid-tmlHSY1vad .card {
    padding-bottom: 40px;
  }
  .cid-tmlHSY1vad .end {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .cid-tmlHSY1vad .btn,
  .cid-tmlHSY1vad .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    margin-left: auto;
    word-break: normal;
  }
  .cid-tmlHSY1vad .btn .rotate,
  .cid-tmlHSY1vad .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.4rem;
    margin-right: 0.6rem;
    margin-left: 0.5rem;
  }
  .cid-tmlHSY1vad .btn svg,
  .cid-tmlHSY1vad .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlHSY1vad .btn:hover > svg,
  .cid-tmlHSY1vad .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 991px) {
  .cid-tmlHSY1vad .btn,
  .cid-tmlHSY1vad .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-tmlHSY1vad .btn .rotate,
  .cid-tmlHSY1vad .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-tmlHSY1vad .btn svg,
  .cid-tmlHSY1vad .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlHSY1vad .btn:hover > svg,
  .cid-tmlHSY1vad .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
}
@media (max-width: 576px) {
  .cid-tmlHSY1vad .btn,
  .cid-tmlHSY1vad .btn-primary {
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    padding-left: -0.5rem;
    padding-top: 0.5rem;
    margin-left: auto;
    right: 0;
    top: 1.5rem;
    word-break: normal;
  }
  .cid-tmlHSY1vad .btn .rotate,
  .cid-tmlHSY1vad .btn-primary .rotate {
    transform: rotate(225deg);
    margin-top: 0.2rem;
    margin-left: 0;
  }
  .cid-tmlHSY1vad .btn svg,
  .cid-tmlHSY1vad .btn-primary svg {
    transition: all 0.4s;
  }
  .cid-tmlHSY1vad .btn:hover > svg,
  .cid-tmlHSY1vad .btn-primary:hover > svg {
    transform: rotate(315deg);
  }
  .cid-tmlHSY1vad .btn p,
  .cid-tmlHSY1vad .btn-primary p {
    margin-bottom: 0.5rem;
  }
}
.cid-tmlHSY1vad .hide {
  display: none;
}
.cid-tmlHSY1vad .pt-20 {
  padding-top: 20px;
}
@media (max-width: 425px) {
  .cid-tmlHSY1vad .pt-20 {
    padding-top: 10px;
  }
}
.cid-tmlNDtIMTs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #141414;
}
.cid-tmlNDtIMTs p {
  font-weight: 300;
}
.cid-tmlNDtIMTs .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
  color: #a19a8c;
}
@media (max-width: 992px) {
  .cid-tmlNDtIMTs .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tmlNDtIMTs .mbr-section-subtitle {
  color: #a19a8c;
  font-weight: 700;
  line-height: 1.2;
}
.cid-tmlNDtIMTs .mbr-text {
  color: #cbcecf;
}
.cid-tmlNDtIMTs .mbr-iconfont {
  color: #908269;
  font-size: 4rem;
}
.cid-tmlNDtIMTs .wrapper {
  background-color: #232323;
  border-radius: 10px;
  padding: 2rem;
}
@media (max-width: 576px) {
  .cid-tmlNDtIMTs .wrapper {
    text-align: center;
  }
}
.cid-tmlP5OouEX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #101010;
}
.cid-tmlP5OouEX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tmlP5OouEX textarea {
  min-height: 150px;
}
.cid-tmlP5OouEX input[name='yourSubject'] {
  margin-top: 1.5rem;
}
.cid-tmlP5OouEX textarea[name='yourMessage'] {
  margin-top: 0.3rem;
}
.cid-tmlP5OouEX .form-control,
.cid-tmlP5OouEX .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none !important;
  border-bottom: 2px solid #414141 !important;
  border-color: #414141 !important;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tmlP5OouEX .form-control input::-webkit-input-placeholder,
.cid-tmlP5OouEX .field-input input::-webkit-input-placeholder,
.cid-tmlP5OouEX .form-control textarea::-webkit-input-placeholder,
.cid-tmlP5OouEX .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tmlP5OouEX .form-control input:-moz-placeholder,
.cid-tmlP5OouEX .field-input input:-moz-placeholder,
.cid-tmlP5OouEX .form-control textarea:-moz-placeholder,
.cid-tmlP5OouEX .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-tmlP5OouEX .jq-number__spin:hover,
.cid-tmlP5OouEX .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tmlP5OouEX .jq-number__spin {
  background-color: #101010;
  border-color: #414141 !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tmlP5OouEX .jq-selectbox li,
.cid-tmlP5OouEX .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tmlP5OouEX .jq-selectbox li:hover,
.cid-tmlP5OouEX .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tmlP5OouEX .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tmlP5OouEX .jq-number__spin.minus:hover:after,
.cid-tmlP5OouEX .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tmlP5OouEX .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tmlP5OouEX .jq-number__spin.minus:after,
.cid-tmlP5OouEX .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tmlP5OouEX .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tmlP5OouEX .social-list {
    margin-bottom: 3rem;
  }
  .cid-tmlP5OouEX .email-input {
    margin-top: 2rem;
  }
}
.cid-tmlP5OouEX .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 2.4rem;
}
.cid-tmlP5OouEX .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tmlP5OouEX .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.6rem;
}
.cid-tmlP5OouEX .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #fafafa;
  transition: all 0.3s;
}
.cid-tmlP5OouEX .mbr-iconfont-social:hover {
  color: #fafafa;
}
.cid-tmlP5OouEX .social-list {
  display: flex;
}
.cid-tmlP5OouEX .social-list a {
  transition: 0.3s;
}
.cid-tmlP5OouEX .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tmlP5OouEX .row {
  align-items: center;
}
.cid-tmlP5OouEX .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tmlP5OouEX .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tmlP5OouEX .form-btn {
  margin-top: 2.5rem;
}
.cid-tmlP5OouEX input::-webkit-input-placeholder,
.cid-tmlP5OouEX textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tmlP5OouEX input:-moz-placeholder,
.cid-tmlP5OouEX textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-tmlP5OouEX .media-content {
    padding-right: 3rem;
  }
  .cid-tmlP5OouEX .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tmlP5OouEX .row {
    padding: 0 1rem;
  }
}
.cid-tmlP5OouEX .btn:hover {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tmlP5OouEX .form-btn {
    width: 100%;
  }
  .cid-tmlP5OouEX .btn {
    width: 100%;
  }
}
.cid-tmlP5OouEX .mbr-text,
.cid-tmlP5OouEX .mbr-section-btn {
  color: #cfc3ac;
}
.cid-tlGpPf6wM3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-tlGpPf6wM3 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-tlGpPf6wM3 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tlEcqdZ9iC {
  z-index: 1000;
  width: 100%;
}
.cid-tlEcqdZ9iC .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-tlEcqdZ9iC .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-tlEcqdZ9iC .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .icons-menu {
    padding: 0 3rem;
  }
}
.cid-tlEcqdZ9iC nav.navbar {
  position: fixed;
}
.cid-tlEcqdZ9iC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlEcqdZ9iC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlEcqdZ9iC .dropdown-item:hover,
.cid-tlEcqdZ9iC .dropdown-item:focus {
  background: #404041 !important;
  color: white !important;
}
.cid-tlEcqdZ9iC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlEcqdZ9iC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlEcqdZ9iC .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-tlEcqdZ9iC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlEcqdZ9iC .nav-link {
  position: relative;
}
.cid-tlEcqdZ9iC .container {
  display: flex;
  margin: auto;
}
.cid-tlEcqdZ9iC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown-menu,
.cid-tlEcqdZ9iC .navbar.opened {
  background: #404041 !important;
  min-height: 100%;
}
.cid-tlEcqdZ9iC .nav-item:focus,
.cid-tlEcqdZ9iC .nav-link:focus {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlEcqdZ9iC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlEcqdZ9iC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(64, 64, 65, 0);
}
.cid-tlEcqdZ9iC .navbar.opened {
  transition: all 0.3s;
}
.cid-tlEcqdZ9iC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlEcqdZ9iC .navbar .navbar-logo img {
  width: auto;
}
.cid-tlEcqdZ9iC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlEcqdZ9iC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlEcqdZ9iC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tlEcqdZ9iC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlEcqdZ9iC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlEcqdZ9iC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tlEcqdZ9iC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlEcqdZ9iC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown-item.active,
.cid-tlEcqdZ9iC .dropdown-item:active {
  background-color: transparent;
}
.cid-tlEcqdZ9iC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #404041;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlEcqdZ9iC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlEcqdZ9iC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlEcqdZ9iC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #404041;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-tlEcqdZ9iC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlEcqdZ9iC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlEcqdZ9iC .navbar {
    height: 70px;
  }
  .cid-tlEcqdZ9iC .navbar.opened {
    height: auto;
  }
  .cid-tlEcqdZ9iC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tmlVQ5BbyJ {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #eeeeee;
}
.cid-tmlVQ5BbyJ .carousel {
  width: 100%;
}
.cid-tmlVQ5BbyJ .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tmlVQ5BbyJ .carousel-item img {
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-tmlVQ5BbyJ .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
  padding-left: 120px;
  padding-right: 120px;
  justify-content: center;
}
.cid-tmlVQ5BbyJ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tmlVQ5BbyJ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tmlVQ5BbyJ .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-tmlVQ5BbyJ .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmlVQ5BbyJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tmlVQ5BbyJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tmlVQ5BbyJ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tmlVQ5BbyJ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-tmlVQ5BbyJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmlVQ5BbyJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmlVQ5BbyJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tmlVQ5BbyJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tmlVQ5BbyJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #e5e5e5;
  border: 0px solid transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tmlVQ5BbyJ .carousel-indicators li.active {
  background-color: #5aac98;
}
.cid-tmlVQ5BbyJ .carousel-indicators li.active,
.cid-tmlVQ5BbyJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tmlVQ5BbyJ .carousel-indicators li::after,
.cid-tmlVQ5BbyJ .carousel-indicators li::before {
  content: none;
}
.cid-tmlVQ5BbyJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tmlVQ5BbyJ .carousel-indicators {
    display: none !important;
  }
}
.cid-tmlVQ5BbyJ .btn.btn-primary-outline {
  border: 1px solid #404041;
}
.cid-tmlVQ5BbyJ .btn.btn-primary-outline:hover {
  background-color: #404041 !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-secondary-outline {
  border: 1px solid #908269;
}
.cid-tmlVQ5BbyJ .btn.btn-secondary-outline:hover {
  background-color: #908269 !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-success-outline {
  border: 1px solid #cfc3ac;
}
.cid-tmlVQ5BbyJ .btn.btn-success-outline:hover {
  background-color: #cfc3ac !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-info-outline {
  border: 1px solid #a19a8c;
}
.cid-tmlVQ5BbyJ .btn.btn-info-outline:hover {
  background-color: #a19a8c !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-warning-outline {
  border: 1px solid #606060;
}
.cid-tmlVQ5BbyJ .btn.btn-warning-outline:hover {
  background-color: #606060 !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-danger-outline {
  border: 1px solid #fafafa;
}
.cid-tmlVQ5BbyJ .btn.btn-danger-outline:hover {
  background-color: #fafafa !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-black-outline {
  border: 1px solid #000000;
}
.cid-tmlVQ5BbyJ .btn.btn-black-outline:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.cid-tmlVQ5BbyJ .btn.btn-white-outline {
  border: 1px solid #ffffff;
}
.cid-tmlVQ5BbyJ .btn.btn-white-outline:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-tmlVQ5BbyJ .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-tmlVQ5BbyJ .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-tmlVQ5BbyJ .carousel-control {
    display: none;
  }
  .cid-tmlVQ5BbyJ .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
  }
  .cid-tmlVQ5BbyJ .buttons-wrap .mbr-section-btn {
    text-align: center;
    margin-bottom: 10px;
  }
}
.cid-tmlVKcqDak {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tmlVKcqDak .container-fluid {
  padding: 0;
}
.cid-tmlVKcqDak .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKcqDak .item-content {
    padding: 40px;
  }
}
.cid-tmlVKcqDak .item:focus,
.cid-tmlVKcqDak span:focus {
  outline: none;
}
.cid-tmlVKcqDak .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tmlVKcqDak .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKcqDak .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tmlVKcqDak .item {
    margin: -1px 0 0;
  }
  .cid-tmlVKcqDak .item_left {
    padding-right: 40px;
  }
  .cid-tmlVKcqDak .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tmlVKcqDak .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tmlVKcqDak .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tmlVKcqDak .item-img:hover img {
  transform: scale(1.2);
}
.cid-tmlVKcqDak .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tmlVKcqDak .item-wrap {
  background: transparent;
}
.cid-tmlVKcqDak .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmlVKcqDak .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tmlVKcqDak .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tmlVKcqDak .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tmlVKcqDak .item-subtitle {
  color: #ffffff;
}
.cid-tmlVKcqDak .mbr-text,
.cid-tmlVKcqDak .mbr-section-btn {
  text-align: left;
}
.cid-tmlVKcqDak .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKcqDak .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tmlVKcqDak .items-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tmlVKcqDak .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tmlVKcqDak .btn {
  margin: 16px 0 0 0;
}
.cid-tmlVKcqDak .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tmlVKcqDak .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tmlVKcqDak .item__button {
  margin-left: 32px;
}
.cid-tmlVKcqDak .mbr-section-title {
  color: #FFFFFF;
}
.cid-tmlVKcqDak .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
@media (max-width: 575px) {
  .cid-tmlVKcqDak .mbr-section-title_container {
    width: 33%;
    padding-bottom: 24px;
    border-bottom: 1px solid #FFFFFF;
    border-right: none;
  }
}
.cid-tmlVKUb9uV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tmlVKUb9uV .container-fluid {
  padding: 0;
}
.cid-tmlVKUb9uV .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKUb9uV .item-content {
    padding: 40px;
  }
}
.cid-tmlVKUb9uV .item:focus,
.cid-tmlVKUb9uV span:focus {
  outline: none;
}
.cid-tmlVKUb9uV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tmlVKUb9uV .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKUb9uV .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tmlVKUb9uV .item {
    margin: -1px 0 0;
  }
  .cid-tmlVKUb9uV .item_left {
    padding-right: 40px;
  }
  .cid-tmlVKUb9uV .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tmlVKUb9uV .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tmlVKUb9uV .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tmlVKUb9uV .item-img:hover img {
  transform: scale(1.2);
}
.cid-tmlVKUb9uV .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tmlVKUb9uV .item-wrap {
  background: transparent;
}
.cid-tmlVKUb9uV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tmlVKUb9uV .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tmlVKUb9uV .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tmlVKUb9uV .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tmlVKUb9uV .item-subtitle {
  color: #ffffff;
}
.cid-tmlVKUb9uV .mbr-text,
.cid-tmlVKUb9uV .mbr-section-btn {
  text-align: left;
}
.cid-tmlVKUb9uV .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tmlVKUb9uV .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tmlVKUb9uV .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-tmlVKUb9uV .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tmlVKUb9uV .btn {
  margin: 16px 0 0 0;
}
.cid-tmlVKUb9uV .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tmlVKUb9uV .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tmlVKUb9uV .item__button {
  margin-left: 32px;
}
.cid-tmlVKUb9uV .mbr-section-title {
  color: #FFFFFF;
}
.cid-tmlVKUb9uV .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-tnlj4Egf8V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tnlj4Egf8V .container-fluid {
  padding: 0;
}
.cid-tnlj4Egf8V .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tnlj4Egf8V .item-content {
    padding: 40px;
  }
}
.cid-tnlj4Egf8V .item:focus,
.cid-tnlj4Egf8V span:focus {
  outline: none;
}
.cid-tnlj4Egf8V .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnlj4Egf8V .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tnlj4Egf8V .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlj4Egf8V .item {
    margin: -1px 0 0;
  }
  .cid-tnlj4Egf8V .item_left {
    padding-right: 40px;
  }
  .cid-tnlj4Egf8V .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tnlj4Egf8V .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tnlj4Egf8V .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tnlj4Egf8V .item-img:hover img {
  transform: scale(1.2);
}
.cid-tnlj4Egf8V .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tnlj4Egf8V .item-wrap {
  background: transparent;
}
.cid-tnlj4Egf8V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnlj4Egf8V .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tnlj4Egf8V .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tnlj4Egf8V .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tnlj4Egf8V .item-subtitle {
  color: #ffffff;
}
.cid-tnlj4Egf8V .mbr-text,
.cid-tnlj4Egf8V .mbr-section-btn {
  text-align: left;
}
.cid-tnlj4Egf8V .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tnlj4Egf8V .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlj4Egf8V .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-tnlj4Egf8V .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tnlj4Egf8V .btn {
  margin: 16px 0 0 0;
}
.cid-tnlj4Egf8V .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tnlj4Egf8V .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tnlj4Egf8V .item__button {
  margin-left: 32px;
}
.cid-tnlj4Egf8V .mbr-section-title {
  color: #FFFFFF;
}
.cid-tnlj4Egf8V .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-tnlj5Cigj6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tnlj5Cigj6 .container-fluid {
  padding: 0;
}
.cid-tnlj5Cigj6 .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tnlj5Cigj6 .item-content {
    padding: 40px;
  }
}
.cid-tnlj5Cigj6 .item:focus,
.cid-tnlj5Cigj6 span:focus {
  outline: none;
}
.cid-tnlj5Cigj6 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnlj5Cigj6 .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tnlj5Cigj6 .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlj5Cigj6 .item {
    margin: -1px 0 0;
  }
  .cid-tnlj5Cigj6 .item_left {
    padding-right: 40px;
  }
  .cid-tnlj5Cigj6 .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tnlj5Cigj6 .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tnlj5Cigj6 .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tnlj5Cigj6 .item-img:hover img {
  transform: scale(1.2);
}
.cid-tnlj5Cigj6 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tnlj5Cigj6 .item-wrap {
  background: transparent;
}
.cid-tnlj5Cigj6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnlj5Cigj6 .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tnlj5Cigj6 .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tnlj5Cigj6 .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tnlj5Cigj6 .item-subtitle {
  color: #ffffff;
}
.cid-tnlj5Cigj6 .mbr-text,
.cid-tnlj5Cigj6 .mbr-section-btn {
  text-align: left;
}
.cid-tnlj5Cigj6 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tnlj5Cigj6 .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlj5Cigj6 .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-tnlj5Cigj6 .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tnlj5Cigj6 .btn {
  margin: 16px 0 0 0;
}
.cid-tnlj5Cigj6 .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tnlj5Cigj6 .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tnlj5Cigj6 .item__button {
  margin-left: 32px;
}
.cid-tnlj5Cigj6 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tnlj5Cigj6 .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-towqKnQDZJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #141414;
}
.cid-towqKnQDZJ .container-fluid {
  padding: 0;
}
.cid-towqKnQDZJ .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-towqKnQDZJ .item-content {
    padding: 40px;
  }
}
.cid-towqKnQDZJ .item:focus,
.cid-towqKnQDZJ span:focus {
  outline: none;
}
.cid-towqKnQDZJ .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-towqKnQDZJ .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-towqKnQDZJ .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-towqKnQDZJ .item {
    margin: -1px 0 0;
  }
  .cid-towqKnQDZJ .item_left {
    padding-right: 40px;
  }
  .cid-towqKnQDZJ .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-towqKnQDZJ .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-towqKnQDZJ .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-towqKnQDZJ .item-img:hover img {
  transform: scale(1.2);
}
.cid-towqKnQDZJ .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-towqKnQDZJ .item-wrap {
  background: transparent;
}
.cid-towqKnQDZJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-towqKnQDZJ .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-towqKnQDZJ .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-towqKnQDZJ .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-towqKnQDZJ .item-subtitle {
  color: #ffffff;
}
.cid-towqKnQDZJ .mbr-text,
.cid-towqKnQDZJ .mbr-section-btn {
  text-align: left;
}
.cid-towqKnQDZJ .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-towqKnQDZJ .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-towqKnQDZJ .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-towqKnQDZJ .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-towqKnQDZJ .btn {
  margin: 16px 0 0 0;
}
.cid-towqKnQDZJ .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-towqKnQDZJ .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-towqKnQDZJ .item__button {
  margin-left: 32px;
}
.cid-towqKnQDZJ .mbr-section-title {
  color: #FFFFFF;
}
.cid-towqKnQDZJ .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-towrlUj14Y {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #141414;
}
.cid-towrlUj14Y .container-fluid {
  padding: 0;
}
.cid-towrlUj14Y .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-towrlUj14Y .item-content {
    padding: 40px;
  }
}
.cid-towrlUj14Y .item:focus,
.cid-towrlUj14Y span:focus {
  outline: none;
}
.cid-towrlUj14Y .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-towrlUj14Y .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-towrlUj14Y .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-towrlUj14Y .item {
    margin: -1px 0 0;
  }
  .cid-towrlUj14Y .item_left {
    padding-right: 40px;
  }
  .cid-towrlUj14Y .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-towrlUj14Y .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-towrlUj14Y .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-towrlUj14Y .item-img:hover img {
  transform: scale(1.2);
}
.cid-towrlUj14Y .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-towrlUj14Y .item-wrap {
  background: transparent;
}
.cid-towrlUj14Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-towrlUj14Y .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-towrlUj14Y .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-towrlUj14Y .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-towrlUj14Y .item-subtitle {
  color: #ffffff;
}
.cid-towrlUj14Y .mbr-text,
.cid-towrlUj14Y .mbr-section-btn {
  text-align: left;
}
.cid-towrlUj14Y .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-towrlUj14Y .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-towrlUj14Y .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-towrlUj14Y .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-towrlUj14Y .btn {
  margin: 16px 0 0 0;
}
.cid-towrlUj14Y .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-towrlUj14Y .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-towrlUj14Y .item__button {
  margin-left: 32px;
}
.cid-towrlUj14Y .mbr-section-title {
  color: #FFFFFF;
}
.cid-towrlUj14Y .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-tnlrNKyr87 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #141414;
}
.cid-tnlrNKyr87 .container-fluid {
  padding: 0;
}
.cid-tnlrNKyr87 .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tnlrNKyr87 .item-content {
    padding: 40px;
  }
}
.cid-tnlrNKyr87 .item:focus,
.cid-tnlrNKyr87 span:focus {
  outline: none;
}
.cid-tnlrNKyr87 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnlrNKyr87 .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tnlrNKyr87 .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlrNKyr87 .item {
    margin: -1px 0 0;
  }
  .cid-tnlrNKyr87 .item_left {
    padding-right: 40px;
  }
  .cid-tnlrNKyr87 .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tnlrNKyr87 .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tnlrNKyr87 .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tnlrNKyr87 .item-img:hover img {
  transform: scale(1.2);
}
.cid-tnlrNKyr87 .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tnlrNKyr87 .item-wrap {
  background: transparent;
}
.cid-tnlrNKyr87 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnlrNKyr87 .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tnlrNKyr87 .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tnlrNKyr87 .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tnlrNKyr87 .item-subtitle {
  color: #ffffff;
}
.cid-tnlrNKyr87 .mbr-text,
.cid-tnlrNKyr87 .mbr-section-btn {
  text-align: left;
}
.cid-tnlrNKyr87 .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tnlrNKyr87 .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnlrNKyr87 .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-tnlrNKyr87 .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tnlrNKyr87 .btn {
  margin: 16px 0 0 0;
}
.cid-tnlrNKyr87 .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tnlrNKyr87 .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tnlrNKyr87 .item__button {
  margin-left: 32px;
}
.cid-tnlrNKyr87 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tnlrNKyr87 .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-tnluvV6U6H {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #141414;
}
.cid-tnluvV6U6H .container-fluid {
  padding: 0;
}
.cid-tnluvV6U6H .item-content {
  padding: 32px 24px;
}
@media (min-width: 576px) {
  .cid-tnluvV6U6H .item-content {
    padding: 40px;
  }
}
.cid-tnluvV6U6H .item:focus,
.cid-tnluvV6U6H span:focus {
  outline: none;
}
.cid-tnluvV6U6H .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnluvV6U6H .item {
  cursor: pointer;
  border: 1px solid #ffffff;
  margin: -1px 0 24px;
}
@media (min-width: 576px) {
  .cid-tnluvV6U6H .item {
    margin: -1px 0 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnluvV6U6H .item {
    margin: -1px 0 0;
  }
  .cid-tnluvV6U6H .item_left {
    padding-right: 40px;
  }
  .cid-tnluvV6U6H .item_right {
    position: relative;
    top: -92px;
    padding-left: 40px;
  }
}
.cid-tnluvV6U6H .item-img {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
.cid-tnluvV6U6H .item-img img {
  width: 100%;
  transition: transform 0.5s;
  transform: scale3d(1, 1, 1);
  transform-style: preserve-3d;
}
.cid-tnluvV6U6H .item-img:hover img {
  transform: scale(1.2);
}
.cid-tnluvV6U6H .item-wrap {
  position: relative;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-tnluvV6U6H .item-wrap {
  background: transparent;
}
.cid-tnluvV6U6H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnluvV6U6H .title-text-container {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-tnluvV6U6H .title-text-container {
    margin-bottom: 64px;
  }
}
.cid-tnluvV6U6H .item-title {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1;
  text-align: left;
}
.cid-tnluvV6U6H .item-subtitle {
  color: #ffffff;
}
.cid-tnluvV6U6H .mbr-text,
.cid-tnluvV6U6H .mbr-section-btn {
  text-align: left;
}
.cid-tnluvV6U6H .items-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 576px) {
  .cid-tnluvV6U6H .items-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 992px) {
  .cid-tnluvV6U6H .items-container {
    padding-left: 60px;
    padding-right: 60px;
    margin-top: 92px;
  }
}
.cid-tnluvV6U6H .item__buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -32px;
}
.cid-tnluvV6U6H .btn {
  margin: 16px 0 0 0;
}
.cid-tnluvV6U6H .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-tnluvV6U6H .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-tnluvV6U6H .item__button {
  margin-left: 32px;
}
.cid-tnluvV6U6H .mbr-section-title {
  color: #FFFFFF;
}
.cid-tnluvV6U6H .mbr-section-title_container {
  width: 200px;
  border-right: 1px solid #FFFFFF;
}
.cid-tlGpPf6wM3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-tlGpPf6wM3 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-tlGpPf6wM3 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tmDgOaVXkq {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #000000;
}
.cid-tmDgOaVXkq .carousel {
  width: 100%;
}
.cid-tmDgOaVXkq .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-tmDgOaVXkq .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-tmDgOaVXkq .mbr-overlay {
  z-index: 1;
}
.cid-tmDgOaVXkq .carousel-caption {
  bottom: 20px;
  position: absolute;
  top: 40%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .cid-tmDgOaVXkq .carousel-caption {
    left: 15%;
    right: 70%;
    width: 31%;
  }
}
.cid-tmDgOaVXkq .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tmDgOaVXkq .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tmDgOaVXkq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tmDgOaVXkq .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tmDgOaVXkq .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tmDgOaVXkq .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tmDgOaVXkq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tmDgOaVXkq .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 768px) {
  .cid-tmDgOaVXkq .carousel-indicators {
    display: none;
  }
}
.cid-tmDgOaVXkq .carousel-indicators li {
  max-width: 10px;
  height: 10px;
  width: 10px;
  max-height: 10px;
  margin: 3px 10px;
  background-color: #f7f7f7;
  border: 0px solid #cfc3ac;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}
.cid-tmDgOaVXkq .carousel-indicators li.active,
.cid-tmDgOaVXkq .carousel-indicators li:hover {
  background-color: #ffe161;
}
.cid-tmDgOaVXkq .carousel-indicators li::after,
.cid-tmDgOaVXkq .carousel-indicators li::before {
  content: none;
}
.cid-tmDgOaVXkq .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
.cid-tmDgOaVXkq .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tmDgOaVXkq .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmDgOaVXkq .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmDgOaVXkq .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tmDgOaVXkq .right-block {
  position: absolute;
  margin: 0 !important;
  top: 50%;
  right: 0;
  left: auto;
  width: 10%;
  height: 3%;
  transform: rotate(90deg);
  min-width: 90px;
}
.cid-tmDgOaVXkq H5 {
  text-align: left;
}
.cid-tmDgOaVXkq P {
  text-align: left;
}
.cid-tmDgOaVXkq .mbr-text,
.cid-tmDgOaVXkq .mbr-section-btn {
  text-align: left;
}
.cid-tmDgOaVXkq .mbr-text {
  margin-top: 0 !important;
  line-height: 1.4;
}
.cid-tmDgOaVXkq .mbr-section-btn {
  margin-top: 1rem !important;
}
.cid-tmDgOaVXkq .second-img {
  z-index: 1;
  cursor: pointer;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000000;
  top: 0%;
  opacity: 34%;
  transition: .5s all;
  pointer-events: none;
}
.cid-tmDhnIoxAe {
  background-color: #141414;
}
@media (min-width: 992px) {
  .cid-tmDhnIoxAe .carousel {
    overflow: hidden;
  }
  .cid-tmDhnIoxAe .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tmDhnIoxAe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tmDhnIoxAe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tmDhnIoxAe .carousel,
.cid-tmDhnIoxAe .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tmDhnIoxAe .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tmDhnIoxAe .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tmDhnIoxAe .item-wrapper {
    height: 215px;
  }
}
.cid-tmDhnIoxAe .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tmDhnIoxAe .carousel-caption {
  bottom: 40px;
}
.cid-tmDhnIoxAe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tmDhnIoxAe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tmDhnIoxAe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tmDhnIoxAe .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tmDhnIoxAe .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tmDhnIoxAe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tmDhnIoxAe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tmDhnIoxAe .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tmDhnIoxAe .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tmDhnIoxAe .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tmDhnIoxAe .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tmDhnIoxAe .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tmDhnIoxAe .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tmDhnIoxAe .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tmDhnIoxAe .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tmDhnIoxAe .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tmDhnIoxAe .soc-item::before,
.cid-tmDhnIoxAe .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tmDhnIoxAe .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tmDhnIoxAe .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tmDhnIoxAe .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tmDhnIoxAe .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tmDhnIoxAe .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tmDhnIoxAe .text {
  color: #ddc499;
}
.cid-tmDhnIoxAe .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tmDhnIoxAe .mbr-section-title {
  color: #908269;
}
.cid-tmDhnIoxAe .mbr-text {
  color: #606060;
}
.cid-tmDhnIoxAe .mbr-text .text {
  color: #a19a8c;
}
.cid-tnlIBK1HO3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-tnlIBK1HO3 .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnlIBK1HO3 img,
.cid-tnlIBK1HO3 .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnlIBK1HO3 .item-img {
  height: 100%;
}
.cid-tnlIBK1HO3 .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnlIBK1HO3 .item:focus,
.cid-tnlIBK1HO3 span:focus {
  outline: none;
}
.cid-tnlIBK1HO3 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnlIBK1HO3 .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnlIBK1HO3 .mbr-text {
  color: #977741;
}
.cid-tnlIBK1HO3 .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnlIBK1HO3 .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnlIBK1HO3 .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnlIBK1HO3 .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnlIBK1HO3 .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnlIBK1HO3 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnlIBK1HO3 .embla__button--next,
.cid-tnlIBK1HO3 .embla__button--prev {
  display: flex;
}
.cid-tnlIBK1HO3 .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnlIBK1HO3 .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnlIBK1HO3 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnlIBK1HO3 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnlIBK1HO3 .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnlIBK1HO3 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnlIBK1HO3 .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnlIBK1HO3 .embla {
  position: relative;
  width: 100%;
}
.cid-tnlIBK1HO3 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnlIBK1HO3 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnlIBK1HO3 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnlIBK1HO3 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnlJeLlc74 {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tnlJeLlc74 .carousel {
    overflow: hidden;
  }
  .cid-tnlJeLlc74 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnlJeLlc74 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnlJeLlc74 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnlJeLlc74 .carousel,
.cid-tnlJeLlc74 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnlJeLlc74 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnlJeLlc74 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnlJeLlc74 .item-wrapper {
    height: 215px;
  }
}
.cid-tnlJeLlc74 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnlJeLlc74 .carousel-caption {
  bottom: 40px;
}
.cid-tnlJeLlc74 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnlJeLlc74 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnlJeLlc74 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnlJeLlc74 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnlJeLlc74 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnlJeLlc74 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnlJeLlc74 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnlJeLlc74 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnlJeLlc74 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnlJeLlc74 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnlJeLlc74 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnlJeLlc74 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnlJeLlc74 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnlJeLlc74 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnlJeLlc74 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnlJeLlc74 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnlJeLlc74 .soc-item::before,
.cid-tnlJeLlc74 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnlJeLlc74 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnlJeLlc74 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnlJeLlc74 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnlJeLlc74 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnlJeLlc74 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tnlJeLlc74 .text {
  color: #ddc499;
}
.cid-tnlJeLlc74 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnlJeLlc74 .mbr-section-title {
  color: #908269;
}
.cid-tnlJeLlc74 .mbr-text {
  color: #606060;
}
.cid-tnlJeLlc74 .mbr-text .text {
  color: #c0bcb7;
}
.cid-tnlJeLlc74 .mbr-text .one {
  color: #908269;
}
.cid-tnlKx0axl7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tnlKx0axl7 .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnlKx0axl7 img,
.cid-tnlKx0axl7 .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnlKx0axl7 .item-img {
  height: 100%;
}
.cid-tnlKx0axl7 .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnlKx0axl7 .item:focus,
.cid-tnlKx0axl7 span:focus {
  outline: none;
}
.cid-tnlKx0axl7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnlKx0axl7 .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnlKx0axl7 .mbr-text {
  color: #977741;
}
.cid-tnlKx0axl7 .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnlKx0axl7 .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnlKx0axl7 .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnlKx0axl7 .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnlKx0axl7 .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnlKx0axl7 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnlKx0axl7 .embla__button--next,
.cid-tnlKx0axl7 .embla__button--prev {
  display: flex;
}
.cid-tnlKx0axl7 .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnlKx0axl7 .embla__button .mobi-mbri {
  display: none;
}
.cid-tnlKx0axl7 .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnlKx0axl7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnlKx0axl7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnlKx0axl7 .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnlKx0axl7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnlKx0axl7 .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnlKx0axl7 .embla {
  position: relative;
  width: 100%;
}
.cid-tnlKx0axl7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnlKx0axl7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnlKx0axl7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnlKx0axl7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tlEcqdZ9iC {
  z-index: 1000;
  width: 100%;
}
.cid-tlEcqdZ9iC .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-tlEcqdZ9iC .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-tlEcqdZ9iC .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .icons-menu {
    padding: 0 3rem;
  }
}
.cid-tlEcqdZ9iC nav.navbar {
  position: fixed;
}
.cid-tlEcqdZ9iC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlEcqdZ9iC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlEcqdZ9iC .dropdown-item:hover,
.cid-tlEcqdZ9iC .dropdown-item:focus {
  background: #404041 !important;
  color: white !important;
}
.cid-tlEcqdZ9iC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlEcqdZ9iC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlEcqdZ9iC .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tlEcqdZ9iC .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-tlEcqdZ9iC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlEcqdZ9iC .nav-link {
  position: relative;
}
.cid-tlEcqdZ9iC .container {
  display: flex;
  margin: auto;
}
.cid-tlEcqdZ9iC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown-menu,
.cid-tlEcqdZ9iC .navbar.opened {
  background: #404041 !important;
  min-height: 100%;
}
.cid-tlEcqdZ9iC .nav-item:focus,
.cid-tlEcqdZ9iC .nav-link:focus {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlEcqdZ9iC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlEcqdZ9iC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlEcqdZ9iC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlEcqdZ9iC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(64, 64, 65, 0);
}
.cid-tlEcqdZ9iC .navbar.opened {
  transition: all 0.3s;
}
.cid-tlEcqdZ9iC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlEcqdZ9iC .navbar .navbar-logo img {
  width: auto;
}
.cid-tlEcqdZ9iC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlEcqdZ9iC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlEcqdZ9iC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlEcqdZ9iC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tlEcqdZ9iC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlEcqdZ9iC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlEcqdZ9iC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlEcqdZ9iC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlEcqdZ9iC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tlEcqdZ9iC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlEcqdZ9iC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlEcqdZ9iC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlEcqdZ9iC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlEcqdZ9iC .dropdown-item.active,
.cid-tlEcqdZ9iC .dropdown-item:active {
  background-color: transparent;
}
.cid-tlEcqdZ9iC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlEcqdZ9iC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #404041;
}
.cid-tlEcqdZ9iC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlEcqdZ9iC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlEcqdZ9iC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlEcqdZ9iC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #404041;
}
.cid-tlEcqdZ9iC button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-tlEcqdZ9iC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlEcqdZ9iC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlEcqdZ9iC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlEcqdZ9iC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlEcqdZ9iC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tlEcqdZ9iC .navbar {
    height: 70px;
  }
  .cid-tlEcqdZ9iC .navbar.opened {
    height: auto;
  }
  .cid-tlEcqdZ9iC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnr3hwLpXb {
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tnr3hwLpXb .carousel {
    overflow: hidden;
  }
  .cid-tnr3hwLpXb .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnr3hwLpXb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnr3hwLpXb .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnr3hwLpXb .carousel,
.cid-tnr3hwLpXb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnr3hwLpXb .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnr3hwLpXb .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnr3hwLpXb .item-wrapper {
    height: 215px;
  }
}
.cid-tnr3hwLpXb .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnr3hwLpXb .carousel-caption {
  bottom: 40px;
}
.cid-tnr3hwLpXb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnr3hwLpXb .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnr3hwLpXb .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnr3hwLpXb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnr3hwLpXb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnr3hwLpXb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnr3hwLpXb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnr3hwLpXb .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnr3hwLpXb .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnr3hwLpXb .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnr3hwLpXb .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnr3hwLpXb .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnr3hwLpXb .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnr3hwLpXb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnr3hwLpXb .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnr3hwLpXb .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnr3hwLpXb .soc-item::before,
.cid-tnr3hwLpXb .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnr3hwLpXb .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnr3hwLpXb .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnr3hwLpXb .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnr3hwLpXb .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnr3hwLpXb .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tnr3hwLpXb .text {
  color: #ddc499;
}
.cid-tnr3hwLpXb .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnr3hwLpXb .mbr-section-title {
  color: #908269;
}
.cid-tnr3hwLpXb .mbr-text {
  color: #606060;
}
.cid-tnr3hwLpXb .mbr-text .text {
  color: #c0bcb7;
}
.cid-tnr3hwLpXb .mbr-text .one {
  color: #908269;
}
.cid-tnr3iG69eS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tnr3iG69eS .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnr3iG69eS img,
.cid-tnr3iG69eS .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnr3iG69eS .item-img {
  height: 100%;
}
.cid-tnr3iG69eS .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnr3iG69eS .item:focus,
.cid-tnr3iG69eS span:focus {
  outline: none;
}
.cid-tnr3iG69eS .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnr3iG69eS .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnr3iG69eS .mbr-text {
  color: #977741;
}
.cid-tnr3iG69eS .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnr3iG69eS .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnr3iG69eS .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnr3iG69eS .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnr3iG69eS .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnr3iG69eS .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnr3iG69eS .embla__button--next,
.cid-tnr3iG69eS .embla__button--prev {
  display: flex;
}
.cid-tnr3iG69eS .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnr3iG69eS .embla__button .mobi-mbri {
  display: none;
}
.cid-tnr3iG69eS .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnr3iG69eS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnr3iG69eS .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnr3iG69eS .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnr3iG69eS .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnr3iG69eS .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnr3iG69eS .embla {
  position: relative;
  width: 100%;
}
.cid-tnr3iG69eS .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnr3iG69eS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnr3iG69eS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnr3iG69eS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnr7uz5gbi {
  background-color: #a19a8c;
}
@media (min-width: 992px) {
  .cid-tnr7uz5gbi .carousel {
    overflow: hidden;
  }
  .cid-tnr7uz5gbi .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnr7uz5gbi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnr7uz5gbi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnr7uz5gbi .carousel,
.cid-tnr7uz5gbi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnr7uz5gbi .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnr7uz5gbi .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnr7uz5gbi .item-wrapper {
    height: 215px;
  }
}
.cid-tnr7uz5gbi .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnr7uz5gbi .carousel-caption {
  bottom: 40px;
}
.cid-tnr7uz5gbi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnr7uz5gbi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnr7uz5gbi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnr7uz5gbi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnr7uz5gbi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnr7uz5gbi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnr7uz5gbi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnr7uz5gbi .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnr7uz5gbi .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnr7uz5gbi .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnr7uz5gbi .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnr7uz5gbi .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnr7uz5gbi .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnr7uz5gbi .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnr7uz5gbi .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnr7uz5gbi .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnr7uz5gbi .soc-item::before,
.cid-tnr7uz5gbi .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnr7uz5gbi .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnr7uz5gbi .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnr7uz5gbi .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnr7uz5gbi .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnr7uz5gbi .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tnr7uz5gbi .text {
  color: #ddc499;
}
.cid-tnr7uz5gbi .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnr7uz5gbi .mbr-section-title {
  color: #c0bcb7;
}
.cid-tnr7uz5gbi .mbr-text {
  color: #c0bcb7;
}
.cid-tnr7uz5gbi .mbr-text .text {
  color: #ffffff;
}
.cid-tnr7uz5gbi .mbr-text .one {
  color: #cfc3ac;
}
.cid-tnr8TOy5yG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a19a8c;
}
.cid-tnr8TOy5yG .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnr8TOy5yG img,
.cid-tnr8TOy5yG .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnr8TOy5yG .item-img {
  height: 100%;
}
.cid-tnr8TOy5yG .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnr8TOy5yG .item:focus,
.cid-tnr8TOy5yG span:focus {
  outline: none;
}
.cid-tnr8TOy5yG .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnr8TOy5yG .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnr8TOy5yG .mbr-text {
  color: #977741;
}
.cid-tnr8TOy5yG .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnr8TOy5yG .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnr8TOy5yG .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnr8TOy5yG .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnr8TOy5yG .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnr8TOy5yG .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnr8TOy5yG .embla__button--next,
.cid-tnr8TOy5yG .embla__button--prev {
  display: flex;
}
.cid-tnr8TOy5yG .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnr8TOy5yG .embla__button .mobi-mbri {
  display: none;
}
.cid-tnr8TOy5yG .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnr8TOy5yG .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnr8TOy5yG .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnr8TOy5yG .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnr8TOy5yG .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnr8TOy5yG .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnr8TOy5yG .embla {
  position: relative;
  width: 100%;
}
.cid-tnr8TOy5yG .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnr8TOy5yG .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnr8TOy5yG .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnr8TOy5yG .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnracbWYV7 {
  background-color: #404041;
}
@media (min-width: 992px) {
  .cid-tnracbWYV7 .carousel {
    overflow: hidden;
  }
  .cid-tnracbWYV7 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnracbWYV7 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnracbWYV7 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnracbWYV7 .carousel,
.cid-tnracbWYV7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnracbWYV7 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnracbWYV7 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnracbWYV7 .item-wrapper {
    height: 215px;
  }
}
.cid-tnracbWYV7 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnracbWYV7 .carousel-caption {
  bottom: 40px;
}
.cid-tnracbWYV7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnracbWYV7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnracbWYV7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnracbWYV7 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnracbWYV7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnracbWYV7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnracbWYV7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnracbWYV7 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnracbWYV7 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnracbWYV7 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnracbWYV7 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnracbWYV7 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnracbWYV7 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnracbWYV7 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnracbWYV7 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnracbWYV7 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnracbWYV7 .soc-item::before,
.cid-tnracbWYV7 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnracbWYV7 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnracbWYV7 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnracbWYV7 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnracbWYV7 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnracbWYV7 .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tnracbWYV7 .text {
  color: #ddc499;
}
.cid-tnracbWYV7 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnracbWYV7 .mbr-section-title {
  color: #c0bcb7;
}
.cid-tnracbWYV7 .mbr-text {
  color: #c0bcb7;
}
.cid-tnracbWYV7 .mbr-text .text {
  color: #ffffff;
}
.cid-tnracbWYV7 .mbr-text .one {
  color: #cfc3ac;
}
.cid-tnracYTB0s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #404041;
}
.cid-tnracYTB0s .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnracYTB0s img,
.cid-tnracYTB0s .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnracYTB0s .item-img {
  height: 100%;
}
.cid-tnracYTB0s .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnracYTB0s .item:focus,
.cid-tnracYTB0s span:focus {
  outline: none;
}
.cid-tnracYTB0s .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnracYTB0s .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnracYTB0s .mbr-text {
  color: #977741;
}
.cid-tnracYTB0s .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnracYTB0s .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnracYTB0s .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnracYTB0s .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnracYTB0s .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnracYTB0s .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnracYTB0s .embla__button--next,
.cid-tnracYTB0s .embla__button--prev {
  display: flex;
}
.cid-tnracYTB0s .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnracYTB0s .embla__button .mobi-mbri {
  display: none;
}
.cid-tnracYTB0s .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnracYTB0s .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnracYTB0s .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnracYTB0s .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnracYTB0s .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnracYTB0s .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnracYTB0s .embla {
  position: relative;
  width: 100%;
}
.cid-tnracYTB0s .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnracYTB0s .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnracYTB0s .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnracYTB0s .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnrcF3qw7j {
  background-color: #25282b;
}
@media (min-width: 992px) {
  .cid-tnrcF3qw7j .carousel {
    overflow: hidden;
  }
  .cid-tnrcF3qw7j .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnrcF3qw7j .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnrcF3qw7j .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnrcF3qw7j .carousel,
.cid-tnrcF3qw7j .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnrcF3qw7j .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnrcF3qw7j .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnrcF3qw7j .item-wrapper {
    height: 215px;
  }
}
.cid-tnrcF3qw7j .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnrcF3qw7j .carousel-caption {
  bottom: 40px;
}
.cid-tnrcF3qw7j .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnrcF3qw7j .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnrcF3qw7j .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnrcF3qw7j .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnrcF3qw7j .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnrcF3qw7j .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnrcF3qw7j .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnrcF3qw7j .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnrcF3qw7j .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnrcF3qw7j .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnrcF3qw7j .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnrcF3qw7j .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnrcF3qw7j .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnrcF3qw7j .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnrcF3qw7j .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnrcF3qw7j .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnrcF3qw7j .soc-item::before,
.cid-tnrcF3qw7j .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnrcF3qw7j .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnrcF3qw7j .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnrcF3qw7j .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnrcF3qw7j .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnrcF3qw7j .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tnrcF3qw7j .text {
  color: #ddc499;
}
.cid-tnrcF3qw7j .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnrcF3qw7j .mbr-section-title {
  color: #c0bcb7;
}
.cid-tnrcF3qw7j .mbr-text {
  color: #c0bcb7;
}
.cid-tnrcF3qw7j .mbr-text .text {
  color: #ffffff;
}
.cid-tnrcF3qw7j .mbr-text .one {
  color: #cfc3ac;
}
.cid-tnrcG25ONp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #25282b;
}
.cid-tnrcG25ONp .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnrcG25ONp img,
.cid-tnrcG25ONp .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnrcG25ONp .item-img {
  height: 100%;
}
.cid-tnrcG25ONp .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnrcG25ONp .item:focus,
.cid-tnrcG25ONp span:focus {
  outline: none;
}
.cid-tnrcG25ONp .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnrcG25ONp .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnrcG25ONp .mbr-text {
  color: #977741;
}
.cid-tnrcG25ONp .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnrcG25ONp .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnrcG25ONp .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnrcG25ONp .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnrcG25ONp .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnrcG25ONp .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnrcG25ONp .embla__button--next,
.cid-tnrcG25ONp .embla__button--prev {
  display: flex;
}
.cid-tnrcG25ONp .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnrcG25ONp .embla__button .mobi-mbri {
  display: none;
}
.cid-tnrcG25ONp .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnrcG25ONp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnrcG25ONp .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnrcG25ONp .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnrcG25ONp .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnrcG25ONp .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnrcG25ONp .embla {
  position: relative;
  width: 100%;
}
.cid-tnrcG25ONp .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnrcG25ONp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnrcG25ONp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnrcG25ONp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnreUHcSk3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
@media (min-width: 992px) {
  .cid-tnreUHcSk3 .carousel {
    overflow: hidden;
  }
  .cid-tnreUHcSk3 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnreUHcSk3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnreUHcSk3 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnreUHcSk3 .carousel,
.cid-tnreUHcSk3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnreUHcSk3 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnreUHcSk3 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnreUHcSk3 .item-wrapper {
    height: 215px;
  }
}
.cid-tnreUHcSk3 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnreUHcSk3 .carousel-caption {
  bottom: 40px;
}
.cid-tnreUHcSk3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnreUHcSk3 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnreUHcSk3 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnreUHcSk3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnreUHcSk3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnreUHcSk3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnreUHcSk3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnreUHcSk3 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnreUHcSk3 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnreUHcSk3 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnreUHcSk3 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnreUHcSk3 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnreUHcSk3 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnreUHcSk3 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnreUHcSk3 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnreUHcSk3 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnreUHcSk3 .soc-item::before,
.cid-tnreUHcSk3 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnreUHcSk3 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnreUHcSk3 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnreUHcSk3 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnreUHcSk3 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnreUHcSk3 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tnreUHcSk3 .text {
  color: #ddc499;
}
.cid-tnreUHcSk3 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnreUHcSk3 .mbr-section-title {
  color: #908269;
}
.cid-tnreUHcSk3 .mbr-text {
  color: #c0bcb7;
}
.cid-tnreUHcSk3 .mbr-text .text {
  color: #908269;
}
.cid-tnreUHcSk3 .mbr-text .one {
  color: #a19a8c;
}
.cid-tnrfJKJBey {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tnrfJKJBey .item {
  margin-right: 25px !imporant;
  margin-left: 25px !imporant;
}
.cid-tnrfJKJBey img,
.cid-tnrfJKJBey .item-img {
  transition: all 0.5s;
  width: 100%;
}
.cid-tnrfJKJBey .item-img {
  height: 100%;
}
.cid-tnrfJKJBey .item-img img {
  object-fit: cover;
  height: 100%;
}
.cid-tnrfJKJBey .item:focus,
.cid-tnrfJKJBey span:focus {
  outline: none;
}
.cid-tnrfJKJBey .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnrfJKJBey .title-block {
  z-index: 99999;
  min-width: 200px;
  text-align: center;
  top: 90%;
  left: 50%;
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -20%);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tnrfJKJBey .mbr-text {
  color: #977741;
}
.cid-tnrfJKJBey .mbr-section-subtitle {
  color: #9a948d;
}
.cid-tnrfJKJBey .item-wrapper:hover .title-block {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.cid-tnrfJKJBey .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnrfJKJBey .slide-content {
  position: relative;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-tnrfJKJBey .embla__slide {
  display: flex;
  justify-content: center;
  min-width: 38%;
  max-width: 38%;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tnrfJKJBey .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tnrfJKJBey .embla__button--next,
.cid-tnrfJKJBey .embla__button--prev {
  display: flex;
}
.cid-tnrfJKJBey .embla__button {
  color: #9a948d;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 38px;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
}
.cid-tnrfJKJBey .embla__button .mobi-mbri {
  display: none;
}
.cid-tnrfJKJBey .embla__button:hover {
  color: #fff;
  opacity: 1;
}
.cid-tnrfJKJBey .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tnrfJKJBey .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnrfJKJBey .embla__button.embla__button--prev {
    margin-left: 0.5rem;
  }
}
.cid-tnrfJKJBey .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tnrfJKJBey .embla__button.embla__button--next {
    margin-right: 0.5rem;
  }
}
.cid-tnrfJKJBey .embla {
  position: relative;
  width: 100%;
}
.cid-tnrfJKJBey .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tnrfJKJBey .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tnrfJKJBey .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tnrfJKJBey .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tnrgZJAxBV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
@media (min-width: 992px) {
  .cid-tnrgZJAxBV .carousel {
    overflow: hidden;
  }
  .cid-tnrgZJAxBV .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-tnrgZJAxBV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tnrgZJAxBV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tnrgZJAxBV .carousel,
.cid-tnrgZJAxBV .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tnrgZJAxBV .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnrgZJAxBV .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-tnrgZJAxBV .item-wrapper {
    height: 215px;
  }
}
.cid-tnrgZJAxBV .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-tnrgZJAxBV .carousel-caption {
  bottom: 40px;
}
.cid-tnrgZJAxBV .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tnrgZJAxBV .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tnrgZJAxBV .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tnrgZJAxBV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tnrgZJAxBV .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-tnrgZJAxBV .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnrgZJAxBV .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tnrgZJAxBV .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnrgZJAxBV .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-tnrgZJAxBV .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-tnrgZJAxBV .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-tnrgZJAxBV .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnrgZJAxBV .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-tnrgZJAxBV .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnrgZJAxBV .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnrgZJAxBV .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnrgZJAxBV .soc-item::before,
.cid-tnrgZJAxBV .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnrgZJAxBV .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnrgZJAxBV .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnrgZJAxBV .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnrgZJAxBV .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnrgZJAxBV .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tnrgZJAxBV .text {
  color: #ddc499;
}
.cid-tnrgZJAxBV .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-tnrgZJAxBV .mbr-section-title {
  color: #908269;
}
.cid-tnrgZJAxBV .mbr-text {
  color: #c0bcb7;
}
.cid-tnrgZJAxBV .mbr-text .text {
  color: #908269;
}
.cid-tnrgZJAxBV .mbr-text .one {
  color: #a19a8c;
}
.cid-tnriGOdF7x {
  background-color: #404041;
}
.cid-tnriGOdF7x .item {
  padding-bottom: 2rem;
}
.cid-tnriGOdF7x img,
.cid-tnriGOdF7x .item-wrapper {
  transition: all .7s;
}
.cid-tnriGOdF7x .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tnriGOdF7x .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tnriGOdF7x .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.2s;
}
.cid-tnriGOdF7x .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tnriGOdF7x .item-wrapper:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.9);
  opacity: 0.4;
}
.cid-tnriGOdF7x .close {
  position: fixed;
  font-size: 16px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  color: #fff;
  opacity: .7;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tnriGOdF7x .close::before {
  content: '\e91a';
}
.cid-tnriGOdF7x .close:hover {
  color: #fff;
}
.cid-tnriGOdF7x .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tnriGOdF7x .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tnriGOdF7x .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tnriGOdF7x .carousel-control-next span {
  margin-left: 5px;
}
.cid-tnriGOdF7x .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
}
.cid-tnriGOdF7x .carousel-control.carousel-control-prev {
  left: -50%;
  margin-left: 2.5rem;
}
.cid-tnriGOdF7x .carousel-control.carousel-control-next {
  right: -50%;
  margin-right: 2.5rem;
}
@media (max-width: 1050px) {
  .cid-tnriGOdF7x .carousel-control {
    top: auto;
    bottom: 1rem;
  }
  .cid-tnriGOdF7x .carousel-control.carousel-control-prev {
    top: 50%;
    left: -5%;
  }
  .cid-tnriGOdF7x .carousel-control.carousel-control-next {
    top: 50%;
    right: -5%;
  }
}
.cid-tnriGOdF7x .carousel-inner {
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .cid-tnriGOdF7x .carousel-item img {
    width: 70%;
  }
}
.cid-tnriGOdF7x .carousel-inner > .active {
  display: block;
}
.cid-tnriGOdF7x .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tnriGOdF7x .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tnriGOdF7x .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-tnriGOdF7x .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
@media (max-width: 768px) {
  .cid-tnriGOdF7x .carousel-control,
  .cid-tnriGOdF7x .carousel-indicators {
    position: fixed;
  }
}
.cid-tnriGOdF7x .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tnriGOdF7x .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tnriGOdF7x .modal-content {
  width: 50%;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  background: transparent;
}
@media (max-width: 1050px) {
  .cid-tnriGOdF7x .modal-content {
    width: 70%;
  }
}
.cid-tnriGOdF7x .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tnriGOdF7x .carousel {
  width: 100%;
}
.cid-tnriGOdF7x .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tnriGOdF7x .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tnriGOdF7x .modal.fade .modal-dialog,
.cid-tnriGOdF7x .modal.in .modal-dialog {
  transform: none;
}
.cid-tnriGOdF7x .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tnriGOdF7x .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnriGOdF7x .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-tnriGOdF7x .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-tnriGOdF7x .soc-item::before,
.cid-tnriGOdF7x .soc-item::after {
  content: '';
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-tnriGOdF7x .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-tnriGOdF7x .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-tnriGOdF7x .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-tnriGOdF7x .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-tnriGOdF7x .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-tnriGOdF7x .text {
  color: #ddc499;
}
.cid-tnriGOdF7x .one {
  color: #C0BCB7;
  font-style: italic;
}
.cid-tnriGOdF7x .mbr-section-title {
  color: #908269;
}
.cid-towskxK0nN {
  background-color: #25282b;
}
@media (min-width: 992px) {
  .cid-towskxK0nN .carousel {
    overflow: hidden;
  }
  .cid-towskxK0nN .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-towskxK0nN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-towskxK0nN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-towskxK0nN .carousel,
.cid-towskxK0nN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-towskxK0nN .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-towskxK0nN .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-towskxK0nN .item-wrapper {
    height: 215px;
  }
}
.cid-towskxK0nN .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-towskxK0nN .carousel-caption {
  bottom: 40px;
}
.cid-towskxK0nN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-towskxK0nN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-towskxK0nN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-towskxK0nN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-towskxK0nN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-towskxK0nN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-towskxK0nN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-towskxK0nN .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-towskxK0nN .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-towskxK0nN .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-towskxK0nN .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-towskxK0nN .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-towskxK0nN .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-towskxK0nN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-towskxK0nN .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-towskxK0nN .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-towskxK0nN .soc-item::before,
.cid-towskxK0nN .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-towskxK0nN .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-towskxK0nN .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-towskxK0nN .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-towskxK0nN .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-towskxK0nN .mbr-section-subtitle {
  color: #fafafa;
}
.cid-towskxK0nN .text {
  color: #ddc499;
}
.cid-towskxK0nN .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-towskxK0nN .mbr-section-title {
  color: #c0bcb7;
}
.cid-towskxK0nN .mbr-text {
  color: #c0bcb7;
}
.cid-towskxK0nN .mbr-text .text {
  color: #ffffff;
}
.cid-towskxK0nN .mbr-text .one {
  color: #cfc3ac;
}
.cid-towwtxjKM9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
@media (min-width: 992px) {
  .cid-towwtxjKM9 .carousel {
    overflow: hidden;
  }
  .cid-towwtxjKM9 .carousel img {
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .cid-towwtxjKM9 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-towwtxjKM9 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-towwtxjKM9 .carousel,
.cid-towwtxjKM9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-towwtxjKM9 .item-wrapper {
  height: 860px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-towwtxjKM9 .item-wrapper {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .cid-towwtxjKM9 .item-wrapper {
    height: 215px;
  }
}
.cid-towwtxjKM9 .item-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-towwtxjKM9 .carousel-caption {
  bottom: 40px;
}
.cid-towwtxjKM9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-towwtxjKM9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-towwtxjKM9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-towwtxjKM9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-towwtxjKM9 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 3rem;
  background-color: inherit;
  transition: all 0.5s;
  opacity: 1;
  color: #ffffff;
}
.cid-towwtxjKM9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-towwtxjKM9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-towwtxjKM9 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-towwtxjKM9 .carousel-control.carousel-control-prev:hover {
    margin-left: 0.3rem;
  }
  .cid-towwtxjKM9 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
    font-size: 16px;
    opacity: 0.7;
  }
  .cid-towwtxjKM9 .carousel-control.carousel-control-next:hover {
    margin-right: 0.3rem;
  }
}
.cid-towwtxjKM9 .carousel-control-prev:hover {
  margin-left: 2rem;
  background-color: transparent;
}
.cid-towwtxjKM9 .carousel-control-next:hover {
  margin-right: 2rem;
  background-color: transparent;
}
.cid-towwtxjKM9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-towwtxjKM9 .soc-item {
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-towwtxjKM9 .soc-item span {
  color: #ffffff;
  z-index: 99999;
}
.cid-towwtxjKM9 .soc-item::before,
.cid-towwtxjKM9 .soc-item::after {
  content: "";
  width: 101%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: 0;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-towwtxjKM9 .soc-item::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-towwtxjKM9 .soc-item:hover::before {
  border-top-color: #4c4c4c;
  border-right-color: #4c4c4c;
  border-bottom-color: #4c4c4c;
}
.cid-towwtxjKM9 .soc-item::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-towwtxjKM9 .soc-item:hover::after {
  border-top: 1px solid #4c4c4c;
  border-left-color: #4c4c4c;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-towwtxjKM9 .mbr-section-subtitle {
  color: #c0bcb7;
}
.cid-towwtxjKM9 .text {
  color: #ddc499;
}
.cid-towwtxjKM9 .one {
  color: #c0bcb7;
  font-style: italic;
}
.cid-towwtxjKM9 .mbr-section-title {
  color: #908269;
}
.cid-towwtxjKM9 .mbr-text {
  color: #c0bcb7;
}
.cid-towwtxjKM9 .mbr-text .text {
  color: #908269;
}
.cid-towwtxjKM9 .mbr-text .one {
  color: #a19a8c;
}
.cid-tlGpPf6wM3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-tlGpPf6wM3 .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-tlGpPf6wM3 .copyright {
    margin-bottom: 1rem;
  }
}
.cid-tnOuNhcHMS {
  z-index: 1000;
  width: 100%;
}
.cid-tnOuNhcHMS .navbar.collapsed ul.navbar-nav li {
  margin: 0;
  width: fit-content;
}
.cid-tnOuNhcHMS .container-fluid {
  padding: 0 1rem;
  margin: 0 auto;
}
.cid-tnOuNhcHMS .icons-menu {
  width: fit-content;
  padding: 0 4rem;
  padding-bottom: 3rem;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tnOuNhcHMS .icons-menu {
    padding: 0 3rem;
  }
}
.cid-tnOuNhcHMS nav.navbar {
  position: fixed;
}
.cid-tnOuNhcHMS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tnOuNhcHMS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tnOuNhcHMS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tnOuNhcHMS .dropdown-item:hover,
.cid-tnOuNhcHMS .dropdown-item:focus {
  background: #404041 !important;
  color: white !important;
}
.cid-tnOuNhcHMS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tnOuNhcHMS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tnOuNhcHMS .nav-dropdown {
  padding: 3rem 2rem;
}
@media (max-width: 767px) {
  .cid-tnOuNhcHMS .nav-dropdown {
    padding: 2rem 0rem;
  }
}
.cid-tnOuNhcHMS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 1rem !important;
}
.cid-tnOuNhcHMS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tnOuNhcHMS .nav-link {
  position: relative;
}
.cid-tnOuNhcHMS .container {
  display: flex;
  margin: auto;
}
.cid-tnOuNhcHMS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tnOuNhcHMS .dropdown-menu,
.cid-tnOuNhcHMS .navbar.opened {
  background: #404041 !important;
  min-height: 100%;
}
.cid-tnOuNhcHMS .nav-item:focus,
.cid-tnOuNhcHMS .nav-link:focus {
  outline: none;
}
.cid-tnOuNhcHMS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tnOuNhcHMS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tnOuNhcHMS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tnOuNhcHMS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tnOuNhcHMS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tnOuNhcHMS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em .5em 0.235em 1.3em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tnOuNhcHMS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(64, 64, 65, 0);
}
.cid-tnOuNhcHMS .navbar.opened {
  transition: all 0.3s;
}
.cid-tnOuNhcHMS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tnOuNhcHMS .navbar .navbar-logo img {
  width: auto;
}
.cid-tnOuNhcHMS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tnOuNhcHMS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tnOuNhcHMS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tnOuNhcHMS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-tnOuNhcHMS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tnOuNhcHMS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tnOuNhcHMS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tnOuNhcHMS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem .5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tnOuNhcHMS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tnOuNhcHMS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tnOuNhcHMS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tnOuNhcHMS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tnOuNhcHMS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tnOuNhcHMS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tnOuNhcHMS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tnOuNhcHMS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem .5rem !important;
    text-align: center;
  }
  .cid-tnOuNhcHMS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tnOuNhcHMS .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tnOuNhcHMS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tnOuNhcHMS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tnOuNhcHMS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tnOuNhcHMS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tnOuNhcHMS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tnOuNhcHMS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tnOuNhcHMS .dropdown-item.active,
.cid-tnOuNhcHMS .dropdown-item:active {
  background-color: transparent;
}
.cid-tnOuNhcHMS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tnOuNhcHMS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tnOuNhcHMS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tnOuNhcHMS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #404041;
}
.cid-tnOuNhcHMS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tnOuNhcHMS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tnOuNhcHMS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tnOuNhcHMS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tnOuNhcHMS button.navbar-toggler[aria-expanded="false"] .hamburger span {
  background-color: #404041;
}
.cid-tnOuNhcHMS button.navbar-toggler[aria-expanded="true"] .hamburger span {
  background: #ffffff;
}
.cid-tnOuNhcHMS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tnOuNhcHMS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
}
.cid-tnOuNhcHMS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tnOuNhcHMS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tnOuNhcHMS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tnOuNhcHMS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tnOuNhcHMS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tnOuNhcHMS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tnOuNhcHMS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tnOuNhcHMS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tnOuNhcHMS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tnOuNhcHMS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tnOuNhcHMS .navbar {
    height: 70px;
  }
  .cid-tnOuNhcHMS .navbar.opened {
    height: auto;
  }
  .cid-tnOuNhcHMS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tnOuNj0oXo {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/mg-constructions-company-profile-2022-26-1600x800.jpg");
}
.cid-tnOuNj0oXo .row.heading {
  margin-bottom: 72px;
}
.cid-tnOuNj0oXo .card {
  flex-direction: row;
  justify-content: center;
}
.cid-tnOuNj0oXo .card-box {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding-left: 1rem;
}
.cid-tnOuNj0oXo .card-box .card-title {
  color: #ffffff;
}
.cid-tnOuNj0oXo .card-box .mbr-text {
  color: #ffffff;
}
.cid-tnOuNj0oXo .card-box .link .btn {
  margin: 0;
}
.cid-tnOuNj0oXo .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-tnOuNj0oXo .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-tnOuNj0oXo .card-title {
  margin: 0;
}
.cid-tnOuNj0oXo .card-img,
.cid-tnOuNj0oXo .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tnOuNj0oXo .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-tnOuNj0oXo .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-tnOuNj0oXo .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-tnOuNj0oXo .card .card-box .card-title,
  .cid-tnOuNj0oXo .card .card-box .mbr-text,
  .cid-tnOuNj0oXo .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-tnOuNj0oXo .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-tnOuNkZqBs {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tnOuNkZqBs .row {
  padding: 0 1rem;
}
@media (max-width: 991px) {
  .cid-tnOuNkZqBs .row {
    padding: 0 0.75rem;
  }
}
.cid-tnOuNkZqBs .text-container {
  margin-bottom: 60px;
  padding: 0 !important;
}
.cid-tnOuNkZqBs .label-text {
  color: #0057fc;
}
.cid-tnOuNkZqBs .cards-container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.cid-tnOuNkZqBs .card {
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-tnOuNkZqBs .card {
    padding: 0;
  }
}
.cid-tnOuNkZqBs .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-border-radius 0.3s, -webkit-box-shadow 0.3s;
}
@media (max-width: 991px) {
  .cid-tnOuNkZqBs .card-wrapper {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }
}
.cid-tnOuNkZqBs .card-wrapper:hover {
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.07);
}
.cid-tnOuNkZqBs .card-text {
  color: #dbd8d8;
}
.cid-tnOuNkZqBs .mbr-iconfont {
  font-size: 25px;
  color: #cfc3ac;
}
.cid-tnOuNkZqBs .icon-box {
  margin-right: 42px;
}
@media (max-width: 991px) {
  .cid-tnOuNkZqBs .icon-box {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tnOuNkZqBs .card-box {
    text-align: center;
  }
}
.cid-tnOuNkZqBs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnOuNkZqBs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tnOuNkZqBs .mbr-section-title {
  color: #908269;
}
.cid-tnOuNkZqBs .card-title {
  color: #a19a8c;
}
.cid-tnOuNvX10N {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #101010;
}
.cid-tnOuNvX10N .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tnOuNvX10N textarea {
  min-height: 150px;
}
.cid-tnOuNvX10N input[name='yourSubject'] {
  margin-top: 1.5rem;
}
.cid-tnOuNvX10N textarea[name='yourMessage'] {
  margin-top: 0.3rem;
}
.cid-tnOuNvX10N .form-control,
.cid-tnOuNvX10N .field-input {
  padding: 1rem 0rem;
  background-color: #101010;
  border: none !important;
  border-bottom: 2px solid #414141 !important;
  border-color: #414141 !important;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 0px;
  outline: none;
}
.cid-tnOuNvX10N .form-control input::-webkit-input-placeholder,
.cid-tnOuNvX10N .field-input input::-webkit-input-placeholder,
.cid-tnOuNvX10N .form-control textarea::-webkit-input-placeholder,
.cid-tnOuNvX10N .field-input textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tnOuNvX10N .form-control input:-moz-placeholder,
.cid-tnOuNvX10N .field-input input:-moz-placeholder,
.cid-tnOuNvX10N .form-control textarea:-moz-placeholder,
.cid-tnOuNvX10N .field-input textarea:-moz-placeholder {
  color: #acacac !important;
}
.cid-tnOuNvX10N .jq-number__spin:hover,
.cid-tnOuNvX10N .jq-number__spin:focus {
  background-color: #101010;
  border-color: #e9204f !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tnOuNvX10N .jq-number__spin {
  background-color: #101010;
  border-color: #414141 !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tnOuNvX10N .jq-selectbox li,
.cid-tnOuNvX10N .jq-selectbox li {
  background-color: #101010;
  color: #ffffff;
}
.cid-tnOuNvX10N .jq-selectbox li:hover,
.cid-tnOuNvX10N .jq-selectbox li.selected {
  background-color: #101010;
  color: #ffffff;
}
.cid-tnOuNvX10N .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tnOuNvX10N .jq-number__spin.minus:hover:after,
.cid-tnOuNvX10N .jq-number__spin.plus:hover:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
.cid-tnOuNvX10N .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tnOuNvX10N .jq-number__spin.minus:after,
.cid-tnOuNvX10N .jq-number__spin.plus:after {
  border-top-color: #101010;
  border-bottom-color: #101010;
}
@media (max-width: 992px) {
  .cid-tnOuNvX10N .media-content {
    padding-left: 0rem;
    padding-top: 2rem;
  }
  .cid-tnOuNvX10N .social-list {
    margin-bottom: 3rem;
  }
  .cid-tnOuNvX10N .email-input {
    margin-top: 2rem;
  }
}
.cid-tnOuNvX10N .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 2.4rem;
}
.cid-tnOuNvX10N .mbr-text {
  color: #acacac;
  margin-bottom: 3.5rem;
}
.cid-tnOuNvX10N .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.6rem;
}
.cid-tnOuNvX10N .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #fafafa;
  transition: all 0.3s;
}
.cid-tnOuNvX10N .mbr-iconfont-social:hover {
  color: #fafafa;
}
.cid-tnOuNvX10N .social-list {
  display: flex;
}
.cid-tnOuNvX10N .social-list a {
  transition: 0.3s;
}
.cid-tnOuNvX10N .social-list a:hover {
  transform: translateY(-8px);
}
.cid-tnOuNvX10N .row {
  align-items: center;
}
.cid-tnOuNvX10N .mbr-section-title {
  margin-bottom: 1.3rem;
}
.cid-tnOuNvX10N .btn {
  font-weight: bold;
  padding: 1rem 5.5rem;
}
.cid-tnOuNvX10N .form-btn {
  margin-top: 2.5rem;
}
.cid-tnOuNvX10N input::-webkit-input-placeholder,
.cid-tnOuNvX10N textarea::-webkit-input-placeholder {
  color: #acacac !important;
}
.cid-tnOuNvX10N input:-moz-placeholder,
.cid-tnOuNvX10N textarea:-moz-placeholder {
  color: #acacac !important;
}
@media (min-width: 992px) {
  .cid-tnOuNvX10N .media-content {
    padding-right: 3rem;
  }
  .cid-tnOuNvX10N .email-input {
    padding-left: 2.2rem;
  }
}
@media (min-width: 767px) {
  .cid-tnOuNvX10N .row {
    padding: 0 1rem;
  }
}
.cid-tnOuNvX10N .btn:hover {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-tnOuNvX10N .form-btn {
    width: 100%;
  }
  .cid-tnOuNvX10N .btn {
    width: 100%;
  }
}
.cid-tnOuNvX10N .mbr-text,
.cid-tnOuNvX10N .mbr-section-btn {
  color: #cfc3ac;
}
.cid-tnOuNwX0tm {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
@media (min-width: 1500px) {
  .cid-tnOuNwX0tm .container {
    max-width: 1400px;
  }
}
@media (max-width: 767px) {
  .cid-tnOuNwX0tm .copyright {
    margin-bottom: 1rem;
  }
}
