body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.75rem;
}
.display-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Epilogue', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.9rem;
    font-size: calc( 3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.0999999999999996rem + (7 - 3.0999999999999996) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6b6b6b !important;
}
.bg-success {
  background-color: #314825 !important;
}
.bg-info {
  background-color: #6ec1e4 !important;
}
.bg-warning {
  background-color: #ee3102 !important;
}
.bg-danger {
  background-color: #ee2852 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6b6b6b !important;
  border-color: #6b6b6b !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: #404040 !important;
  border-color: #404040 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #404040 !important;
  border-color: #404040 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #54595f !important;
  border-color: #54595f !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: #2b2e31 !important;
  border-color: #2b2e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #6ec1e4 !important;
  border-color: #6ec1e4 !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: #27a1d4 !important;
  border-color: #27a1d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #27a1d4 !important;
  border-color: #27a1d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #314825 !important;
  border-color: #314825 !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: #0a0f08 !important;
  border-color: #0a0f08 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a0f08 !important;
  border-color: #0a0f08 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ee3102 !important;
  border-color: #ee3102 !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: #981f01 !important;
  border-color: #981f01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #981f01 !important;
  border-color: #981f01 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ee2852 !important;
  border-color: #ee2852 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b10e31 !important;
  border-color: #b10e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b10e31 !important;
  border-color: #b10e31 !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: #6b6b6b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #404040 !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: #6b6b6b !important;
  border-color: #6b6b6b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #54595f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2b2e31 !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: #54595f !important;
  border-color: #54595f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec1e4;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #27a1d4 !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: #6ec1e4 !important;
  border-color: #6ec1e4 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #314825;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0f08 !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: #314825 !important;
  border-color: #314825 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee3102;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #981f01 !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: #ee3102 !important;
  border-color: #ee3102 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee2852;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b10e31 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ee2852 !important;
  border-color: #ee2852 !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: #6b6b6b !important;
}
.text-secondary {
  color: #54595f !important;
}
.text-success {
  color: #314825 !important;
}
.text-info {
  color: #6ec1e4 !important;
}
.text-warning {
  color: #ee3102 !important;
}
.text-danger {
  color: #ee2852 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #383838 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242629 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #030502 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2597c7 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #891c01 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a30d2d !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: #6b6b6b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #6ec1e4;
}
.alert-warning {
  background-color: #ee3102;
}
.alert-danger {
  background-color: #ee2852;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6b6b6b;
  border-color: #6b6b6b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6b6b6b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ababab;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a1c58e;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fecabe;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fde5ea;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6b6b6b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Epilogue', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #6b6b6b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6b6b6b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6b6b6b;
}
.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: #6b6b6b;
  border-bottom-color: #6b6b6b;
}
.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: #6b6b6b !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: #54595f !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='%236b6b6b' %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-sN2cSIjoTE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sN2cSIjoTE nav.navbar {
  position: fixed;
}
.cid-sN2cSIjoTE .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-sN2cSIjoTE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sN2cSIjoTE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sN2cSIjoTE .dropdown-item:hover,
.cid-sN2cSIjoTE .dropdown-item:focus {
  background: #6b6b6b !important;
  color: white !important;
}
.cid-sN2cSIjoTE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sN2cSIjoTE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sN2cSIjoTE .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-sN2cSIjoTE .nav-item {
  margin: 0 31px;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sN2cSIjoTE .nav-link {
  position: relative;
}
.cid-sN2cSIjoTE .nav-link:hover,
.cid-sN2cSIjoTE .nav-link:focus,
.cid-sN2cSIjoTE .nav-link:active {
  color: #2a8eba !important;
}
.cid-sN2cSIjoTE .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .container {
    flex-wrap: inherit;
  }
}
.cid-sN2cSIjoTE .navbar-caption:hover,
.cid-sN2cSIjoTE .navbar-caption:focus,
.cid-sN2cSIjoTE .navbar-caption:active {
  color: #ab0025 !important;
}
.cid-sN2cSIjoTE .dropdown-menu,
.cid-sN2cSIjoTE .navbar.opened {
  background: #ffffff !important;
}
.cid-sN2cSIjoTE .nav-item:focus,
.cid-sN2cSIjoTE .nav-link:focus {
  outline: none;
}
.cid-sN2cSIjoTE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sN2cSIjoTE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sN2cSIjoTE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sN2cSIjoTE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sN2cSIjoTE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sN2cSIjoTE .navbar.opened {
  transition: all 0.3s;
}
.cid-sN2cSIjoTE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sN2cSIjoTE .navbar .navbar-logo img {
  width: auto;
}
.cid-sN2cSIjoTE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sN2cSIjoTE .navbar.collapsed {
  justify-content: center;
}
.cid-sN2cSIjoTE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sN2cSIjoTE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sN2cSIjoTE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sN2cSIjoTE .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-sN2cSIjoTE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sN2cSIjoTE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sN2cSIjoTE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sN2cSIjoTE .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-sN2cSIjoTE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sN2cSIjoTE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-sN2cSIjoTE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sN2cSIjoTE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sN2cSIjoTE .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-sN2cSIjoTE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sN2cSIjoTE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sN2cSIjoTE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sN2cSIjoTE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
}
.cid-sN2cSIjoTE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sN2cSIjoTE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sN2cSIjoTE .dropdown-item.active,
.cid-sN2cSIjoTE .dropdown-item:active {
  background-color: transparent;
}
.cid-sN2cSIjoTE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sN2cSIjoTE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sN2cSIjoTE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sN2cSIjoTE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sN2cSIjoTE .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-sN2cSIjoTE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sN2cSIjoTE ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sN2cSIjoTE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sN2cSIjoTE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sN2cSIjoTE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sN2cSIjoTE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sN2cSIjoTE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sN2cSIjoTE .navbar {
    height: 70px;
  }
  .cid-sN2cSIjoTE .navbar.opened {
    height: auto;
  }
  .cid-sN2cSIjoTE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sN2cSIjoTE .socials-wrap {
  flex-shrink: 0;
}
.cid-sN2cSIjoTE .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-sN2cSIjoTE .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-sN2cSIjoTE .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-sN2cSIjoTE .socials-item .link {
  color: #000000;
}
.cid-ta8pLZN22r {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-image: url("../../../assets/images/resi-img-2000x955.jpg");
}
.cid-ta8pLZN22r h2,
.cid-ta8pLZN22r h4,
.cid-ta8pLZN22r p {
  margin: 0;
}
.cid-ta8pLZN22r .container-fluid {
  padding: 0;
  margin: 0 auto;
  width: 1300px;
  max-width: 1300px;
}
@media (max-width: 1440px) {
  .cid-ta8pLZN22r .container-fluid {
    width: 1100px;
  }
}
@media (max-width: 1200px) {
  .cid-ta8pLZN22r .container-fluid {
    width: 960px;
  }
}
@media (max-width: 1024px) {
  .cid-ta8pLZN22r .container-fluid {
    width: 768px;
  }
}
@media (max-width: 800px) {
  .cid-ta8pLZN22r .container-fluid {
    width: 86%;
  }
}
.cid-ta8pLZN22r .text-elements {
  width: 100%;
}
.cid-ta8pLZN22r .heading {
  padding-right: 50%;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .cid-ta8pLZN22r .heading {
    padding-right: 38%;
  }
}
@media (max-width: 767px) {
  .cid-ta8pLZN22r .heading {
    padding-right: 0;
  }
}
.cid-ta8pLZN22r .mbr-section-title {
  color: #08246f;
  margin-bottom: 20px;
}
.cid-ta8pLZN22r .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #ab0025;
}
.cid-ta8pLZN22r .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
  padding-right: 73%;
  padding-right: 0;
}
@media (max-width: 1024px) {
  .cid-ta8pLZN22r .mbr-text {
    padding-right: 63%;
  }
}
@media (max-width: 767px) {
  .cid-ta8pLZN22r .mbr-text {
    padding-right: 40px;
  }
}
.cid-ta8pLZN22r .link {
  font-weight: 600;
  position: relative;
  margin-right: 73%;
  margin-right: 0;
}
@media (max-width: 1024px) {
  .cid-ta8pLZN22r .link {
    margin-right: 63%;
  }
}
@media (max-width: 767px) {
  .cid-ta8pLZN22r .link {
    margin-right: 40px;
  }
}
.cid-ta8pLZN22r .link::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: transform 0.35s cubic-bezier(0.23, 0.02, 0.15, 0.9);
}
.cid-sN2e9XVa50 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sN2e9XVa50 h2,
.cid-sN2e9XVa50 h3,
.cid-sN2e9XVa50 h4,
.cid-sN2e9XVa50 p {
  margin: 0;
}
.cid-sN2e9XVa50 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-sN2e9XVa50 .mbr-section-title {
  color: #08246f;
  margin-bottom: 10px;
}
.cid-sN2e9XVa50 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sN2eCcv8AK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sN2eCcv8AK h2,
.cid-sN2eCcv8AK h3,
.cid-sN2eCcv8AK h4,
.cid-sN2eCcv8AK h5 {
  margin: 0;
}
.cid-sN2eCcv8AK .mbr-section-title {
  color: #000000;
}
.cid-sN2eCcv8AK .mbr-card-title {
  text-align: center;
  color: #08246f;
}
.cid-sN2eCcv8AK .mbr-card-subtitle {
  text-align: center;
  color: #6b6b6b;
}
.cid-sN2eCcv8AK .image-container {
  min-height: 738px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(346px, 704px) minmax(153px, 332px) minmax(153px, 332px) minmax(153px, 332px);
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
  grid-template-areas: "img1 img2 img4 img5" "img1 img3 img4 img6";
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-sN2eCcv8AK .image-container {
    grid-template-columns: minmax(290px, 442px) minmax(290px, 442px);
    grid-template-rows: 924px 442px 442px 442px;
    grid-gap: 40px;
    grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img6 img5";
  }
}
@media (max-width: 680px) {
  .cid-sN2eCcv8AK .image-container {
    grid-template-columns: minmax(260px, 620px);
    grid-template-rows: 697px 329px 697px 329px 329px 329px;
    grid-gap: 40px;
    grid-template-areas: "img1" "img2" "img4" "img3" "img5" "img6";
  }
}
.cid-sN2eCcv8AK #img1 {
  grid-area: img1;
  background-image: url("../../../assets/images/smile-care-dental-3-1200x800.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img2 {
  grid-area: img2;
  background-image: url("../../../assets/images/pinkcloset-2-2000x1333.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img3 {
  grid-area: img3;
  background-image: url("../../../assets/images/delhi-residence-1-1-2000x1333.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img4 {
  grid-area: img4;
  background-image: url("../../../assets/images/visa-7-1500x1001.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img5 {
  grid-area: img5;
  background-image: url("../../../assets/images/cura-2-1600x1068.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK #img6 {
  grid-area: img6;
  background-image: url("../../../assets/images/ebony-ndl-2-1-2000x1462.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-sN2eCcv8AK .top-left,
.cid-sN2eCcv8AK .bottom-right {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.cid-sN2eCcv8AK .top-left::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .top-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .bottom-right::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .bottom-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #ffffff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-out;
}
.cid-sN2eCcv8AK .image-wrap:hover .text-wrap {
  opacity: 1;
}
.cid-sN2eCcv8AK .image-wrap:hover .top-left::before {
  height: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .top-left::after {
  width: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .bottom-right::before {
  height: 100%;
}
.cid-sN2eCcv8AK .image-wrap:hover .bottom-right::after {
  width: 100%;
}
.cid-ta9ecbiW2s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/master-bedroom-5-1800x1248.jpg");
}
.cid-ta9ecbiW2s .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-ta9ecbiW2s h2,
.cid-ta9ecbiW2s h3,
.cid-ta9ecbiW2s p {
  margin: 0;
}
.cid-ta9ecbiW2s .inner-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-ta9ecbiW2s .form-wrap {
  width: 70%;
}
@media (max-width: 1024px) {
  .cid-ta9ecbiW2s .form-wrap {
    width: 100%;
  }
}
.cid-ta9ecbiW2s .form-inner-wrap {
  width: 95%;
  max-width: 95%;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .cid-ta9ecbiW2s .form-inner-wrap {
    width: 100%;
    max-width: 100%;
  }
}
.cid-ta9ecbiW2s .text {
  display: flex;
  align-content: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  width: 30%;
}
@media (max-width: 1024px) {
  .cid-ta9ecbiW2s .text {
    width: 100%;
    padding-top: 50px;
  }
}
.cid-ta9ecbiW2s .heading {
  margin-bottom: 20px;
}
.cid-ta9ecbiW2s .mbr-section-title {
  color: #000000;
}
.cid-ta9ecbiW2s .mbr-main-text {
  color: #6b6b6b;
  font-weight: 300;
}
.cid-ta9ecbiW2s .mbr-section-subtitle {
  color: #000000;
  padding-right: 30%;
}
@media (max-width: 767px) {
  .cid-ta9ecbiW2s .mbr-section-subtitle {
    padding: 0;
  }
}
.cid-ta9ecbiW2s .mbr-sub-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-ta9ecbiW2s .mbr-contacts {
  color: #000000;
  margin-bottom: 10px;
}
.cid-ta9ecbiW2s form .mbr-section-btn {
  text-align: center;
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-ta9ecbiW2s textarea {
  width: 100%;
  padding: 11px 18px;
  border: 1px solid #000000;
  height: 134px;
  border-radius: 0;
}
.cid-ta9ecbiW2s input,
.cid-ta9ecbiW2s select {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 20px;
  padding: 11px 0;
  margin-right: 24px;
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: inherit;
  color: #6b6b6b;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
  cursor: pointer;
  transition: color 0.25s ease-out, background-color 0.25s ease-out, border-color 0.25s ease-out;
}
.cid-ta9ecbiW2s input:last-child,
.cid-ta9ecbiW2s select:last-child {
  margin-right: 0;
}
.cid-ta9ecbiW2s .form-check-input {
  padding: 0;
  border: 1px solid #000000;
}
.cid-ta9ecbiW2s .form-check-input:checked {
  padding: 0;
  background-color: #000000;
  border-color: #000000;
}
.cid-ta9ecbiW2s .form-control {
  color: #000000;
  border-radius: 0;
  outline: none;
}
.cid-ta9ecbiW2s .value {
  border: none;
}
.cid-ta9ecbiW2s input[type="range"] {
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
.cid-ta9ecbiW2s input[type="range"]::-moz-range-track {
  border: inherit;
  background: transparent;
}
.cid-ta9ecbiW2s input[type="range"]::-ms-track {
  border: inherit;
  background: transparent;
  color: transparent;
}
.cid-ta9ecbiW2s input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 1px;
}
.cid-ta9ecbiW2s input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #000000;
  margin-top: -6px;
}
.cid-ta9ecbiW2s input[type="range"]:focus {
  outline: none;
}
.cid-ta9ecbiW2s input[type="range"]:focus::-webkit-slider-thumb {
  background: #000000;
}
.cid-ta9ecbiW2s input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.cid-ta9ecbiW2s input[type="range"]::-ms-fill-lower {
  background: black;
}
.cid-ta8uOGuG5V {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-ta8uOGuG5V .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-ta8uOGuG5V .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-ta8uOGuG5V .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ta8uOGuG5V .info .col-6,
  .cid-ta8uOGuG5V .info .col-5 {
    width: 100%;
  }
  .cid-ta8uOGuG5V .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-ta8uOGuG5V .content .col-md-5 {
    width: 43%;
  }
  .cid-ta8uOGuG5V .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-ta8uOGuG5V .content .col-md-5 {
    width: 100%;
  }
  .cid-ta8uOGuG5V .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-ta8uOGuG5V .content {
    padding: 0;
  }
}
.cid-ta8uOGuG5V .mbr-brand {
  color: #08246f;
  font-weight: 600;
}
.cid-ta8uOGuG5V .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-ta8uOGuG5V .contacts {
  margin: 20px 0;
}
.cid-ta8uOGuG5V .contacts p {
  margin: 0;
}
.cid-ta8uOGuG5V .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ta8uOGuG5V .socials p {
  margin: 0 20px 0 0;
}
.cid-ta8uOGuG5V .socials-item .link {
  color: #000000;
}
.cid-ta8uOGuG5V .mbr-contacts {
  color: #000000;
}
.cid-ta8uOGuG5V .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-ta8uOGuG5V .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-ta8uOGuG5V .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-ta8uOGuG5V .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-ta8uOGuG5V .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-ta8uOGuG5V .item:first-child {
  margin-left: 0;
}
.cid-ta8uOGuG5V .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-ta8uOGuG5V .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-ta8uOGuG5V .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-ta8uOGuG5V .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-ta8uOGuG5V .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ta8uOGuG5V .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-ta8uOGuG5V .image-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease-out;
  background: rgba(255, 255, 255, 0);
  z-index: 5;
  pointer-events: none;
}
.cid-ta8uOGuG5V .item:hover {
  cursor: pointer;
}
.cid-ta8uOGuG5V .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-ta8uOGuG5V .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-ta8uOGuG5V .icon-wrap {
  width: 30%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 35%;
  left: 35%;
  transition: all 0.5s ease-out;
  opacity: 0;
  z-index: 3;
}
.cid-ta8uOGuG5V .mbr-iconfont {
  color: #ffffff;
}
.cid-ta8uOGuG5V .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-ta8uOGuG5V .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-ta8uOGuG5V .menu p {
  margin: 0 0 5px;
}
.cid-ta8uOGuG5V h6 {
  font-size: 21px;
}
.cid-ta8uOGuG5V .menu-title {
  margin-bottom: 10px;
}
.cid-ta8uOGuG5V .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-ta8uOGuG5V .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-ta8uOGuG5V .copyright > p {
  text-align: center;
  color: #000000;
}
