body {
  font-family: 'Epilogue', sans-serif;
}
.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: #000000 !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: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #000000 !important;
  border-color: #000000 !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: #000000 !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: #000000 !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: #000000;
}
.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: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.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: #000000 !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: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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='%23000000' %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-twkOWMmMBU {
  z-index: 1000;
  width: 100%;
}
.cid-twkOWMmMBU nav.navbar {
  position: fixed;
}
.cid-twkOWMmMBU .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-twkOWMmMBU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-twkOWMmMBU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-twkOWMmMBU .dropdown-item:hover,
.cid-twkOWMmMBU .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-twkOWMmMBU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-twkOWMmMBU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-twkOWMmMBU .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-twkOWMmMBU .nav-item {
  margin: 0 31px;
}
.cid-twkOWMmMBU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-twkOWMmMBU .nav-link {
  position: relative;
}
.cid-twkOWMmMBU .nav-link:hover,
.cid-twkOWMmMBU .nav-link:focus,
.cid-twkOWMmMBU .nav-link:active {
  color: #ee3102 !important;
}
.cid-twkOWMmMBU .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU .container {
    flex-wrap: inherit;
  }
}
.cid-twkOWMmMBU .navbar-caption:hover,
.cid-twkOWMmMBU .navbar-caption:focus,
.cid-twkOWMmMBU .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-twkOWMmMBU .dropdown-menu,
.cid-twkOWMmMBU .navbar.opened {
  background: #ffffff !important;
}
.cid-twkOWMmMBU .nav-item:focus,
.cid-twkOWMmMBU .nav-link:focus {
  outline: none;
}
.cid-twkOWMmMBU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-twkOWMmMBU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-twkOWMmMBU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-twkOWMmMBU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-twkOWMmMBU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-twkOWMmMBU .navbar.opened {
  transition: all 0.3s;
}
.cid-twkOWMmMBU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-twkOWMmMBU .navbar .navbar-logo img {
  width: auto;
}
.cid-twkOWMmMBU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-twkOWMmMBU .navbar.collapsed {
  justify-content: center;
}
.cid-twkOWMmMBU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-twkOWMmMBU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-twkOWMmMBU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-twkOWMmMBU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-twkOWMmMBU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-twkOWMmMBU .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-twkOWMmMBU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-twkOWMmMBU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-twkOWMmMBU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-twkOWMmMBU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-twkOWMmMBU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-twkOWMmMBU .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-twkOWMmMBU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-twkOWMmMBU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-twkOWMmMBU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-twkOWMmMBU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-twkOWMmMBU .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-twkOWMmMBU .navbar.navbar-short {
  min-height: 60px;
}
.cid-twkOWMmMBU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-twkOWMmMBU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-twkOWMmMBU .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-twkOWMmMBU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twkOWMmMBU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twkOWMmMBU .dropdown-item.active,
.cid-twkOWMmMBU .dropdown-item:active {
  background-color: transparent;
}
.cid-twkOWMmMBU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-twkOWMmMBU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-twkOWMmMBU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-twkOWMmMBU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-twkOWMmMBU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-twkOWMmMBU .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-twkOWMmMBU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twkOWMmMBU ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-twkOWMmMBU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-twkOWMmMBU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-twkOWMmMBU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-twkOWMmMBU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twkOWMmMBU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-twkOWMmMBU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-twkOWMmMBU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twkOWMmMBU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-twkOWMmMBU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-twkOWMmMBU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-twkOWMmMBU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-twkOWMmMBU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-twkOWMmMBU .navbar {
    height: 70px;
  }
  .cid-twkOWMmMBU .navbar.opened {
    height: auto;
  }
  .cid-twkOWMmMBU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twkOWMmMBU .socials-wrap {
  flex-shrink: 0;
}
.cid-twkOWMmMBU .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-twkOWMmMBU .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-twkOWMmMBU .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-twkOWMmMBU .socials-item .link {
  color: #000000;
}
.cid-txqsCx8E06 {
  padding-top: 350px;
  background-image: url("../../../assets/images/conjunt2-2000x1763.png");
}
.cid-txqyjeWoB0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txqyjeWoB0 h2,
.cid-txqyjeWoB0 h3,
.cid-txqyjeWoB0 h4,
.cid-txqyjeWoB0 p {
  margin: 0;
}
.cid-txqyjeWoB0 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txqyjeWoB0 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txqyjeWoB0 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txqyjeWoB0 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txqyjeWoB0 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txqyjeWoB0 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-tx5DGK7Eni {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/coleccion3-2000x1336.jpg");
}
.cid-tx5DGK7Eni h2,
.cid-tx5DGK7Eni h4,
.cid-tx5DGK7Eni p {
  margin: 0;
}
.cid-tx5DGK7Eni img {
  width: 100%;
  height: auto;
}
.cid-tx5DGK7Eni .text-elements-wrap {
  width: 88.5%;
}
@media (max-width: 767px) {
  .cid-tx5DGK7Eni .text-elements-wrap {
    width: 100%;
  }
}
.cid-tx5DGK7Eni .text-elements {
  padding-left: 12%;
}
@media (max-width: 1024px) {
  .cid-tx5DGK7Eni .text-elements {
    padding-top: 12%;
    padding-left: 0;
  }
}
@media (max-width: 1024px) {
  .cid-tx5DGK7Eni .col-md-7,
  .cid-tx5DGK7Eni .col-md-5 {
    width: 100%;
  }
}
.cid-tx5DGK7Eni .mbr-section-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-tx5DGK7Eni .mbr-section-subtitle {
  margin-bottom: 6px;
}
.cid-tx5DGK7Eni .mbr-text {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tx5DGK7Eni .link-wrap {
  padding-top: 25px;
}
.cid-tx5DGK7Eni .link {
  font-weight: 600;
  position: relative;
}
.cid-tx5DGK7Eni .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-txqyT5fQ8N {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5480712-1-2000x1333.jpeg");
}
.cid-txqyT5fQ8N h2,
.cid-txqyT5fQ8N h3,
.cid-txqyT5fQ8N h4,
.cid-txqyT5fQ8N p {
  margin: 0;
}
.cid-txqyT5fQ8N .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txqyT5fQ8N .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txqyT5fQ8N .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txqyT5fQ8N .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txqyT5fQ8N .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txqyT5fQ8N .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-twpbl1toMF {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twpbl1toMF h2,
.cid-twpbl1toMF h3,
.cid-twpbl1toMF h4,
.cid-twpbl1toMF h5 {
  margin: 0;
}
.cid-twpbl1toMF .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-twpbl1toMF .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-twpbl1toMF .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-twpbl1toMF .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-twpbl1toMF .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-twpbl1toMF .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-twpbl1toMF .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-twpbl1toMF .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-twpbl1toMF .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-twpbl1toMF .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-twpbl1toMF .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-twpbl1toMF .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-twpbl1toMF .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-twpbl1toMF .card:hover {
  cursor: pointer;
}
.cid-twpbl1toMF .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-twpbl1toMF .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-twpbl1toMF .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-twpbl1toMF .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-twphJ3Sfyb {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twphJ3Sfyb h2,
.cid-twphJ3Sfyb h3,
.cid-twphJ3Sfyb h4,
.cid-twphJ3Sfyb h5 {
  margin: 0;
}
.cid-twphJ3Sfyb .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-twphJ3Sfyb .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-twphJ3Sfyb .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-twphJ3Sfyb .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-twphJ3Sfyb .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-twphJ3Sfyb .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-twphJ3Sfyb .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-twphJ3Sfyb .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-twphJ3Sfyb .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-twphJ3Sfyb .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-twphJ3Sfyb .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-twphJ3Sfyb .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-twphJ3Sfyb .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-twphJ3Sfyb .card:hover {
  cursor: pointer;
}
.cid-twphJ3Sfyb .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-twphJ3Sfyb .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-twphJ3Sfyb .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-twphJ3Sfyb .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-twphVBUNh6 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-twphVBUNh6 h2,
.cid-twphVBUNh6 h3,
.cid-twphVBUNh6 h4,
.cid-twphVBUNh6 h5 {
  margin: 0;
}
.cid-twphVBUNh6 .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-twphVBUNh6 .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-twphVBUNh6 .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-twphVBUNh6 .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-twphVBUNh6 .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-twphVBUNh6 .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-twphVBUNh6 .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-twphVBUNh6 .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-twphVBUNh6 .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-twphVBUNh6 .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-twphVBUNh6 .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-twphVBUNh6 .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-twphVBUNh6 .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-twphVBUNh6 .card:hover {
  cursor: pointer;
}
.cid-twphVBUNh6 .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-twphVBUNh6 .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-twphVBUNh6 .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-twphVBUNh6 .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-twu8BkyVQd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/3984185-2000x1333.jpg");
}
.cid-twu8BkyVQd .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-twu8BkyVQd .mbr-section-title {
  color: #000000;
  margin-bottom: 20.4px;
}
.cid-twu8BkyVQd .animation-box {
  position: relative;
  width: 78px;
  height: 86px;
}
@keyframes zoom-1 {
  0%,
  10% {
    transform: scale(0) rotate(0);
  }
  30%,
  32% {
    transform: scale(0.6) rotate(10deg);
  }
  100%,
  85% {
    transform: scale(0) rotate(60deg);
  }
}
@keyframes zoom-2 {
  0%,
  15% {
    transform: scale(0) rotate(0);
  }
  50%,
  54% {
    transform: scale(0.4) rotate(0);
  }
  100%,
  82% {
    transform: scale(0) rotate(80deg);
  }
}
.cid-twu8BkyVQd .star {
  color: #2a8eba;
  fill: currentColor;
  overflow: hidden;
}
.cid-twu8BkyVQd .star:nth-of-type(2) {
  position: absolute;
  top: -35px;
  left: 50px;
  transform: scale(0);
  animation: zoom-1 3.1s infinite;
}
.cid-twu8BkyVQd .star:nth-of-type(3) {
  position: absolute;
  top: -45px;
  left: -50px;
  animation: zoom-2 3.1s infinite;
}
.cid-twpbiQGg1M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twpbiQGg1M .content {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-twpbiQGg1M .content {
    flex-wrap: wrap;
  }
}
.cid-twpbiQGg1M h2,
.cid-twpbiQGg1M h4,
.cid-twpbiQGg1M h5,
.cid-twpbiQGg1M p {
  margin: 0;
}
.cid-twpbiQGg1M .items {
  margin-right: 79px;
  display: flex;
  flex-wrap: wrap;
  width: 66.66667%;
}
@media (max-width: 1024px) {
  .cid-twpbiQGg1M .items {
    width: 100%;
    margin-right: 0;
    margin-bottom: 54px;
  }
}
.cid-twpbiQGg1M .item-container {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .cid-twpbiQGg1M .item-container {
    align-content: flex-start;
  }
}
@media (max-width: 680px) {
  .cid-twpbiQGg1M .item-container {
    margin: 0;
  }
}
.cid-twpbiQGg1M .item {
  width: 33.33333%;
  height: 33.33333%;
  padding: 0 15px;
  margin: 0 0 30px;
}
.cid-twpbiQGg1M .item .item-img {
  height: 100%;
}
.cid-twpbiQGg1M .item .item-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-twpbiQGg1M .item {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-twpbiQGg1M .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-twpbiQGg1M .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-twpbiQGg1M .text {
  width: 33%;
}
@media (max-width: 1024px) {
  .cid-twpbiQGg1M .text {
    width: 100%;
  }
}
.cid-twpbiQGg1M .mbr-section-title {
  color: #000000;
}
.cid-twpbiQGg1M .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-twpbiQGg1M .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-twpbiQGg1M .info {
  margin-top: 40px;
  margin-bottom: 20px;
  flex-direction: column;
}
.cid-twpbiQGg1M .info-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.cid-twpbiQGg1M .mbr-info-title {
  color: #000000;
  margin: 5px 14px 5px 0;
}
.cid-twpbiQGg1M .mbr-details {
  color: #6b6b6b;
  margin: 5px 0;
}
.cid-twpbiQGg1M .link {
  position: relative;
  margin-right: 5px;
}
.cid-twpbiQGg1M .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-tGA020ZcX2 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-tGA020ZcX2 .mbr-section-head {
    padding: 0 18px;
  }
}
.cid-tGA020ZcX2 .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tGA020ZcX2 .people {
    padding: 0;
  }
}
.cid-tGA020ZcX2 .mbr-section-title {
  color: #000000;
  margin: 0;
}
.cid-tGA020ZcX2 .mbr-section-subtitle {
  color: #6b6b6b;
  margin: 0;
}
.cid-tGA020ZcX2 .mbr-text {
  color: #6b6b6b;
  margin: 10px auto;
}
.cid-tGA020ZcX2 .item-name {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-tGA020ZcX2 h3 {
  margin: 0;
}
.cid-tGA020ZcX2 .occupation {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-tGA020ZcX2 .item {
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-tGA020ZcX2 .item-caption {
  padding-top: 14px;
  background: transparent;
  background: #ffffff;
}
.cid-tGA020ZcX2 .item-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cid-tGA020ZcX2 .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-tGA020ZcX2 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGA020ZcX2 .item:hover {
  cursor: pointer;
}
.cid-tGA020ZcX2 .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-tJ22VgagnG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tJ22VgagnG .mbr-section-head {
    padding: 0 18px;
  }
}
.cid-tJ22VgagnG .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tJ22VgagnG .people {
    padding: 0;
  }
}
.cid-tJ22VgagnG .mbr-section-title {
  color: #000000;
  margin: 0;
}
.cid-tJ22VgagnG .mbr-section-subtitle {
  color: #6b6b6b;
  margin: 0;
}
.cid-tJ22VgagnG .mbr-text {
  color: #6b6b6b;
  margin: 10px auto;
}
.cid-tJ22VgagnG .item-name {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-tJ22VgagnG h3 {
  margin: 0;
}
.cid-tJ22VgagnG .occupation {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-tJ22VgagnG .item {
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-tJ22VgagnG .item-caption {
  padding-top: 14px;
  background: transparent;
}
.cid-tJ22VgagnG .item-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cid-tJ22VgagnG .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-tJ22VgagnG .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tJ22VgagnG .item:hover {
  cursor: pointer;
}
.cid-tJ22VgagnG .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-twkOPrp5Vb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-twkOPrp5Vb .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-twkOPrp5Vb .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-twkOPrp5Vb .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-twkOPrp5Vb .info .col-6,
  .cid-twkOPrp5Vb .info .col-5 {
    width: 100%;
  }
  .cid-twkOPrp5Vb .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-twkOPrp5Vb .content .col-md-5 {
    width: 43%;
  }
  .cid-twkOPrp5Vb .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-twkOPrp5Vb .content .col-md-5 {
    width: 100%;
  }
  .cid-twkOPrp5Vb .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-twkOPrp5Vb .content {
    padding: 0;
  }
}
.cid-twkOPrp5Vb .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-twkOPrp5Vb .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-twkOPrp5Vb .contacts {
  margin: 20px 0;
}
.cid-twkOPrp5Vb .contacts p {
  margin: 0;
}
.cid-twkOPrp5Vb .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-twkOPrp5Vb .socials p {
  margin: 0 20px 0 0;
}
.cid-twkOPrp5Vb .socials-item .link {
  color: #000000;
}
.cid-twkOPrp5Vb .mbr-contacts {
  color: #000000;
}
.cid-twkOPrp5Vb .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-twkOPrp5Vb .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-twkOPrp5Vb .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-twkOPrp5Vb .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-twkOPrp5Vb .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-twkOPrp5Vb .item:first-child {
  margin-left: 0;
}
.cid-twkOPrp5Vb .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-twkOPrp5Vb .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-twkOPrp5Vb .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-twkOPrp5Vb .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-twkOPrp5Vb .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-twkOPrp5Vb .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-twkOPrp5Vb .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-twkOPrp5Vb .item:hover {
  cursor: pointer;
}
.cid-twkOPrp5Vb .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-twkOPrp5Vb .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-twkOPrp5Vb .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-twkOPrp5Vb .mbr-iconfont {
  color: #ffffff;
}
.cid-twkOPrp5Vb .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-twkOPrp5Vb .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-twkOPrp5Vb .menu p {
  margin: 0 0 5px;
}
.cid-twkOPrp5Vb h6 {
  font-size: 21px;
}
.cid-twkOPrp5Vb .menu-title {
  margin-bottom: 10px;
}
.cid-twkOPrp5Vb .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-twkOPrp5Vb .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-twkOPrp5Vb .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-ueP1DNK6rg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ueP1DNK6rg h2,
.cid-ueP1DNK6rg h3,
.cid-ueP1DNK6rg h4,
.cid-ueP1DNK6rg h5 {
  margin: 0;
}
.cid-ueP1DNK6rg .mbr-section-head {
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .cid-ueP1DNK6rg .mbr-section-head {
    padding: 0 35px;
  }
}
.cid-ueP1DNK6rg .mbr-section-title {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-ueP1DNK6rg .mbr-section-subtitle {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-ueP1DNK6rg .card-container {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.cid-ueP1DNK6rg .card {
  width: 20%;
  padding: 0 15px;
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-ueP1DNK6rg .card:nth-child(2n + 1) {
  margin-top: 57px;
}
@media (max-width: 1024px) {
  .cid-ueP1DNK6rg .card:nth-child(2n + 1) {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .cid-ueP1DNK6rg .card {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-ueP1DNK6rg .card {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ueP1DNK6rg .image-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.cid-ueP1DNK6rg .image-wrap::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-ueP1DNK6rg .image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-ueP1DNK6rg .card:hover {
  cursor: pointer;
}
.cid-ueP1DNK6rg .card:hover .image-wrap::before {
  opacity: 0.7;
}
.cid-ueP1DNK6rg .mbr-card-title {
  color: #000000;
  margin-top: 13px;
  margin-bottom: 4px;
}
.cid-ueP1DNK6rg .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: -5px;
  margin-bottom: 14px;
}
.cid-ueP1DNK6rg .item-caption {
  padding: 16px 0 8px;
  background: transparent;
}
.cid-txyt25ne1p.popup-builder {
  background-color: #ffffff;
}
.cid-txyt25ne1p.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-txyt25ne1p.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-txyt25ne1p .modal-content,
.cid-txyt25ne1p .modal-dialog {
  height: auto;
}
.cid-txyt25ne1p .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-txyt25ne1p .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-txyt25ne1p .form-wrapper .mbr-form .form-group,
  .cid-txyt25ne1p .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-txyt25ne1p .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-txyt25ne1p .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txyt25ne1p .mbr-text {
  text-align: center;
}
.cid-txyt25ne1p .pt-0 {
  padding-top: 0 !important;
}
.cid-txyt25ne1p .pb-0 {
  padding-bottom: 0 !important;
}
.cid-txyt25ne1p .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-txyt25ne1p .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-txyt25ne1p .modal-open {
  overflow: hidden;
}
.cid-txyt25ne1p .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-txyt25ne1p .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-txyt25ne1p .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-txyt25ne1p .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-txyt25ne1p .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-txyt25ne1p .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-txyt25ne1p .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-txyt25ne1p .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-txyt25ne1p .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-txyt25ne1p .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-txyt25ne1p .modal-backdrop.fade {
  opacity: 0;
}
.cid-txyt25ne1p .modal-backdrop.show {
  opacity: .5;
}
.cid-txyt25ne1p .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-txyt25ne1p .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-txyt25ne1p .modal-header {
    padding: 1rem;
  }
}
.cid-txyt25ne1p .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-txyt25ne1p .modal-header .close svg {
  fill: #353535;
}
.cid-txyt25ne1p .modal-header .close:hover {
  opacity: 1;
}
.cid-txyt25ne1p .modal-header .close:focus {
  outline: none;
}
.cid-txyt25ne1p .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-txyt25ne1p .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-txyt25ne1p .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txyt25ne1p .modal-body {
    padding: 1rem;
  }
}
.cid-txyt25ne1p .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-txyt25ne1p .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-txyt25ne1p .modal-footer {
    padding: 1rem;
  }
}
.cid-txyt25ne1p .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-txyt25ne1p .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-txyt25ne1p .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-txyt25ne1p .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-txyt25ne1p .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-txyt25ne1p .modal-lg,
  .cid-txyt25ne1p .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-txyt25ne1p .modal-xl {
    max-width: 1140px;
  }
}
.cid-txyt25ne1p .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-txyt25ne1p .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-txyt25ne1p .form-group {
  margin-bottom: 1rem;
}
.cid-txyt25ne1p .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-txyt25ne1p .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-txyt25ne1p .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-txyt25ne1p .mbr-section-btn {
  margin: 0;
}
.cid-txyt25ne1p .mbr-section-btn .btn {
  margin: 0;
}
.cid-txqFWcD8nN {
  z-index: 1000;
  width: 100%;
}
.cid-txqFWcD8nN nav.navbar {
  position: fixed;
}
.cid-txqFWcD8nN .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-txqFWcD8nN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txqFWcD8nN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txqFWcD8nN .dropdown-item:hover,
.cid-txqFWcD8nN .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txqFWcD8nN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txqFWcD8nN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txqFWcD8nN .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txqFWcD8nN .nav-item {
  margin: 0 31px;
}
.cid-txqFWcD8nN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txqFWcD8nN .nav-link {
  position: relative;
}
.cid-txqFWcD8nN .nav-link:hover,
.cid-txqFWcD8nN .nav-link:focus,
.cid-txqFWcD8nN .nav-link:active {
  color: #ee3102 !important;
}
.cid-txqFWcD8nN .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN .container {
    flex-wrap: inherit;
  }
}
.cid-txqFWcD8nN .navbar-caption:hover,
.cid-txqFWcD8nN .navbar-caption:focus,
.cid-txqFWcD8nN .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txqFWcD8nN .dropdown-menu,
.cid-txqFWcD8nN .navbar.opened {
  background: #ffffff !important;
}
.cid-txqFWcD8nN .nav-item:focus,
.cid-txqFWcD8nN .nav-link:focus {
  outline: none;
}
.cid-txqFWcD8nN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txqFWcD8nN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txqFWcD8nN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txqFWcD8nN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txqFWcD8nN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txqFWcD8nN .navbar.opened {
  transition: all 0.3s;
}
.cid-txqFWcD8nN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txqFWcD8nN .navbar .navbar-logo img {
  width: auto;
}
.cid-txqFWcD8nN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txqFWcD8nN .navbar.collapsed {
  justify-content: center;
}
.cid-txqFWcD8nN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txqFWcD8nN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txqFWcD8nN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txqFWcD8nN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txqFWcD8nN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txqFWcD8nN .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-txqFWcD8nN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txqFWcD8nN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txqFWcD8nN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txqFWcD8nN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txqFWcD8nN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txqFWcD8nN .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-txqFWcD8nN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txqFWcD8nN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txqFWcD8nN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txqFWcD8nN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txqFWcD8nN .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txqFWcD8nN .navbar.navbar-short {
  min-height: 60px;
}
.cid-txqFWcD8nN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txqFWcD8nN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txqFWcD8nN .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-txqFWcD8nN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txqFWcD8nN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txqFWcD8nN .dropdown-item.active,
.cid-txqFWcD8nN .dropdown-item:active {
  background-color: transparent;
}
.cid-txqFWcD8nN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txqFWcD8nN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txqFWcD8nN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txqFWcD8nN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txqFWcD8nN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txqFWcD8nN .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txqFWcD8nN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txqFWcD8nN ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txqFWcD8nN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txqFWcD8nN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txqFWcD8nN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txqFWcD8nN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txqFWcD8nN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txqFWcD8nN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txqFWcD8nN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txqFWcD8nN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txqFWcD8nN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txqFWcD8nN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txqFWcD8nN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txqFWcD8nN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txqFWcD8nN .navbar {
    height: 70px;
  }
  .cid-txqFWcD8nN .navbar.opened {
    height: auto;
  }
  .cid-txqFWcD8nN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txqFWcD8nN .socials-wrap {
  flex-shrink: 0;
}
.cid-txqFWcD8nN .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txqFWcD8nN .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txqFWcD8nN .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txqFWcD8nN .socials-item .link {
  color: #000000;
}
.cid-txqHdaowb3 {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txqHdaowb3 .row {
  flex-direction: row-reverse;
}
.cid-txqHdaowb3 .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txqHdaowb3 .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txqHdaowb3 .card {
    margin-bottom: 2rem !important;
  }
  .cid-txqHdaowb3 .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txqHdaowb3 .link-wrap {
    align-items: center;
  }
}
.cid-txqHdaowb3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txqHdaowb3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txqHdaowb3 .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txqHdaowb3 .btn:hover,
.cid-txqHdaowb3 .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txqHdaowb3 .card-title {
  color: #000000;
}
.cid-txqHdaowb3 .mbr-subtile {
  color: #000000;
}
.cid-txqHdaowb3 .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txqHdaowb3 .padding {
    padding-right: 110px;
  }
}
.cid-tGzrUemIwu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzrUemIwu .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzrUemIwu .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzrUemIwu .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzrUemIwu .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzrUemIwu .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzrUemIwu .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzrUemIwu .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txqUEoztMu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txqUEoztMu h2,
.cid-txqUEoztMu h3,
.cid-txqUEoztMu h4,
.cid-txqUEoztMu p {
  margin: 0;
}
.cid-txqUEoztMu .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txqUEoztMu .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txqUEoztMu .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txqUEoztMu .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txqUEoztMu .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txqUEoztMu .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txqUyHwDnK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txqUyHwDnK .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txqUyHwDnK .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txqUyHwDnK .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txqUyHwDnK .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txqUyHwDnK .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txqUyHwDnK .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txqUyHwDnK .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txqFWjzNpy {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txqFWjzNpy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txqFWjzNpy .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txqFWjzNpy .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txqFWjzNpy .info .col-6,
  .cid-txqFWjzNpy .info .col-5 {
    width: 100%;
  }
  .cid-txqFWjzNpy .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txqFWjzNpy .content .col-md-5 {
    width: 43%;
  }
  .cid-txqFWjzNpy .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txqFWjzNpy .content .col-md-5 {
    width: 100%;
  }
  .cid-txqFWjzNpy .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txqFWjzNpy .content {
    padding: 0;
  }
}
.cid-txqFWjzNpy .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txqFWjzNpy .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txqFWjzNpy .contacts {
  margin: 20px 0;
}
.cid-txqFWjzNpy .contacts p {
  margin: 0;
}
.cid-txqFWjzNpy .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txqFWjzNpy .socials p {
  margin: 0 20px 0 0;
}
.cid-txqFWjzNpy .socials-item .link {
  color: #000000;
}
.cid-txqFWjzNpy .mbr-contacts {
  color: #000000;
}
.cid-txqFWjzNpy .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txqFWjzNpy .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txqFWjzNpy .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txqFWjzNpy .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txqFWjzNpy .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txqFWjzNpy .item:first-child {
  margin-left: 0;
}
.cid-txqFWjzNpy .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txqFWjzNpy .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txqFWjzNpy .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txqFWjzNpy .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txqFWjzNpy .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txqFWjzNpy .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txqFWjzNpy .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-txqFWjzNpy .item:hover {
  cursor: pointer;
}
.cid-txqFWjzNpy .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txqFWjzNpy .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txqFWjzNpy .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-txqFWjzNpy .mbr-iconfont {
  color: #ffffff;
}
.cid-txqFWjzNpy .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txqFWjzNpy .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txqFWjzNpy .menu p {
  margin: 0 0 5px;
}
.cid-txqFWjzNpy h6 {
  font-size: 21px;
}
.cid-txqFWjzNpy .menu-title {
  margin-bottom: 10px;
}
.cid-txqFWjzNpy .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txqFWjzNpy .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txqFWjzNpy .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txr8QV6CWC {
  z-index: 1000;
  width: 100%;
}
.cid-txr8QV6CWC nav.navbar {
  position: fixed;
}
.cid-txr8QV6CWC .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-txr8QV6CWC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txr8QV6CWC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txr8QV6CWC .dropdown-item:hover,
.cid-txr8QV6CWC .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txr8QV6CWC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txr8QV6CWC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txr8QV6CWC .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txr8QV6CWC .nav-item {
  margin: 0 31px;
}
.cid-txr8QV6CWC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txr8QV6CWC .nav-link {
  position: relative;
}
.cid-txr8QV6CWC .nav-link:hover,
.cid-txr8QV6CWC .nav-link:focus,
.cid-txr8QV6CWC .nav-link:active {
  color: #ee3102 !important;
}
.cid-txr8QV6CWC .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC .container {
    flex-wrap: inherit;
  }
}
.cid-txr8QV6CWC .navbar-caption:hover,
.cid-txr8QV6CWC .navbar-caption:focus,
.cid-txr8QV6CWC .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txr8QV6CWC .dropdown-menu,
.cid-txr8QV6CWC .navbar.opened {
  background: #ffffff !important;
}
.cid-txr8QV6CWC .nav-item:focus,
.cid-txr8QV6CWC .nav-link:focus {
  outline: none;
}
.cid-txr8QV6CWC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txr8QV6CWC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txr8QV6CWC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txr8QV6CWC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txr8QV6CWC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txr8QV6CWC .navbar.opened {
  transition: all 0.3s;
}
.cid-txr8QV6CWC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txr8QV6CWC .navbar .navbar-logo img {
  width: auto;
}
.cid-txr8QV6CWC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txr8QV6CWC .navbar.collapsed {
  justify-content: center;
}
.cid-txr8QV6CWC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txr8QV6CWC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txr8QV6CWC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txr8QV6CWC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txr8QV6CWC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txr8QV6CWC .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-txr8QV6CWC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txr8QV6CWC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txr8QV6CWC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txr8QV6CWC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txr8QV6CWC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txr8QV6CWC .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-txr8QV6CWC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txr8QV6CWC .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txr8QV6CWC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txr8QV6CWC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txr8QV6CWC .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txr8QV6CWC .navbar.navbar-short {
  min-height: 60px;
}
.cid-txr8QV6CWC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txr8QV6CWC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txr8QV6CWC .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-txr8QV6CWC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txr8QV6CWC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txr8QV6CWC .dropdown-item.active,
.cid-txr8QV6CWC .dropdown-item:active {
  background-color: transparent;
}
.cid-txr8QV6CWC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txr8QV6CWC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txr8QV6CWC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txr8QV6CWC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txr8QV6CWC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txr8QV6CWC .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txr8QV6CWC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txr8QV6CWC ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txr8QV6CWC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txr8QV6CWC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txr8QV6CWC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txr8QV6CWC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txr8QV6CWC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txr8QV6CWC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txr8QV6CWC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txr8QV6CWC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txr8QV6CWC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txr8QV6CWC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txr8QV6CWC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txr8QV6CWC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txr8QV6CWC .navbar {
    height: 70px;
  }
  .cid-txr8QV6CWC .navbar.opened {
    height: auto;
  }
  .cid-txr8QV6CWC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txr8QV6CWC .socials-wrap {
  flex-shrink: 0;
}
.cid-txr8QV6CWC .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txr8QV6CWC .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txr8QV6CWC .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txr8QV6CWC .socials-item .link {
  color: #000000;
}
.cid-txr8QVGEho {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txr8QVGEho .row {
  flex-direction: row-reverse;
}
.cid-txr8QVGEho .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txr8QVGEho .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txr8QVGEho .card {
    margin-bottom: 2rem !important;
  }
  .cid-txr8QVGEho .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txr8QVGEho .link-wrap {
    align-items: center;
  }
}
.cid-txr8QVGEho .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txr8QVGEho .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txr8QVGEho .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txr8QVGEho .btn:hover,
.cid-txr8QVGEho .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txr8QVGEho .card-title {
  color: #000000;
}
.cid-txr8QVGEho .mbr-subtile {
  color: #000000;
}
.cid-txr8QVGEho .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txr8QVGEho .padding {
    padding-right: 110px;
  }
}
.cid-tGzHWSkJyq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzHWSkJyq .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzHWSkJyq .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzHWSkJyq .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzHWSkJyq .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzHWSkJyq .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzHWSkJyq .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzHWSkJyq .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txr8QWcPhu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txr8QWcPhu h2,
.cid-txr8QWcPhu h3,
.cid-txr8QWcPhu h4,
.cid-txr8QWcPhu p {
  margin: 0;
}
.cid-txr8QWcPhu .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txr8QWcPhu .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txr8QWcPhu .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txr8QWcPhu .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txr8QWcPhu .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txr8QWcPhu .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txr8QWx1Qe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txr8QWx1Qe .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txr8QWx1Qe .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txr8QWx1Qe .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txr8QWx1Qe .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txr8QWx1Qe .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txr8QWx1Qe .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txr8QWx1Qe .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txr8QWSOci {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txr8QWSOci .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txr8QWSOci .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txr8QWSOci .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txr8QWSOci .info .col-6,
  .cid-txr8QWSOci .info .col-5 {
    width: 100%;
  }
  .cid-txr8QWSOci .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txr8QWSOci .content .col-md-5 {
    width: 43%;
  }
  .cid-txr8QWSOci .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txr8QWSOci .content .col-md-5 {
    width: 100%;
  }
  .cid-txr8QWSOci .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txr8QWSOci .content {
    padding: 0;
  }
}
.cid-txr8QWSOci .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txr8QWSOci .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txr8QWSOci .contacts {
  margin: 20px 0;
}
.cid-txr8QWSOci .contacts p {
  margin: 0;
}
.cid-txr8QWSOci .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txr8QWSOci .socials p {
  margin: 0 20px 0 0;
}
.cid-txr8QWSOci .socials-item .link {
  color: #000000;
}
.cid-txr8QWSOci .mbr-contacts {
  color: #000000;
}
.cid-txr8QWSOci .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txr8QWSOci .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txr8QWSOci .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txr8QWSOci .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txr8QWSOci .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txr8QWSOci .item:first-child {
  margin-left: 0;
}
.cid-txr8QWSOci .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txr8QWSOci .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txr8QWSOci .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txr8QWSOci .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txr8QWSOci .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txr8QWSOci .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txr8QWSOci .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-txr8QWSOci .item:hover {
  cursor: pointer;
}
.cid-txr8QWSOci .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txr8QWSOci .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txr8QWSOci .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-txr8QWSOci .mbr-iconfont {
  color: #ffffff;
}
.cid-txr8QWSOci .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txr8QWSOci .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txr8QWSOci .menu p {
  margin: 0 0 5px;
}
.cid-txr8QWSOci h6 {
  font-size: 21px;
}
.cid-txr8QWSOci .menu-title {
  margin-bottom: 10px;
}
.cid-txr8QWSOci .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txr8QWSOci .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txr8QWSOci .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrbu65ONt {
  z-index: 1000;
  width: 100%;
}
.cid-txrbu65ONt nav.navbar {
  position: fixed;
}
.cid-txrbu65ONt .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-txrbu65ONt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrbu65ONt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrbu65ONt .dropdown-item:hover,
.cid-txrbu65ONt .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrbu65ONt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrbu65ONt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrbu65ONt .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrbu65ONt .nav-item {
  margin: 0 31px;
}
.cid-txrbu65ONt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrbu65ONt .nav-link {
  position: relative;
}
.cid-txrbu65ONt .nav-link:hover,
.cid-txrbu65ONt .nav-link:focus,
.cid-txrbu65ONt .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrbu65ONt .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt .container {
    flex-wrap: inherit;
  }
}
.cid-txrbu65ONt .navbar-caption:hover,
.cid-txrbu65ONt .navbar-caption:focus,
.cid-txrbu65ONt .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrbu65ONt .dropdown-menu,
.cid-txrbu65ONt .navbar.opened {
  background: #ffffff !important;
}
.cid-txrbu65ONt .nav-item:focus,
.cid-txrbu65ONt .nav-link:focus {
  outline: none;
}
.cid-txrbu65ONt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrbu65ONt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrbu65ONt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrbu65ONt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrbu65ONt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrbu65ONt .navbar.opened {
  transition: all 0.3s;
}
.cid-txrbu65ONt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrbu65ONt .navbar .navbar-logo img {
  width: auto;
}
.cid-txrbu65ONt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrbu65ONt .navbar.collapsed {
  justify-content: center;
}
.cid-txrbu65ONt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrbu65ONt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrbu65ONt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrbu65ONt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrbu65ONt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrbu65ONt .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-txrbu65ONt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrbu65ONt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrbu65ONt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrbu65ONt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrbu65ONt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrbu65ONt .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-txrbu65ONt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrbu65ONt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrbu65ONt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrbu65ONt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrbu65ONt .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrbu65ONt .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrbu65ONt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrbu65ONt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrbu65ONt .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-txrbu65ONt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrbu65ONt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrbu65ONt .dropdown-item.active,
.cid-txrbu65ONt .dropdown-item:active {
  background-color: transparent;
}
.cid-txrbu65ONt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrbu65ONt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrbu65ONt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrbu65ONt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrbu65ONt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrbu65ONt .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrbu65ONt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrbu65ONt ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrbu65ONt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrbu65ONt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrbu65ONt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrbu65ONt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrbu65ONt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrbu65ONt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrbu65ONt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrbu65ONt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrbu65ONt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrbu65ONt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrbu65ONt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrbu65ONt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrbu65ONt .navbar {
    height: 70px;
  }
  .cid-txrbu65ONt .navbar.opened {
    height: auto;
  }
  .cid-txrbu65ONt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrbu65ONt .socials-wrap {
  flex-shrink: 0;
}
.cid-txrbu65ONt .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrbu65ONt .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrbu65ONt .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrbu65ONt .socials-item .link {
  color: #000000;
}
.cid-txrbu74SQc {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrbu74SQc .row {
  flex-direction: row-reverse;
}
.cid-txrbu74SQc .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrbu74SQc .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrbu74SQc .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrbu74SQc .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrbu74SQc .link-wrap {
    align-items: center;
  }
}
.cid-txrbu74SQc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrbu74SQc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrbu74SQc .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrbu74SQc .btn:hover,
.cid-txrbu74SQc .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrbu74SQc .card-title {
  color: #000000;
}
.cid-txrbu74SQc .mbr-subtile {
  color: #000000;
}
.cid-txrbu74SQc .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrbu74SQc .padding {
    padding-right: 110px;
  }
}
.cid-tGzJcZORGz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzJcZORGz .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzJcZORGz .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzJcZORGz .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzJcZORGz .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzJcZORGz .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzJcZORGz .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzJcZORGz .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrbu7Ee15 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrbu7Ee15 h2,
.cid-txrbu7Ee15 h3,
.cid-txrbu7Ee15 h4,
.cid-txrbu7Ee15 p {
  margin: 0;
}
.cid-txrbu7Ee15 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrbu7Ee15 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrbu7Ee15 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrbu7Ee15 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrbu7Ee15 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrbu7Ee15 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrbu86cy1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrbu86cy1 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrbu86cy1 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrbu86cy1 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrbu86cy1 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrbu86cy1 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrbu86cy1 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrbu86cy1 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrbu8vubf {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrbu8vubf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrbu8vubf .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrbu8vubf .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrbu8vubf .info .col-6,
  .cid-txrbu8vubf .info .col-5 {
    width: 100%;
  }
  .cid-txrbu8vubf .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrbu8vubf .content .col-md-5 {
    width: 43%;
  }
  .cid-txrbu8vubf .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrbu8vubf .content .col-md-5 {
    width: 100%;
  }
  .cid-txrbu8vubf .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrbu8vubf .content {
    padding: 0;
  }
}
.cid-txrbu8vubf .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrbu8vubf .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrbu8vubf .contacts {
  margin: 20px 0;
}
.cid-txrbu8vubf .contacts p {
  margin: 0;
}
.cid-txrbu8vubf .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrbu8vubf .socials p {
  margin: 0 20px 0 0;
}
.cid-txrbu8vubf .socials-item .link {
  color: #000000;
}
.cid-txrbu8vubf .mbr-contacts {
  color: #000000;
}
.cid-txrbu8vubf .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrbu8vubf .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrbu8vubf .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrbu8vubf .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrbu8vubf .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrbu8vubf .item:first-child {
  margin-left: 0;
}
.cid-txrbu8vubf .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrbu8vubf .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrbu8vubf .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrbu8vubf .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrbu8vubf .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrbu8vubf .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrbu8vubf .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-txrbu8vubf .item:hover {
  cursor: pointer;
}
.cid-txrbu8vubf .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrbu8vubf .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrbu8vubf .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-txrbu8vubf .mbr-iconfont {
  color: #ffffff;
}
.cid-txrbu8vubf .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrbu8vubf .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrbu8vubf .menu p {
  margin: 0 0 5px;
}
.cid-txrbu8vubf h6 {
  font-size: 21px;
}
.cid-txrbu8vubf .menu-title {
  margin-bottom: 10px;
}
.cid-txrbu8vubf .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrbu8vubf .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrbu8vubf .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrdozR1US {
  z-index: 1000;
  width: 100%;
}
.cid-txrdozR1US nav.navbar {
  position: fixed;
}
.cid-txrdozR1US .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-txrdozR1US .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrdozR1US .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrdozR1US .dropdown-item:hover,
.cid-txrdozR1US .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrdozR1US .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrdozR1US .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrdozR1US .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrdozR1US .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrdozR1US .nav-item {
  margin: 0 31px;
}
.cid-txrdozR1US .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrdozR1US .nav-link {
  position: relative;
}
.cid-txrdozR1US .nav-link:hover,
.cid-txrdozR1US .nav-link:focus,
.cid-txrdozR1US .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrdozR1US .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrdozR1US .container {
    flex-wrap: inherit;
  }
}
.cid-txrdozR1US .navbar-caption:hover,
.cid-txrdozR1US .navbar-caption:focus,
.cid-txrdozR1US .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrdozR1US .dropdown-menu,
.cid-txrdozR1US .navbar.opened {
  background: #ffffff !important;
}
.cid-txrdozR1US .nav-item:focus,
.cid-txrdozR1US .nav-link:focus {
  outline: none;
}
.cid-txrdozR1US .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrdozR1US .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrdozR1US .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrdozR1US .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrdozR1US .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrdozR1US .navbar.opened {
  transition: all 0.3s;
}
.cid-txrdozR1US .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrdozR1US .navbar .navbar-logo img {
  width: auto;
}
.cid-txrdozR1US .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrdozR1US .navbar.collapsed {
  justify-content: center;
}
.cid-txrdozR1US .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrdozR1US .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrdozR1US .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrdozR1US .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrdozR1US .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrdozR1US .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-txrdozR1US .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrdozR1US .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrdozR1US .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrdozR1US .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrdozR1US .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrdozR1US .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrdozR1US .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-txrdozR1US .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrdozR1US .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrdozR1US .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrdozR1US .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrdozR1US .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrdozR1US .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrdozR1US .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrdozR1US .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrdozR1US .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-txrdozR1US .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrdozR1US .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrdozR1US .dropdown-item.active,
.cid-txrdozR1US .dropdown-item:active {
  background-color: transparent;
}
.cid-txrdozR1US .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrdozR1US .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrdozR1US .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrdozR1US .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrdozR1US .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrdozR1US .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrdozR1US .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrdozR1US .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrdozR1US ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrdozR1US button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrdozR1US button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrdozR1US button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrdozR1US button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrdozR1US button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrdozR1US button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrdozR1US nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrdozR1US nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrdozR1US nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrdozR1US nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrdozR1US .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrdozR1US a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrdozR1US a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrdozR1US .navbar {
    height: 70px;
  }
  .cid-txrdozR1US .navbar.opened {
    height: auto;
  }
  .cid-txrdozR1US .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrdozR1US .socials-wrap {
  flex-shrink: 0;
}
.cid-txrdozR1US .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrdozR1US .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrdozR1US .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrdozR1US .socials-item .link {
  color: #000000;
}
.cid-txrdoAL3PX {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrdoAL3PX .row {
  flex-direction: row-reverse;
}
.cid-txrdoAL3PX .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrdoAL3PX .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrdoAL3PX .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrdoAL3PX .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrdoAL3PX .link-wrap {
    align-items: center;
  }
}
.cid-txrdoAL3PX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrdoAL3PX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrdoAL3PX .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrdoAL3PX .btn:hover,
.cid-txrdoAL3PX .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrdoAL3PX .card-title {
  color: #000000;
}
.cid-txrdoAL3PX .mbr-subtile {
  color: #000000;
}
.cid-txrdoAL3PX .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrdoAL3PX .padding {
    padding-right: 110px;
  }
}
.cid-tGzJXN5zyJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzJXN5zyJ .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzJXN5zyJ .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzJXN5zyJ .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzJXN5zyJ .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzJXN5zyJ .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzJXN5zyJ .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzJXN5zyJ .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrdoBxXj7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrdoBxXj7 h2,
.cid-txrdoBxXj7 h3,
.cid-txrdoBxXj7 h4,
.cid-txrdoBxXj7 p {
  margin: 0;
}
.cid-txrdoBxXj7 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrdoBxXj7 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrdoBxXj7 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrdoBxXj7 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrdoBxXj7 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrdoBxXj7 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrdoBZCBF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrdoBZCBF .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrdoBZCBF .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrdoBZCBF .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrdoBZCBF .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrdoBZCBF .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrdoBZCBF .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrdoBZCBF .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrdoCnpEf {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrdoCnpEf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrdoCnpEf .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrdoCnpEf .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrdoCnpEf .info .col-6,
  .cid-txrdoCnpEf .info .col-5 {
    width: 100%;
  }
  .cid-txrdoCnpEf .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrdoCnpEf .content .col-md-5 {
    width: 43%;
  }
  .cid-txrdoCnpEf .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrdoCnpEf .content .col-md-5 {
    width: 100%;
  }
  .cid-txrdoCnpEf .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrdoCnpEf .content {
    padding: 0;
  }
}
.cid-txrdoCnpEf .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrdoCnpEf .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrdoCnpEf .contacts {
  margin: 20px 0;
}
.cid-txrdoCnpEf .contacts p {
  margin: 0;
}
.cid-txrdoCnpEf .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrdoCnpEf .socials p {
  margin: 0 20px 0 0;
}
.cid-txrdoCnpEf .socials-item .link {
  color: #000000;
}
.cid-txrdoCnpEf .mbr-contacts {
  color: #000000;
}
.cid-txrdoCnpEf .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrdoCnpEf .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrdoCnpEf .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrdoCnpEf .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrdoCnpEf .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrdoCnpEf .item:first-child {
  margin-left: 0;
}
.cid-txrdoCnpEf .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrdoCnpEf .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrdoCnpEf .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrdoCnpEf .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrdoCnpEf .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrdoCnpEf .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrdoCnpEf .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-txrdoCnpEf .item:hover {
  cursor: pointer;
}
.cid-txrdoCnpEf .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrdoCnpEf .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrdoCnpEf .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-txrdoCnpEf .mbr-iconfont {
  color: #ffffff;
}
.cid-txrdoCnpEf .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrdoCnpEf .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrdoCnpEf .menu p {
  margin: 0 0 5px;
}
.cid-txrdoCnpEf h6 {
  font-size: 21px;
}
.cid-txrdoCnpEf .menu-title {
  margin-bottom: 10px;
}
.cid-txrdoCnpEf .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrdoCnpEf .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrdoCnpEf .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txriFyl3AJ {
  z-index: 1000;
  width: 100%;
}
.cid-txriFyl3AJ nav.navbar {
  position: fixed;
}
.cid-txriFyl3AJ .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-txriFyl3AJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txriFyl3AJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txriFyl3AJ .dropdown-item:hover,
.cid-txriFyl3AJ .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txriFyl3AJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txriFyl3AJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txriFyl3AJ .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txriFyl3AJ .nav-item {
  margin: 0 31px;
}
.cid-txriFyl3AJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txriFyl3AJ .nav-link {
  position: relative;
}
.cid-txriFyl3AJ .nav-link:hover,
.cid-txriFyl3AJ .nav-link:focus,
.cid-txriFyl3AJ .nav-link:active {
  color: #ee3102 !important;
}
.cid-txriFyl3AJ .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ .container {
    flex-wrap: inherit;
  }
}
.cid-txriFyl3AJ .navbar-caption:hover,
.cid-txriFyl3AJ .navbar-caption:focus,
.cid-txriFyl3AJ .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txriFyl3AJ .dropdown-menu,
.cid-txriFyl3AJ .navbar.opened {
  background: #ffffff !important;
}
.cid-txriFyl3AJ .nav-item:focus,
.cid-txriFyl3AJ .nav-link:focus {
  outline: none;
}
.cid-txriFyl3AJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txriFyl3AJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txriFyl3AJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txriFyl3AJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txriFyl3AJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txriFyl3AJ .navbar.opened {
  transition: all 0.3s;
}
.cid-txriFyl3AJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txriFyl3AJ .navbar .navbar-logo img {
  width: auto;
}
.cid-txriFyl3AJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txriFyl3AJ .navbar.collapsed {
  justify-content: center;
}
.cid-txriFyl3AJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txriFyl3AJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txriFyl3AJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txriFyl3AJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txriFyl3AJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txriFyl3AJ .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-txriFyl3AJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txriFyl3AJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txriFyl3AJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txriFyl3AJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txriFyl3AJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txriFyl3AJ .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-txriFyl3AJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txriFyl3AJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txriFyl3AJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txriFyl3AJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txriFyl3AJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txriFyl3AJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-txriFyl3AJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txriFyl3AJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txriFyl3AJ .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-txriFyl3AJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txriFyl3AJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txriFyl3AJ .dropdown-item.active,
.cid-txriFyl3AJ .dropdown-item:active {
  background-color: transparent;
}
.cid-txriFyl3AJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txriFyl3AJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txriFyl3AJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txriFyl3AJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txriFyl3AJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txriFyl3AJ .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txriFyl3AJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txriFyl3AJ ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txriFyl3AJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txriFyl3AJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txriFyl3AJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txriFyl3AJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txriFyl3AJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txriFyl3AJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txriFyl3AJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txriFyl3AJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txriFyl3AJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txriFyl3AJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txriFyl3AJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txriFyl3AJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txriFyl3AJ .navbar {
    height: 70px;
  }
  .cid-txriFyl3AJ .navbar.opened {
    height: auto;
  }
  .cid-txriFyl3AJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txriFyl3AJ .socials-wrap {
  flex-shrink: 0;
}
.cid-txriFyl3AJ .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txriFyl3AJ .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txriFyl3AJ .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txriFyl3AJ .socials-item .link {
  color: #000000;
}
.cid-txriFzkY2S {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txriFzkY2S .row {
  flex-direction: row-reverse;
}
.cid-txriFzkY2S .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txriFzkY2S .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txriFzkY2S .card {
    margin-bottom: 2rem !important;
  }
  .cid-txriFzkY2S .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txriFzkY2S .link-wrap {
    align-items: center;
  }
}
.cid-txriFzkY2S .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txriFzkY2S .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txriFzkY2S .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txriFzkY2S .btn:hover,
.cid-txriFzkY2S .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txriFzkY2S .card-title {
  color: #000000;
}
.cid-txriFzkY2S .mbr-subtile {
  color: #000000;
}
.cid-txriFzkY2S .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txriFzkY2S .padding {
    padding-right: 110px;
  }
}
.cid-tGzLrRDOOG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzLrRDOOG .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzLrRDOOG .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzLrRDOOG .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzLrRDOOG .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzLrRDOOG .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzLrRDOOG .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzLrRDOOG .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txriFAq3cL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txriFAq3cL h2,
.cid-txriFAq3cL h3,
.cid-txriFAq3cL h4,
.cid-txriFAq3cL p {
  margin: 0;
}
.cid-txriFAq3cL .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txriFAq3cL .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txriFAq3cL .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txriFAq3cL .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txriFAq3cL .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txriFAq3cL .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txriFAOHBR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txriFAOHBR .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txriFAOHBR .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txriFAOHBR .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txriFAOHBR .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txriFAOHBR .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txriFAOHBR .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txriFAOHBR .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txriFBevUE {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txriFBevUE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txriFBevUE .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txriFBevUE .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txriFBevUE .info .col-6,
  .cid-txriFBevUE .info .col-5 {
    width: 100%;
  }
  .cid-txriFBevUE .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txriFBevUE .content .col-md-5 {
    width: 43%;
  }
  .cid-txriFBevUE .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txriFBevUE .content .col-md-5 {
    width: 100%;
  }
  .cid-txriFBevUE .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txriFBevUE .content {
    padding: 0;
  }
}
.cid-txriFBevUE .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txriFBevUE .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txriFBevUE .contacts {
  margin: 20px 0;
}
.cid-txriFBevUE .contacts p {
  margin: 0;
}
.cid-txriFBevUE .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txriFBevUE .socials p {
  margin: 0 20px 0 0;
}
.cid-txriFBevUE .socials-item .link {
  color: #000000;
}
.cid-txriFBevUE .mbr-contacts {
  color: #000000;
}
.cid-txriFBevUE .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txriFBevUE .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txriFBevUE .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txriFBevUE .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txriFBevUE .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txriFBevUE .item:first-child {
  margin-left: 0;
}
.cid-txriFBevUE .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txriFBevUE .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txriFBevUE .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txriFBevUE .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txriFBevUE .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txriFBevUE .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txriFBevUE .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-txriFBevUE .item:hover {
  cursor: pointer;
}
.cid-txriFBevUE .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txriFBevUE .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txriFBevUE .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-txriFBevUE .mbr-iconfont {
  color: #ffffff;
}
.cid-txriFBevUE .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txriFBevUE .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txriFBevUE .menu p {
  margin: 0 0 5px;
}
.cid-txriFBevUE h6 {
  font-size: 21px;
}
.cid-txriFBevUE .menu-title {
  margin-bottom: 10px;
}
.cid-txriFBevUE .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txriFBevUE .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txriFBevUE .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrkno4QLq {
  z-index: 1000;
  width: 100%;
}
.cid-txrkno4QLq nav.navbar {
  position: fixed;
}
.cid-txrkno4QLq .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-txrkno4QLq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrkno4QLq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrkno4QLq .dropdown-item:hover,
.cid-txrkno4QLq .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrkno4QLq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrkno4QLq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrkno4QLq .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrkno4QLq .nav-item {
  margin: 0 31px;
}
.cid-txrkno4QLq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrkno4QLq .nav-link {
  position: relative;
}
.cid-txrkno4QLq .nav-link:hover,
.cid-txrkno4QLq .nav-link:focus,
.cid-txrkno4QLq .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrkno4QLq .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq .container {
    flex-wrap: inherit;
  }
}
.cid-txrkno4QLq .navbar-caption:hover,
.cid-txrkno4QLq .navbar-caption:focus,
.cid-txrkno4QLq .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrkno4QLq .dropdown-menu,
.cid-txrkno4QLq .navbar.opened {
  background: #ffffff !important;
}
.cid-txrkno4QLq .nav-item:focus,
.cid-txrkno4QLq .nav-link:focus {
  outline: none;
}
.cid-txrkno4QLq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrkno4QLq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrkno4QLq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrkno4QLq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrkno4QLq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrkno4QLq .navbar.opened {
  transition: all 0.3s;
}
.cid-txrkno4QLq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrkno4QLq .navbar .navbar-logo img {
  width: auto;
}
.cid-txrkno4QLq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrkno4QLq .navbar.collapsed {
  justify-content: center;
}
.cid-txrkno4QLq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrkno4QLq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrkno4QLq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrkno4QLq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrkno4QLq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrkno4QLq .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-txrkno4QLq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrkno4QLq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrkno4QLq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrkno4QLq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrkno4QLq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrkno4QLq .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-txrkno4QLq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrkno4QLq .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrkno4QLq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrkno4QLq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrkno4QLq .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrkno4QLq .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrkno4QLq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrkno4QLq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrkno4QLq .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-txrkno4QLq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrkno4QLq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrkno4QLq .dropdown-item.active,
.cid-txrkno4QLq .dropdown-item:active {
  background-color: transparent;
}
.cid-txrkno4QLq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrkno4QLq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrkno4QLq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrkno4QLq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrkno4QLq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrkno4QLq .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrkno4QLq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrkno4QLq ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrkno4QLq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrkno4QLq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrkno4QLq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrkno4QLq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrkno4QLq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrkno4QLq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrkno4QLq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrkno4QLq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrkno4QLq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrkno4QLq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrkno4QLq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrkno4QLq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrkno4QLq .navbar {
    height: 70px;
  }
  .cid-txrkno4QLq .navbar.opened {
    height: auto;
  }
  .cid-txrkno4QLq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrkno4QLq .socials-wrap {
  flex-shrink: 0;
}
.cid-txrkno4QLq .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrkno4QLq .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrkno4QLq .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrkno4QLq .socials-item .link {
  color: #000000;
}
.cid-txrknpk6BP {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrknpk6BP .row {
  flex-direction: row-reverse;
}
.cid-txrknpk6BP .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrknpk6BP .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrknpk6BP .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrknpk6BP .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrknpk6BP .link-wrap {
    align-items: center;
  }
}
.cid-txrknpk6BP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrknpk6BP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrknpk6BP .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrknpk6BP .btn:hover,
.cid-txrknpk6BP .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrknpk6BP .card-title {
  color: #000000;
}
.cid-txrknpk6BP .mbr-subtile {
  color: #000000;
}
.cid-txrknpk6BP .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrknpk6BP .padding {
    padding-right: 110px;
  }
}
.cid-tGzM4kTM4Y {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzM4kTM4Y .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzM4kTM4Y .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzM4kTM4Y .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzM4kTM4Y .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzM4kTM4Y .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzM4kTM4Y .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzM4kTM4Y .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrknqmG74 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrknqmG74 h2,
.cid-txrknqmG74 h3,
.cid-txrknqmG74 h4,
.cid-txrknqmG74 p {
  margin: 0;
}
.cid-txrknqmG74 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrknqmG74 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrknqmG74 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrknqmG74 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrknqmG74 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrknqmG74 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrknrffPg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrknrffPg .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrknrffPg .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrknrffPg .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrknrffPg .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrknrffPg .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrknrffPg .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrknrffPg .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrkns6JfZ {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrkns6JfZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrkns6JfZ .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrkns6JfZ .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrkns6JfZ .info .col-6,
  .cid-txrkns6JfZ .info .col-5 {
    width: 100%;
  }
  .cid-txrkns6JfZ .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrkns6JfZ .content .col-md-5 {
    width: 43%;
  }
  .cid-txrkns6JfZ .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrkns6JfZ .content .col-md-5 {
    width: 100%;
  }
  .cid-txrkns6JfZ .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrkns6JfZ .content {
    padding: 0;
  }
}
.cid-txrkns6JfZ .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrkns6JfZ .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrkns6JfZ .contacts {
  margin: 20px 0;
}
.cid-txrkns6JfZ .contacts p {
  margin: 0;
}
.cid-txrkns6JfZ .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrkns6JfZ .socials p {
  margin: 0 20px 0 0;
}
.cid-txrkns6JfZ .socials-item .link {
  color: #000000;
}
.cid-txrkns6JfZ .mbr-contacts {
  color: #000000;
}
.cid-txrkns6JfZ .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrkns6JfZ .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrkns6JfZ .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrkns6JfZ .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrkns6JfZ .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrkns6JfZ .item:first-child {
  margin-left: 0;
}
.cid-txrkns6JfZ .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrkns6JfZ .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrkns6JfZ .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrkns6JfZ .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrkns6JfZ .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrkns6JfZ .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrkns6JfZ .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-txrkns6JfZ .item:hover {
  cursor: pointer;
}
.cid-txrkns6JfZ .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrkns6JfZ .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrkns6JfZ .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-txrkns6JfZ .mbr-iconfont {
  color: #ffffff;
}
.cid-txrkns6JfZ .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrkns6JfZ .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrkns6JfZ .menu p {
  margin: 0 0 5px;
}
.cid-txrkns6JfZ h6 {
  font-size: 21px;
}
.cid-txrkns6JfZ .menu-title {
  margin-bottom: 10px;
}
.cid-txrkns6JfZ .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrkns6JfZ .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrkns6JfZ .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrlUyWA8L {
  z-index: 1000;
  width: 100%;
}
.cid-txrlUyWA8L nav.navbar {
  position: fixed;
}
.cid-txrlUyWA8L .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-txrlUyWA8L .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrlUyWA8L .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrlUyWA8L .dropdown-item:hover,
.cid-txrlUyWA8L .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrlUyWA8L .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrlUyWA8L .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrlUyWA8L .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrlUyWA8L .nav-item {
  margin: 0 31px;
}
.cid-txrlUyWA8L .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrlUyWA8L .nav-link {
  position: relative;
}
.cid-txrlUyWA8L .nav-link:hover,
.cid-txrlUyWA8L .nav-link:focus,
.cid-txrlUyWA8L .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrlUyWA8L .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L .container {
    flex-wrap: inherit;
  }
}
.cid-txrlUyWA8L .navbar-caption:hover,
.cid-txrlUyWA8L .navbar-caption:focus,
.cid-txrlUyWA8L .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrlUyWA8L .dropdown-menu,
.cid-txrlUyWA8L .navbar.opened {
  background: #ffffff !important;
}
.cid-txrlUyWA8L .nav-item:focus,
.cid-txrlUyWA8L .nav-link:focus {
  outline: none;
}
.cid-txrlUyWA8L .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrlUyWA8L .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrlUyWA8L .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrlUyWA8L .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrlUyWA8L .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrlUyWA8L .navbar.opened {
  transition: all 0.3s;
}
.cid-txrlUyWA8L .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrlUyWA8L .navbar .navbar-logo img {
  width: auto;
}
.cid-txrlUyWA8L .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrlUyWA8L .navbar.collapsed {
  justify-content: center;
}
.cid-txrlUyWA8L .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrlUyWA8L .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrlUyWA8L .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrlUyWA8L .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrlUyWA8L .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrlUyWA8L .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-txrlUyWA8L .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrlUyWA8L .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrlUyWA8L .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrlUyWA8L .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrlUyWA8L .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrlUyWA8L .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-txrlUyWA8L .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrlUyWA8L .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrlUyWA8L .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrlUyWA8L .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrlUyWA8L .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrlUyWA8L .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrlUyWA8L .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrlUyWA8L .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrlUyWA8L .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-txrlUyWA8L .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrlUyWA8L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrlUyWA8L .dropdown-item.active,
.cid-txrlUyWA8L .dropdown-item:active {
  background-color: transparent;
}
.cid-txrlUyWA8L .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrlUyWA8L .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrlUyWA8L .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrlUyWA8L .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrlUyWA8L .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrlUyWA8L .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrlUyWA8L .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrlUyWA8L ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrlUyWA8L button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrlUyWA8L button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrlUyWA8L button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrlUyWA8L button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrlUyWA8L button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrlUyWA8L button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrlUyWA8L nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrlUyWA8L nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrlUyWA8L nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrlUyWA8L nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrlUyWA8L .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrlUyWA8L a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrlUyWA8L .navbar {
    height: 70px;
  }
  .cid-txrlUyWA8L .navbar.opened {
    height: auto;
  }
  .cid-txrlUyWA8L .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrlUyWA8L .socials-wrap {
  flex-shrink: 0;
}
.cid-txrlUyWA8L .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrlUyWA8L .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrlUyWA8L .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrlUyWA8L .socials-item .link {
  color: #000000;
}
.cid-txrlUzQ3AK {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrlUzQ3AK .row {
  flex-direction: row-reverse;
}
.cid-txrlUzQ3AK .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrlUzQ3AK .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrlUzQ3AK .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrlUzQ3AK .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrlUzQ3AK .link-wrap {
    align-items: center;
  }
}
.cid-txrlUzQ3AK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrlUzQ3AK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrlUzQ3AK .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrlUzQ3AK .btn:hover,
.cid-txrlUzQ3AK .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrlUzQ3AK .card-title {
  color: #000000;
}
.cid-txrlUzQ3AK .mbr-subtile {
  color: #000000;
}
.cid-txrlUzQ3AK .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrlUzQ3AK .padding {
    padding-right: 110px;
  }
}
.cid-tGzN6XO2j7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzN6XO2j7 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzN6XO2j7 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzN6XO2j7 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzN6XO2j7 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzN6XO2j7 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzN6XO2j7 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzN6XO2j7 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrlUArVM6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrlUArVM6 h2,
.cid-txrlUArVM6 h3,
.cid-txrlUArVM6 h4,
.cid-txrlUArVM6 p {
  margin: 0;
}
.cid-txrlUArVM6 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrlUArVM6 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrlUArVM6 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrlUArVM6 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrlUArVM6 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrlUArVM6 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrlUAThTM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrlUAThTM .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrlUAThTM .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrlUAThTM .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrlUAThTM .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrlUAThTM .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrlUAThTM .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrlUAThTM .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrlUBj4B5 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrlUBj4B5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrlUBj4B5 .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrlUBj4B5 .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrlUBj4B5 .info .col-6,
  .cid-txrlUBj4B5 .info .col-5 {
    width: 100%;
  }
  .cid-txrlUBj4B5 .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrlUBj4B5 .content .col-md-5 {
    width: 43%;
  }
  .cid-txrlUBj4B5 .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrlUBj4B5 .content .col-md-5 {
    width: 100%;
  }
  .cid-txrlUBj4B5 .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrlUBj4B5 .content {
    padding: 0;
  }
}
.cid-txrlUBj4B5 .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrlUBj4B5 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrlUBj4B5 .contacts {
  margin: 20px 0;
}
.cid-txrlUBj4B5 .contacts p {
  margin: 0;
}
.cid-txrlUBj4B5 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrlUBj4B5 .socials p {
  margin: 0 20px 0 0;
}
.cid-txrlUBj4B5 .socials-item .link {
  color: #000000;
}
.cid-txrlUBj4B5 .mbr-contacts {
  color: #000000;
}
.cid-txrlUBj4B5 .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrlUBj4B5 .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrlUBj4B5 .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrlUBj4B5 .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrlUBj4B5 .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrlUBj4B5 .item:first-child {
  margin-left: 0;
}
.cid-txrlUBj4B5 .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrlUBj4B5 .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrlUBj4B5 .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrlUBj4B5 .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrlUBj4B5 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrlUBj4B5 .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrlUBj4B5 .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-txrlUBj4B5 .item:hover {
  cursor: pointer;
}
.cid-txrlUBj4B5 .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrlUBj4B5 .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrlUBj4B5 .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-txrlUBj4B5 .mbr-iconfont {
  color: #ffffff;
}
.cid-txrlUBj4B5 .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrlUBj4B5 .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrlUBj4B5 .menu p {
  margin: 0 0 5px;
}
.cid-txrlUBj4B5 h6 {
  font-size: 21px;
}
.cid-txrlUBj4B5 .menu-title {
  margin-bottom: 10px;
}
.cid-txrlUBj4B5 .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrlUBj4B5 .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrlUBj4B5 .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrnAZBuMa {
  z-index: 1000;
  width: 100%;
}
.cid-txrnAZBuMa nav.navbar {
  position: fixed;
}
.cid-txrnAZBuMa .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-txrnAZBuMa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrnAZBuMa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrnAZBuMa .dropdown-item:hover,
.cid-txrnAZBuMa .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrnAZBuMa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrnAZBuMa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrnAZBuMa .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrnAZBuMa .nav-item {
  margin: 0 31px;
}
.cid-txrnAZBuMa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrnAZBuMa .nav-link {
  position: relative;
}
.cid-txrnAZBuMa .nav-link:hover,
.cid-txrnAZBuMa .nav-link:focus,
.cid-txrnAZBuMa .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrnAZBuMa .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa .container {
    flex-wrap: inherit;
  }
}
.cid-txrnAZBuMa .navbar-caption:hover,
.cid-txrnAZBuMa .navbar-caption:focus,
.cid-txrnAZBuMa .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrnAZBuMa .dropdown-menu,
.cid-txrnAZBuMa .navbar.opened {
  background: #ffffff !important;
}
.cid-txrnAZBuMa .nav-item:focus,
.cid-txrnAZBuMa .nav-link:focus {
  outline: none;
}
.cid-txrnAZBuMa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrnAZBuMa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrnAZBuMa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrnAZBuMa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrnAZBuMa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrnAZBuMa .navbar.opened {
  transition: all 0.3s;
}
.cid-txrnAZBuMa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrnAZBuMa .navbar .navbar-logo img {
  width: auto;
}
.cid-txrnAZBuMa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrnAZBuMa .navbar.collapsed {
  justify-content: center;
}
.cid-txrnAZBuMa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrnAZBuMa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrnAZBuMa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrnAZBuMa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrnAZBuMa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrnAZBuMa .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-txrnAZBuMa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrnAZBuMa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrnAZBuMa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrnAZBuMa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrnAZBuMa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrnAZBuMa .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-txrnAZBuMa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrnAZBuMa .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrnAZBuMa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrnAZBuMa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrnAZBuMa .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrnAZBuMa .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrnAZBuMa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrnAZBuMa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrnAZBuMa .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-txrnAZBuMa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrnAZBuMa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrnAZBuMa .dropdown-item.active,
.cid-txrnAZBuMa .dropdown-item:active {
  background-color: transparent;
}
.cid-txrnAZBuMa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrnAZBuMa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrnAZBuMa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrnAZBuMa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrnAZBuMa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrnAZBuMa .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrnAZBuMa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrnAZBuMa ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrnAZBuMa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrnAZBuMa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrnAZBuMa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrnAZBuMa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrnAZBuMa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrnAZBuMa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrnAZBuMa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrnAZBuMa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrnAZBuMa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrnAZBuMa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrnAZBuMa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrnAZBuMa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrnAZBuMa .navbar {
    height: 70px;
  }
  .cid-txrnAZBuMa .navbar.opened {
    height: auto;
  }
  .cid-txrnAZBuMa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrnAZBuMa .socials-wrap {
  flex-shrink: 0;
}
.cid-txrnAZBuMa .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrnAZBuMa .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrnAZBuMa .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrnAZBuMa .socials-item .link {
  color: #000000;
}
.cid-txrnB0mrOj {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrnB0mrOj .row {
  flex-direction: row-reverse;
}
.cid-txrnB0mrOj .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrnB0mrOj .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrnB0mrOj .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrnB0mrOj .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrnB0mrOj .link-wrap {
    align-items: center;
  }
}
.cid-txrnB0mrOj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrnB0mrOj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrnB0mrOj .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrnB0mrOj .btn:hover,
.cid-txrnB0mrOj .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrnB0mrOj .card-title {
  color: #000000;
}
.cid-txrnB0mrOj .mbr-subtile {
  color: #000000;
}
.cid-txrnB0mrOj .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrnB0mrOj .padding {
    padding-right: 110px;
  }
}
.cid-tGzNAQW4zJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzNAQW4zJ .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzNAQW4zJ .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzNAQW4zJ .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzNAQW4zJ .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzNAQW4zJ .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzNAQW4zJ .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzNAQW4zJ .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrnB0VZ1Z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrnB0VZ1Z h2,
.cid-txrnB0VZ1Z h3,
.cid-txrnB0VZ1Z h4,
.cid-txrnB0VZ1Z p {
  margin: 0;
}
.cid-txrnB0VZ1Z .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrnB0VZ1Z .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrnB0VZ1Z .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrnB0VZ1Z .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrnB0VZ1Z .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrnB0VZ1Z .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrnB1r8Sa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrnB1r8Sa .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrnB1r8Sa .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrnB1r8Sa .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrnB1r8Sa .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrnB1r8Sa .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrnB1r8Sa .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrnB1r8Sa .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrnB1PQIB {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrnB1PQIB .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrnB1PQIB .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrnB1PQIB .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrnB1PQIB .info .col-6,
  .cid-txrnB1PQIB .info .col-5 {
    width: 100%;
  }
  .cid-txrnB1PQIB .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrnB1PQIB .content .col-md-5 {
    width: 43%;
  }
  .cid-txrnB1PQIB .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrnB1PQIB .content .col-md-5 {
    width: 100%;
  }
  .cid-txrnB1PQIB .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrnB1PQIB .content {
    padding: 0;
  }
}
.cid-txrnB1PQIB .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrnB1PQIB .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrnB1PQIB .contacts {
  margin: 20px 0;
}
.cid-txrnB1PQIB .contacts p {
  margin: 0;
}
.cid-txrnB1PQIB .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrnB1PQIB .socials p {
  margin: 0 20px 0 0;
}
.cid-txrnB1PQIB .socials-item .link {
  color: #000000;
}
.cid-txrnB1PQIB .mbr-contacts {
  color: #000000;
}
.cid-txrnB1PQIB .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrnB1PQIB .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrnB1PQIB .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrnB1PQIB .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrnB1PQIB .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrnB1PQIB .item:first-child {
  margin-left: 0;
}
.cid-txrnB1PQIB .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrnB1PQIB .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrnB1PQIB .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrnB1PQIB .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrnB1PQIB .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrnB1PQIB .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrnB1PQIB .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-txrnB1PQIB .item:hover {
  cursor: pointer;
}
.cid-txrnB1PQIB .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrnB1PQIB .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrnB1PQIB .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-txrnB1PQIB .mbr-iconfont {
  color: #ffffff;
}
.cid-txrnB1PQIB .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrnB1PQIB .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrnB1PQIB .menu p {
  margin: 0 0 5px;
}
.cid-txrnB1PQIB h6 {
  font-size: 21px;
}
.cid-txrnB1PQIB .menu-title {
  margin-bottom: 10px;
}
.cid-txrnB1PQIB .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrnB1PQIB .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrnB1PQIB .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrqU0HTOu {
  z-index: 1000;
  width: 100%;
}
.cid-txrqU0HTOu nav.navbar {
  position: fixed;
}
.cid-txrqU0HTOu .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-txrqU0HTOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrqU0HTOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrqU0HTOu .dropdown-item:hover,
.cid-txrqU0HTOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrqU0HTOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrqU0HTOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrqU0HTOu .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrqU0HTOu .nav-item {
  margin: 0 31px;
}
.cid-txrqU0HTOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrqU0HTOu .nav-link {
  position: relative;
}
.cid-txrqU0HTOu .nav-link:hover,
.cid-txrqU0HTOu .nav-link:focus,
.cid-txrqU0HTOu .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrqU0HTOu .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu .container {
    flex-wrap: inherit;
  }
}
.cid-txrqU0HTOu .navbar-caption:hover,
.cid-txrqU0HTOu .navbar-caption:focus,
.cid-txrqU0HTOu .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrqU0HTOu .dropdown-menu,
.cid-txrqU0HTOu .navbar.opened {
  background: #ffffff !important;
}
.cid-txrqU0HTOu .nav-item:focus,
.cid-txrqU0HTOu .nav-link:focus {
  outline: none;
}
.cid-txrqU0HTOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrqU0HTOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrqU0HTOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrqU0HTOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrqU0HTOu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrqU0HTOu .navbar.opened {
  transition: all 0.3s;
}
.cid-txrqU0HTOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrqU0HTOu .navbar .navbar-logo img {
  width: auto;
}
.cid-txrqU0HTOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrqU0HTOu .navbar.collapsed {
  justify-content: center;
}
.cid-txrqU0HTOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrqU0HTOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrqU0HTOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrqU0HTOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrqU0HTOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrqU0HTOu .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-txrqU0HTOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrqU0HTOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrqU0HTOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrqU0HTOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrqU0HTOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrqU0HTOu .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-txrqU0HTOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrqU0HTOu .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrqU0HTOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrqU0HTOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrqU0HTOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrqU0HTOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrqU0HTOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrqU0HTOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrqU0HTOu .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-txrqU0HTOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrqU0HTOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrqU0HTOu .dropdown-item.active,
.cid-txrqU0HTOu .dropdown-item:active {
  background-color: transparent;
}
.cid-txrqU0HTOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrqU0HTOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrqU0HTOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrqU0HTOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrqU0HTOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrqU0HTOu .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrqU0HTOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrqU0HTOu ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrqU0HTOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrqU0HTOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrqU0HTOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrqU0HTOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrqU0HTOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrqU0HTOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrqU0HTOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrqU0HTOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrqU0HTOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrqU0HTOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrqU0HTOu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrqU0HTOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrqU0HTOu .navbar {
    height: 70px;
  }
  .cid-txrqU0HTOu .navbar.opened {
    height: auto;
  }
  .cid-txrqU0HTOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrqU0HTOu .socials-wrap {
  flex-shrink: 0;
}
.cid-txrqU0HTOu .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrqU0HTOu .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrqU0HTOu .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrqU0HTOu .socials-item .link {
  color: #000000;
}
.cid-txrqU1tLuu {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrqU1tLuu .row {
  flex-direction: row-reverse;
}
.cid-txrqU1tLuu .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrqU1tLuu .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrqU1tLuu .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrqU1tLuu .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrqU1tLuu .link-wrap {
    align-items: center;
  }
}
.cid-txrqU1tLuu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrqU1tLuu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrqU1tLuu .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrqU1tLuu .btn:hover,
.cid-txrqU1tLuu .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrqU1tLuu .card-title {
  color: #000000;
}
.cid-txrqU1tLuu .mbr-subtile {
  color: #000000;
}
.cid-txrqU1tLuu .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrqU1tLuu .padding {
    padding-right: 110px;
  }
}
.cid-tGzObGtjoR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzObGtjoR .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzObGtjoR .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzObGtjoR .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzObGtjoR .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzObGtjoR .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzObGtjoR .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzObGtjoR .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrqU25gA8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrqU25gA8 h2,
.cid-txrqU25gA8 h3,
.cid-txrqU25gA8 h4,
.cid-txrqU25gA8 p {
  margin: 0;
}
.cid-txrqU25gA8 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrqU25gA8 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrqU25gA8 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrqU25gA8 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrqU25gA8 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrqU25gA8 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrqU2y1LP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrqU2y1LP .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrqU2y1LP .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrqU2y1LP .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrqU2y1LP .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrqU2y1LP .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrqU2y1LP .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrqU2y1LP .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrqU2WYMy {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrqU2WYMy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrqU2WYMy .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrqU2WYMy .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrqU2WYMy .info .col-6,
  .cid-txrqU2WYMy .info .col-5 {
    width: 100%;
  }
  .cid-txrqU2WYMy .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrqU2WYMy .content .col-md-5 {
    width: 43%;
  }
  .cid-txrqU2WYMy .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrqU2WYMy .content .col-md-5 {
    width: 100%;
  }
  .cid-txrqU2WYMy .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrqU2WYMy .content {
    padding: 0;
  }
}
.cid-txrqU2WYMy .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrqU2WYMy .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrqU2WYMy .contacts {
  margin: 20px 0;
}
.cid-txrqU2WYMy .contacts p {
  margin: 0;
}
.cid-txrqU2WYMy .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrqU2WYMy .socials p {
  margin: 0 20px 0 0;
}
.cid-txrqU2WYMy .socials-item .link {
  color: #000000;
}
.cid-txrqU2WYMy .mbr-contacts {
  color: #000000;
}
.cid-txrqU2WYMy .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrqU2WYMy .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrqU2WYMy .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrqU2WYMy .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrqU2WYMy .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrqU2WYMy .item:first-child {
  margin-left: 0;
}
.cid-txrqU2WYMy .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrqU2WYMy .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrqU2WYMy .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrqU2WYMy .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrqU2WYMy .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrqU2WYMy .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrqU2WYMy .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-txrqU2WYMy .item:hover {
  cursor: pointer;
}
.cid-txrqU2WYMy .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrqU2WYMy .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrqU2WYMy .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-txrqU2WYMy .mbr-iconfont {
  color: #ffffff;
}
.cid-txrqU2WYMy .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrqU2WYMy .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrqU2WYMy .menu p {
  margin: 0 0 5px;
}
.cid-txrqU2WYMy h6 {
  font-size: 21px;
}
.cid-txrqU2WYMy .menu-title {
  margin-bottom: 10px;
}
.cid-txrqU2WYMy .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrqU2WYMy .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrqU2WYMy .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrsTpWlNE {
  z-index: 1000;
  width: 100%;
}
.cid-txrsTpWlNE nav.navbar {
  position: fixed;
}
.cid-txrsTpWlNE .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-txrsTpWlNE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrsTpWlNE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrsTpWlNE .dropdown-item:hover,
.cid-txrsTpWlNE .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrsTpWlNE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrsTpWlNE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrsTpWlNE .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrsTpWlNE .nav-item {
  margin: 0 31px;
}
.cid-txrsTpWlNE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrsTpWlNE .nav-link {
  position: relative;
}
.cid-txrsTpWlNE .nav-link:hover,
.cid-txrsTpWlNE .nav-link:focus,
.cid-txrsTpWlNE .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrsTpWlNE .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE .container {
    flex-wrap: inherit;
  }
}
.cid-txrsTpWlNE .navbar-caption:hover,
.cid-txrsTpWlNE .navbar-caption:focus,
.cid-txrsTpWlNE .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrsTpWlNE .dropdown-menu,
.cid-txrsTpWlNE .navbar.opened {
  background: #ffffff !important;
}
.cid-txrsTpWlNE .nav-item:focus,
.cid-txrsTpWlNE .nav-link:focus {
  outline: none;
}
.cid-txrsTpWlNE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrsTpWlNE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrsTpWlNE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrsTpWlNE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrsTpWlNE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrsTpWlNE .navbar.opened {
  transition: all 0.3s;
}
.cid-txrsTpWlNE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrsTpWlNE .navbar .navbar-logo img {
  width: auto;
}
.cid-txrsTpWlNE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrsTpWlNE .navbar.collapsed {
  justify-content: center;
}
.cid-txrsTpWlNE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrsTpWlNE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrsTpWlNE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrsTpWlNE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrsTpWlNE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrsTpWlNE .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-txrsTpWlNE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrsTpWlNE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrsTpWlNE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrsTpWlNE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrsTpWlNE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrsTpWlNE .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-txrsTpWlNE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrsTpWlNE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrsTpWlNE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrsTpWlNE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrsTpWlNE .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrsTpWlNE .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrsTpWlNE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrsTpWlNE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrsTpWlNE .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-txrsTpWlNE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrsTpWlNE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrsTpWlNE .dropdown-item.active,
.cid-txrsTpWlNE .dropdown-item:active {
  background-color: transparent;
}
.cid-txrsTpWlNE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrsTpWlNE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrsTpWlNE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrsTpWlNE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrsTpWlNE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrsTpWlNE .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrsTpWlNE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrsTpWlNE ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrsTpWlNE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrsTpWlNE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrsTpWlNE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrsTpWlNE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrsTpWlNE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrsTpWlNE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrsTpWlNE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrsTpWlNE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrsTpWlNE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrsTpWlNE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrsTpWlNE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrsTpWlNE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrsTpWlNE .navbar {
    height: 70px;
  }
  .cid-txrsTpWlNE .navbar.opened {
    height: auto;
  }
  .cid-txrsTpWlNE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrsTpWlNE .socials-wrap {
  flex-shrink: 0;
}
.cid-txrsTpWlNE .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrsTpWlNE .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrsTpWlNE .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrsTpWlNE .socials-item .link {
  color: #000000;
}
.cid-txrsTqWweH {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrsTqWweH .row {
  flex-direction: row-reverse;
}
.cid-txrsTqWweH .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrsTqWweH .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrsTqWweH .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrsTqWweH .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrsTqWweH .link-wrap {
    align-items: center;
  }
}
.cid-txrsTqWweH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrsTqWweH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrsTqWweH .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrsTqWweH .btn:hover,
.cid-txrsTqWweH .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrsTqWweH .card-title {
  color: #000000;
}
.cid-txrsTqWweH .mbr-subtile {
  color: #000000;
}
.cid-txrsTqWweH .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrsTqWweH .padding {
    padding-right: 110px;
  }
}
.cid-tGzOMrQa8P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzOMrQa8P .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzOMrQa8P .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzOMrQa8P .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzOMrQa8P .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzOMrQa8P .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzOMrQa8P .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzOMrQa8P .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrsTryCWu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrsTryCWu h2,
.cid-txrsTryCWu h3,
.cid-txrsTryCWu h4,
.cid-txrsTryCWu p {
  margin: 0;
}
.cid-txrsTryCWu .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrsTryCWu .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrsTryCWu .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrsTryCWu .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrsTryCWu .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrsTryCWu .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrsTs9Mt8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrsTs9Mt8 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrsTs9Mt8 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrsTs9Mt8 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrsTs9Mt8 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrsTs9Mt8 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrsTs9Mt8 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrsTs9Mt8 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrsTsytdH {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrsTsytdH .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrsTsytdH .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrsTsytdH .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrsTsytdH .info .col-6,
  .cid-txrsTsytdH .info .col-5 {
    width: 100%;
  }
  .cid-txrsTsytdH .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrsTsytdH .content .col-md-5 {
    width: 43%;
  }
  .cid-txrsTsytdH .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrsTsytdH .content .col-md-5 {
    width: 100%;
  }
  .cid-txrsTsytdH .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrsTsytdH .content {
    padding: 0;
  }
}
.cid-txrsTsytdH .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrsTsytdH .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrsTsytdH .contacts {
  margin: 20px 0;
}
.cid-txrsTsytdH .contacts p {
  margin: 0;
}
.cid-txrsTsytdH .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrsTsytdH .socials p {
  margin: 0 20px 0 0;
}
.cid-txrsTsytdH .socials-item .link {
  color: #000000;
}
.cid-txrsTsytdH .mbr-contacts {
  color: #000000;
}
.cid-txrsTsytdH .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrsTsytdH .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrsTsytdH .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrsTsytdH .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrsTsytdH .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrsTsytdH .item:first-child {
  margin-left: 0;
}
.cid-txrsTsytdH .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrsTsytdH .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrsTsytdH .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrsTsytdH .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrsTsytdH .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrsTsytdH .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrsTsytdH .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-txrsTsytdH .item:hover {
  cursor: pointer;
}
.cid-txrsTsytdH .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrsTsytdH .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrsTsytdH .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-txrsTsytdH .mbr-iconfont {
  color: #ffffff;
}
.cid-txrsTsytdH .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrsTsytdH .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrsTsytdH .menu p {
  margin: 0 0 5px;
}
.cid-txrsTsytdH h6 {
  font-size: 21px;
}
.cid-txrsTsytdH .menu-title {
  margin-bottom: 10px;
}
.cid-txrsTsytdH .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrsTsytdH .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrsTsytdH .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-tGzPsnVLAt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tGzPsnVLAt h4,
.cid-tGzPsnVLAt h6,
.cid-tGzPsnVLAt p {
  margin: 0;
}
.cid-tGzPsnVLAt .mbr-main-text {
  font-size: x-large;
}
.cid-tGzPsnVLAt .mbr-sub-text {
  font-size: small;
}
.cid-tGzPsnVLAt .mbr-card-title {
  color: #000000;
  margin: 0 0 11px;
  margin-bottom: 6px;
}
.cid-tGzPsnVLAt .mbr-card-subtitle {
  color: #6b6b6b;
  margin: 0;
  margin-bottom: 2px;
}
.cid-tGzPsnVLAt .controls {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-tGzPsnVLAt .mbr-slide-indicator {
  color: #000000;
  position: relative;
  width: 26px;
  height: 27px;
  margin: 5px 0 12px;
  opacity: 1;
  counter-increment: counter;
}
@media (max-width: 1024px) {
  .cid-tGzPsnVLAt .mbr-slide-indicator {
    margin: 5px;
  }
}
.cid-tGzPsnVLAt .mbr-slide-indicator::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  line-height: 1;
  background-color: #ee3102;
  transition: width 0.25s ease-out;
}
.cid-tGzPsnVLAt .embla {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.cid-tGzPsnVLAt .embla__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.cid-tGzPsnVLAt .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGzPsnVLAt .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGzPsnVLAt .embla__container {
  height: 240px;
  display: flex;
  flex-direction: column;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
@media (max-width: 1024px) {
  .cid-tGzPsnVLAt .embla__container {
    height: 278px;
  }
}
@media (max-width: 767px) {
  .cid-tGzPsnVLAt .embla__container {
    height: 446px;
  }
}
.cid-tGzPsnVLAt .embla__slide {
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 30px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .cid-tGzPsnVLAt .embla__slide {
    height: 278px;
  }
}
@media (max-width: 767px) {
  .cid-tGzPsnVLAt .embla__slide {
    height: 446px;
  }
}
.cid-tGzPsnVLAt .card-wrap {
  position: relative;
  height: 100%;
  padding: 26px 0 7px;
  display: flex;
}
@media (max-width: 680px) {
  .cid-tGzPsnVLAt .card-wrap {
    flex-wrap: wrap;
  }
}
.cid-tGzPsnVLAt .icon-wrap svg path {
  fill: #ee3102;
}
.cid-tGzPsnVLAt .image-wrap {
  position: absolute;
  left: 120px;
  top: 28px;
  border-radius: 100%;
  width: 93px;
  height: 93px;
  overflow: hidden;
}
.cid-tGzPsnVLAt .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGzPsnVLAt .content-wrap {
  padding-left: 8.3%;
  padding-right: 17%;
  width: calc(100% - 160px);
}
@media (max-width: 1024px) {
  .cid-tGzPsnVLAt .content-wrap {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-tGzPsnVLAt .content-wrap {
    padding: 0;
    margin-top: -50px;
  }
}
.cid-tGzPsnVLAt .mbr-card-text {
  color: #6b6b6b;
}
.cid-tGzPsnVLAt .embla__button--next svg polygon,
.cid-tGzPsnVLAt .embla__button--prev svg polygon {
  transition: 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.cid-tGzPsnVLAt .embla__button--next svg,
.cid-tGzPsnVLAt .embla__button--prev svg {
  overflow: hidden;
}
.cid-tGzPsnVLAt .embla__button--prev {
  vertical-align: super;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tGzPsnVLAt .embla__button--prev:hover {
  color: #000;
}
.cid-tGzPsnVLAt .embla__button--prev svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tGzPsnVLAt .embla__button--prev svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tGzPsnVLAt .embla__button--prev:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tGzPsnVLAt .embla__button--prev:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-tGzPsnVLAt .embla__button--next {
  vertical-align: sub;
  color: #000;
  transition: color 0.25s ease-out;
}
.cid-tGzPsnVLAt .embla__button--next:hover {
  color: #000;
}
.cid-tGzPsnVLAt .embla__button--next svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-tGzPsnVLAt .embla__button--next svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
}
.cid-tGzPsnVLAt .embla__button--next:hover svg polygon:nth-of-type(1) {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
}
.cid-tGzPsnVLAt .embla__button--next:hover svg polygon:nth-of-type(2) {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition-delay: 0.3s;
}
.cid-txrvAn5Xt2 {
  z-index: 1000;
  width: 100%;
}
.cid-txrvAn5Xt2 nav.navbar {
  position: fixed;
}
.cid-txrvAn5Xt2 .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-txrvAn5Xt2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrvAn5Xt2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrvAn5Xt2 .dropdown-item:hover,
.cid-txrvAn5Xt2 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrvAn5Xt2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrvAn5Xt2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrvAn5Xt2 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrvAn5Xt2 .nav-item {
  margin: 0 31px;
}
.cid-txrvAn5Xt2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrvAn5Xt2 .nav-link {
  position: relative;
}
.cid-txrvAn5Xt2 .nav-link:hover,
.cid-txrvAn5Xt2 .nav-link:focus,
.cid-txrvAn5Xt2 .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrvAn5Xt2 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 .container {
    flex-wrap: inherit;
  }
}
.cid-txrvAn5Xt2 .navbar-caption:hover,
.cid-txrvAn5Xt2 .navbar-caption:focus,
.cid-txrvAn5Xt2 .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrvAn5Xt2 .dropdown-menu,
.cid-txrvAn5Xt2 .navbar.opened {
  background: #ffffff !important;
}
.cid-txrvAn5Xt2 .nav-item:focus,
.cid-txrvAn5Xt2 .nav-link:focus {
  outline: none;
}
.cid-txrvAn5Xt2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrvAn5Xt2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrvAn5Xt2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrvAn5Xt2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrvAn5Xt2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrvAn5Xt2 .navbar.opened {
  transition: all 0.3s;
}
.cid-txrvAn5Xt2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrvAn5Xt2 .navbar .navbar-logo img {
  width: auto;
}
.cid-txrvAn5Xt2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrvAn5Xt2 .navbar.collapsed {
  justify-content: center;
}
.cid-txrvAn5Xt2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrvAn5Xt2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrvAn5Xt2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrvAn5Xt2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrvAn5Xt2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrvAn5Xt2 .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-txrvAn5Xt2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrvAn5Xt2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrvAn5Xt2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrvAn5Xt2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrvAn5Xt2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrvAn5Xt2 .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-txrvAn5Xt2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrvAn5Xt2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrvAn5Xt2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrvAn5Xt2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrvAn5Xt2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrvAn5Xt2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrvAn5Xt2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrvAn5Xt2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrvAn5Xt2 .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-txrvAn5Xt2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrvAn5Xt2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrvAn5Xt2 .dropdown-item.active,
.cid-txrvAn5Xt2 .dropdown-item:active {
  background-color: transparent;
}
.cid-txrvAn5Xt2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrvAn5Xt2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrvAn5Xt2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrvAn5Xt2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrvAn5Xt2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrvAn5Xt2 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrvAn5Xt2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrvAn5Xt2 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrvAn5Xt2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrvAn5Xt2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrvAn5Xt2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrvAn5Xt2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrvAn5Xt2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrvAn5Xt2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrvAn5Xt2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrvAn5Xt2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrvAn5Xt2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrvAn5Xt2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrvAn5Xt2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrvAn5Xt2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrvAn5Xt2 .navbar {
    height: 70px;
  }
  .cid-txrvAn5Xt2 .navbar.opened {
    height: auto;
  }
  .cid-txrvAn5Xt2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrvAn5Xt2 .socials-wrap {
  flex-shrink: 0;
}
.cid-txrvAn5Xt2 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrvAn5Xt2 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrvAn5Xt2 .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrvAn5Xt2 .socials-item .link {
  color: #000000;
}
.cid-txrvAnUPgU {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrvAnUPgU .row {
  flex-direction: row-reverse;
}
.cid-txrvAnUPgU .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrvAnUPgU .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrvAnUPgU .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrvAnUPgU .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrvAnUPgU .link-wrap {
    align-items: center;
  }
}
.cid-txrvAnUPgU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrvAnUPgU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrvAnUPgU .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrvAnUPgU .btn:hover,
.cid-txrvAnUPgU .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrvAnUPgU .card-title {
  color: #000000;
}
.cid-txrvAnUPgU .mbr-subtile {
  color: #000000;
}
.cid-txrvAnUPgU .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrvAnUPgU .padding {
    padding-right: 110px;
  }
}
.cid-tGzQcXqhNH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzQcXqhNH .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzQcXqhNH .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzQcXqhNH .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzQcXqhNH .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzQcXqhNH .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzQcXqhNH .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzQcXqhNH .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrvAozAuK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrvAozAuK h2,
.cid-txrvAozAuK h3,
.cid-txrvAozAuK h4,
.cid-txrvAozAuK p {
  margin: 0;
}
.cid-txrvAozAuK .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrvAozAuK .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrvAozAuK .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrvAozAuK .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrvAozAuK .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrvAozAuK .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrvAoXdfW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrvAoXdfW .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrvAoXdfW .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrvAoXdfW .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrvAoXdfW .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrvAoXdfW .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrvAoXdfW .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrvAoXdfW .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrvApkRKF {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrvApkRKF .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrvApkRKF .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrvApkRKF .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrvApkRKF .info .col-6,
  .cid-txrvApkRKF .info .col-5 {
    width: 100%;
  }
  .cid-txrvApkRKF .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrvApkRKF .content .col-md-5 {
    width: 43%;
  }
  .cid-txrvApkRKF .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrvApkRKF .content .col-md-5 {
    width: 100%;
  }
  .cid-txrvApkRKF .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrvApkRKF .content {
    padding: 0;
  }
}
.cid-txrvApkRKF .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrvApkRKF .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrvApkRKF .contacts {
  margin: 20px 0;
}
.cid-txrvApkRKF .contacts p {
  margin: 0;
}
.cid-txrvApkRKF .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrvApkRKF .socials p {
  margin: 0 20px 0 0;
}
.cid-txrvApkRKF .socials-item .link {
  color: #000000;
}
.cid-txrvApkRKF .mbr-contacts {
  color: #000000;
}
.cid-txrvApkRKF .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrvApkRKF .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrvApkRKF .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrvApkRKF .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrvApkRKF .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrvApkRKF .item:first-child {
  margin-left: 0;
}
.cid-txrvApkRKF .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrvApkRKF .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrvApkRKF .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrvApkRKF .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrvApkRKF .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrvApkRKF .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrvApkRKF .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-txrvApkRKF .item:hover {
  cursor: pointer;
}
.cid-txrvApkRKF .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrvApkRKF .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrvApkRKF .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-txrvApkRKF .mbr-iconfont {
  color: #ffffff;
}
.cid-txrvApkRKF .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrvApkRKF .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrvApkRKF .menu p {
  margin: 0 0 5px;
}
.cid-txrvApkRKF h6 {
  font-size: 21px;
}
.cid-txrvApkRKF .menu-title {
  margin-bottom: 10px;
}
.cid-txrvApkRKF .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrvApkRKF .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrvApkRKF .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrxjwNLEF {
  z-index: 1000;
  width: 100%;
}
.cid-txrxjwNLEF nav.navbar {
  position: fixed;
}
.cid-txrxjwNLEF .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-txrxjwNLEF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrxjwNLEF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrxjwNLEF .dropdown-item:hover,
.cid-txrxjwNLEF .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrxjwNLEF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrxjwNLEF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrxjwNLEF .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrxjwNLEF .nav-item {
  margin: 0 31px;
}
.cid-txrxjwNLEF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrxjwNLEF .nav-link {
  position: relative;
}
.cid-txrxjwNLEF .nav-link:hover,
.cid-txrxjwNLEF .nav-link:focus,
.cid-txrxjwNLEF .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrxjwNLEF .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF .container {
    flex-wrap: inherit;
  }
}
.cid-txrxjwNLEF .navbar-caption:hover,
.cid-txrxjwNLEF .navbar-caption:focus,
.cid-txrxjwNLEF .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrxjwNLEF .dropdown-menu,
.cid-txrxjwNLEF .navbar.opened {
  background: #ffffff !important;
}
.cid-txrxjwNLEF .nav-item:focus,
.cid-txrxjwNLEF .nav-link:focus {
  outline: none;
}
.cid-txrxjwNLEF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrxjwNLEF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrxjwNLEF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrxjwNLEF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrxjwNLEF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrxjwNLEF .navbar.opened {
  transition: all 0.3s;
}
.cid-txrxjwNLEF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrxjwNLEF .navbar .navbar-logo img {
  width: auto;
}
.cid-txrxjwNLEF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrxjwNLEF .navbar.collapsed {
  justify-content: center;
}
.cid-txrxjwNLEF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrxjwNLEF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrxjwNLEF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrxjwNLEF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrxjwNLEF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrxjwNLEF .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-txrxjwNLEF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrxjwNLEF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrxjwNLEF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrxjwNLEF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrxjwNLEF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrxjwNLEF .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-txrxjwNLEF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrxjwNLEF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrxjwNLEF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrxjwNLEF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrxjwNLEF .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrxjwNLEF .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrxjwNLEF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrxjwNLEF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrxjwNLEF .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-txrxjwNLEF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrxjwNLEF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrxjwNLEF .dropdown-item.active,
.cid-txrxjwNLEF .dropdown-item:active {
  background-color: transparent;
}
.cid-txrxjwNLEF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrxjwNLEF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrxjwNLEF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrxjwNLEF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrxjwNLEF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrxjwNLEF .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrxjwNLEF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrxjwNLEF ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrxjwNLEF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrxjwNLEF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrxjwNLEF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrxjwNLEF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrxjwNLEF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrxjwNLEF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrxjwNLEF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrxjwNLEF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrxjwNLEF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrxjwNLEF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrxjwNLEF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrxjwNLEF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrxjwNLEF .navbar {
    height: 70px;
  }
  .cid-txrxjwNLEF .navbar.opened {
    height: auto;
  }
  .cid-txrxjwNLEF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrxjwNLEF .socials-wrap {
  flex-shrink: 0;
}
.cid-txrxjwNLEF .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrxjwNLEF .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrxjwNLEF .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrxjwNLEF .socials-item .link {
  color: #000000;
}
.cid-txrxjxtR14 {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrxjxtR14 .row {
  flex-direction: row-reverse;
}
.cid-txrxjxtR14 .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrxjxtR14 .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrxjxtR14 .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrxjxtR14 .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrxjxtR14 .link-wrap {
    align-items: center;
  }
}
.cid-txrxjxtR14 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrxjxtR14 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrxjxtR14 .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrxjxtR14 .btn:hover,
.cid-txrxjxtR14 .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrxjxtR14 .card-title {
  color: #000000;
}
.cid-txrxjxtR14 .mbr-subtile {
  color: #000000;
}
.cid-txrxjxtR14 .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrxjxtR14 .padding {
    padding-right: 110px;
  }
}
.cid-tGzSoecj7z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzSoecj7z .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzSoecj7z .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzSoecj7z .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzSoecj7z .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzSoecj7z .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzSoecj7z .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzSoecj7z .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrxjy3lw0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txrxjy3lw0 h2,
.cid-txrxjy3lw0 h3,
.cid-txrxjy3lw0 h4,
.cid-txrxjy3lw0 p {
  margin: 0;
}
.cid-txrxjy3lw0 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrxjy3lw0 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrxjy3lw0 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrxjy3lw0 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrxjy3lw0 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrxjy3lw0 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrxjysmQI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txrxjysmQI .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrxjysmQI .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrxjysmQI .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrxjysmQI .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrxjysmQI .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrxjysmQI .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrxjysmQI .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrxjySNF0 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrxjySNF0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrxjySNF0 .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrxjySNF0 .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrxjySNF0 .info .col-6,
  .cid-txrxjySNF0 .info .col-5 {
    width: 100%;
  }
  .cid-txrxjySNF0 .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrxjySNF0 .content .col-md-5 {
    width: 43%;
  }
  .cid-txrxjySNF0 .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrxjySNF0 .content .col-md-5 {
    width: 100%;
  }
  .cid-txrxjySNF0 .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrxjySNF0 .content {
    padding: 0;
  }
}
.cid-txrxjySNF0 .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrxjySNF0 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrxjySNF0 .contacts {
  margin: 20px 0;
}
.cid-txrxjySNF0 .contacts p {
  margin: 0;
}
.cid-txrxjySNF0 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrxjySNF0 .socials p {
  margin: 0 20px 0 0;
}
.cid-txrxjySNF0 .socials-item .link {
  color: #000000;
}
.cid-txrxjySNF0 .mbr-contacts {
  color: #000000;
}
.cid-txrxjySNF0 .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrxjySNF0 .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrxjySNF0 .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrxjySNF0 .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrxjySNF0 .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrxjySNF0 .item:first-child {
  margin-left: 0;
}
.cid-txrxjySNF0 .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrxjySNF0 .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrxjySNF0 .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrxjySNF0 .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrxjySNF0 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrxjySNF0 .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrxjySNF0 .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-txrxjySNF0 .item:hover {
  cursor: pointer;
}
.cid-txrxjySNF0 .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrxjySNF0 .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrxjySNF0 .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-txrxjySNF0 .mbr-iconfont {
  color: #ffffff;
}
.cid-txrxjySNF0 .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrxjySNF0 .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrxjySNF0 .menu p {
  margin: 0 0 5px;
}
.cid-txrxjySNF0 h6 {
  font-size: 21px;
}
.cid-txrxjySNF0 .menu-title {
  margin-bottom: 10px;
}
.cid-txrxjySNF0 .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrxjySNF0 .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrxjySNF0 .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txryQZfme1 {
  z-index: 1000;
  width: 100%;
}
.cid-txryQZfme1 nav.navbar {
  position: fixed;
}
.cid-txryQZfme1 .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-txryQZfme1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txryQZfme1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txryQZfme1 .dropdown-item:hover,
.cid-txryQZfme1 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txryQZfme1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txryQZfme1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txryQZfme1 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txryQZfme1 .nav-item {
  margin: 0 31px;
}
.cid-txryQZfme1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txryQZfme1 .nav-link {
  position: relative;
}
.cid-txryQZfme1 .nav-link:hover,
.cid-txryQZfme1 .nav-link:focus,
.cid-txryQZfme1 .nav-link:active {
  color: #ee3102 !important;
}
.cid-txryQZfme1 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 .container {
    flex-wrap: inherit;
  }
}
.cid-txryQZfme1 .navbar-caption:hover,
.cid-txryQZfme1 .navbar-caption:focus,
.cid-txryQZfme1 .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txryQZfme1 .dropdown-menu,
.cid-txryQZfme1 .navbar.opened {
  background: #ffffff !important;
}
.cid-txryQZfme1 .nav-item:focus,
.cid-txryQZfme1 .nav-link:focus {
  outline: none;
}
.cid-txryQZfme1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txryQZfme1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txryQZfme1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txryQZfme1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txryQZfme1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txryQZfme1 .navbar.opened {
  transition: all 0.3s;
}
.cid-txryQZfme1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txryQZfme1 .navbar .navbar-logo img {
  width: auto;
}
.cid-txryQZfme1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txryQZfme1 .navbar.collapsed {
  justify-content: center;
}
.cid-txryQZfme1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txryQZfme1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txryQZfme1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txryQZfme1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txryQZfme1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txryQZfme1 .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-txryQZfme1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txryQZfme1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txryQZfme1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txryQZfme1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txryQZfme1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txryQZfme1 .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-txryQZfme1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txryQZfme1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txryQZfme1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txryQZfme1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txryQZfme1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txryQZfme1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-txryQZfme1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txryQZfme1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txryQZfme1 .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-txryQZfme1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txryQZfme1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txryQZfme1 .dropdown-item.active,
.cid-txryQZfme1 .dropdown-item:active {
  background-color: transparent;
}
.cid-txryQZfme1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txryQZfme1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txryQZfme1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txryQZfme1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txryQZfme1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txryQZfme1 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txryQZfme1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txryQZfme1 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txryQZfme1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txryQZfme1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txryQZfme1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txryQZfme1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txryQZfme1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txryQZfme1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txryQZfme1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txryQZfme1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txryQZfme1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txryQZfme1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txryQZfme1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txryQZfme1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txryQZfme1 .navbar {
    height: 70px;
  }
  .cid-txryQZfme1 .navbar.opened {
    height: auto;
  }
  .cid-txryQZfme1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txryQZfme1 .socials-wrap {
  flex-shrink: 0;
}
.cid-txryQZfme1 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txryQZfme1 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txryQZfme1 .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txryQZfme1 .socials-item .link {
  color: #000000;
}
.cid-txryR01iKC {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txryR01iKC .row {
  flex-direction: row-reverse;
}
.cid-txryR01iKC .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txryR01iKC .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txryR01iKC .card {
    margin-bottom: 2rem !important;
  }
  .cid-txryR01iKC .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txryR01iKC .link-wrap {
    align-items: center;
  }
}
.cid-txryR01iKC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txryR01iKC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txryR01iKC .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txryR01iKC .btn:hover,
.cid-txryR01iKC .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txryR01iKC .card-title {
  color: #000000;
}
.cid-txryR01iKC .mbr-subtile {
  color: #000000;
}
.cid-txryR01iKC .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txryR01iKC .padding {
    padding-right: 110px;
  }
}
.cid-tGzT04UazX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzT04UazX .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzT04UazX .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzT04UazX .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzT04UazX .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzT04UazX .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzT04UazX .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzT04UazX .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txryR0BgA3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txryR0BgA3 h2,
.cid-txryR0BgA3 h3,
.cid-txryR0BgA3 h4,
.cid-txryR0BgA3 p {
  margin: 0;
}
.cid-txryR0BgA3 .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txryR0BgA3 .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txryR0BgA3 .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txryR0BgA3 .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txryR0BgA3 .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txryR0BgA3 .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txryR12A3w {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txryR12A3w .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txryR12A3w .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txryR12A3w .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txryR12A3w .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txryR12A3w .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txryR12A3w .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txryR12A3w .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txryR1pAdv {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txryR1pAdv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txryR1pAdv .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txryR1pAdv .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txryR1pAdv .info .col-6,
  .cid-txryR1pAdv .info .col-5 {
    width: 100%;
  }
  .cid-txryR1pAdv .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txryR1pAdv .content .col-md-5 {
    width: 43%;
  }
  .cid-txryR1pAdv .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txryR1pAdv .content .col-md-5 {
    width: 100%;
  }
  .cid-txryR1pAdv .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txryR1pAdv .content {
    padding: 0;
  }
}
.cid-txryR1pAdv .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txryR1pAdv .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txryR1pAdv .contacts {
  margin: 20px 0;
}
.cid-txryR1pAdv .contacts p {
  margin: 0;
}
.cid-txryR1pAdv .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txryR1pAdv .socials p {
  margin: 0 20px 0 0;
}
.cid-txryR1pAdv .socials-item .link {
  color: #000000;
}
.cid-txryR1pAdv .mbr-contacts {
  color: #000000;
}
.cid-txryR1pAdv .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txryR1pAdv .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txryR1pAdv .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txryR1pAdv .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txryR1pAdv .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txryR1pAdv .item:first-child {
  margin-left: 0;
}
.cid-txryR1pAdv .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txryR1pAdv .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txryR1pAdv .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txryR1pAdv .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txryR1pAdv .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txryR1pAdv .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txryR1pAdv .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-txryR1pAdv .item:hover {
  cursor: pointer;
}
.cid-txryR1pAdv .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txryR1pAdv .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txryR1pAdv .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-txryR1pAdv .mbr-iconfont {
  color: #ffffff;
}
.cid-txryR1pAdv .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txryR1pAdv .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txryR1pAdv .menu p {
  margin: 0 0 5px;
}
.cid-txryR1pAdv h6 {
  font-size: 21px;
}
.cid-txryR1pAdv .menu-title {
  margin-bottom: 10px;
}
.cid-txryR1pAdv .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txryR1pAdv .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txryR1pAdv .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txrzZV2vl0 {
  z-index: 1000;
  width: 100%;
}
.cid-txrzZV2vl0 nav.navbar {
  position: fixed;
}
.cid-txrzZV2vl0 .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-txrzZV2vl0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txrzZV2vl0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txrzZV2vl0 .dropdown-item:hover,
.cid-txrzZV2vl0 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txrzZV2vl0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txrzZV2vl0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txrzZV2vl0 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txrzZV2vl0 .nav-item {
  margin: 0 31px;
}
.cid-txrzZV2vl0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txrzZV2vl0 .nav-link {
  position: relative;
}
.cid-txrzZV2vl0 .nav-link:hover,
.cid-txrzZV2vl0 .nav-link:focus,
.cid-txrzZV2vl0 .nav-link:active {
  color: #ee3102 !important;
}
.cid-txrzZV2vl0 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 .container {
    flex-wrap: inherit;
  }
}
.cid-txrzZV2vl0 .navbar-caption:hover,
.cid-txrzZV2vl0 .navbar-caption:focus,
.cid-txrzZV2vl0 .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txrzZV2vl0 .dropdown-menu,
.cid-txrzZV2vl0 .navbar.opened {
  background: #ffffff !important;
}
.cid-txrzZV2vl0 .nav-item:focus,
.cid-txrzZV2vl0 .nav-link:focus {
  outline: none;
}
.cid-txrzZV2vl0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txrzZV2vl0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txrzZV2vl0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txrzZV2vl0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txrzZV2vl0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txrzZV2vl0 .navbar.opened {
  transition: all 0.3s;
}
.cid-txrzZV2vl0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txrzZV2vl0 .navbar .navbar-logo img {
  width: auto;
}
.cid-txrzZV2vl0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txrzZV2vl0 .navbar.collapsed {
  justify-content: center;
}
.cid-txrzZV2vl0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txrzZV2vl0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txrzZV2vl0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txrzZV2vl0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txrzZV2vl0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txrzZV2vl0 .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-txrzZV2vl0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txrzZV2vl0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txrzZV2vl0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txrzZV2vl0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txrzZV2vl0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txrzZV2vl0 .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-txrzZV2vl0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txrzZV2vl0 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txrzZV2vl0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txrzZV2vl0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txrzZV2vl0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txrzZV2vl0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-txrzZV2vl0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txrzZV2vl0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txrzZV2vl0 .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-txrzZV2vl0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txrzZV2vl0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txrzZV2vl0 .dropdown-item.active,
.cid-txrzZV2vl0 .dropdown-item:active {
  background-color: transparent;
}
.cid-txrzZV2vl0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txrzZV2vl0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txrzZV2vl0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txrzZV2vl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txrzZV2vl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txrzZV2vl0 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txrzZV2vl0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txrzZV2vl0 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txrzZV2vl0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txrzZV2vl0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txrzZV2vl0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txrzZV2vl0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrzZV2vl0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txrzZV2vl0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txrzZV2vl0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrzZV2vl0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txrzZV2vl0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txrzZV2vl0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txrzZV2vl0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txrzZV2vl0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txrzZV2vl0 .navbar {
    height: 70px;
  }
  .cid-txrzZV2vl0 .navbar.opened {
    height: auto;
  }
  .cid-txrzZV2vl0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txrzZV2vl0 .socials-wrap {
  flex-shrink: 0;
}
.cid-txrzZV2vl0 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txrzZV2vl0 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txrzZV2vl0 .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txrzZV2vl0 .socials-item .link {
  color: #000000;
}
.cid-txrzZW24MQ {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrzZW24MQ .row {
  flex-direction: row-reverse;
}
.cid-txrzZW24MQ .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txrzZW24MQ .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txrzZW24MQ .card {
    margin-bottom: 2rem !important;
  }
  .cid-txrzZW24MQ .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txrzZW24MQ .link-wrap {
    align-items: center;
  }
}
.cid-txrzZW24MQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txrzZW24MQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txrzZW24MQ .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txrzZW24MQ .btn:hover,
.cid-txrzZW24MQ .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txrzZW24MQ .card-title {
  color: #000000;
}
.cid-txrzZW24MQ .mbr-subtile {
  color: #000000;
}
.cid-txrzZW24MQ .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txrzZW24MQ .padding {
    padding-right: 110px;
  }
}
.cid-tGzUD9NTmr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzUD9NTmr .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzUD9NTmr .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzUD9NTmr .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzUD9NTmr .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzUD9NTmr .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzUD9NTmr .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzUD9NTmr .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrzZWRi5c {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrzZWRi5c h2,
.cid-txrzZWRi5c h3,
.cid-txrzZWRi5c h4,
.cid-txrzZWRi5c p {
  margin: 0;
}
.cid-txrzZWRi5c .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txrzZWRi5c .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txrzZWRi5c .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txrzZWRi5c .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txrzZWRi5c .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txrzZWRi5c .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txrzZXjKw4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txrzZXjKw4 .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txrzZXjKw4 .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txrzZXjKw4 .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txrzZXjKw4 .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txrzZXjKw4 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txrzZXjKw4 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txrzZXjKw4 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txrzZXIIql {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txrzZXIIql .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrzZXIIql .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txrzZXIIql .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txrzZXIIql .info .col-6,
  .cid-txrzZXIIql .info .col-5 {
    width: 100%;
  }
  .cid-txrzZXIIql .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txrzZXIIql .content .col-md-5 {
    width: 43%;
  }
  .cid-txrzZXIIql .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txrzZXIIql .content .col-md-5 {
    width: 100%;
  }
  .cid-txrzZXIIql .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txrzZXIIql .content {
    padding: 0;
  }
}
.cid-txrzZXIIql .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txrzZXIIql .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txrzZXIIql .contacts {
  margin: 20px 0;
}
.cid-txrzZXIIql .contacts p {
  margin: 0;
}
.cid-txrzZXIIql .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrzZXIIql .socials p {
  margin: 0 20px 0 0;
}
.cid-txrzZXIIql .socials-item .link {
  color: #000000;
}
.cid-txrzZXIIql .mbr-contacts {
  color: #000000;
}
.cid-txrzZXIIql .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txrzZXIIql .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txrzZXIIql .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txrzZXIIql .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txrzZXIIql .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txrzZXIIql .item:first-child {
  margin-left: 0;
}
.cid-txrzZXIIql .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txrzZXIIql .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txrzZXIIql .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txrzZXIIql .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txrzZXIIql .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txrzZXIIql .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txrzZXIIql .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-txrzZXIIql .item:hover {
  cursor: pointer;
}
.cid-txrzZXIIql .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txrzZXIIql .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txrzZXIIql .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-txrzZXIIql .mbr-iconfont {
  color: #ffffff;
}
.cid-txrzZXIIql .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txrzZXIIql .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txrzZXIIql .menu p {
  margin: 0 0 5px;
}
.cid-txrzZXIIql h6 {
  font-size: 21px;
}
.cid-txrzZXIIql .menu-title {
  margin-bottom: 10px;
}
.cid-txrzZXIIql .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txrzZXIIql .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txrzZXIIql .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txruc50L50 {
  z-index: 1000;
  width: 100%;
}
.cid-txruc50L50 nav.navbar {
  position: fixed;
}
.cid-txruc50L50 .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-txruc50L50 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txruc50L50 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txruc50L50 .dropdown-item:hover,
.cid-txruc50L50 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txruc50L50 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txruc50L50 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txruc50L50 .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txruc50L50 .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txruc50L50 .nav-item {
  margin: 0 31px;
}
.cid-txruc50L50 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txruc50L50 .nav-link {
  position: relative;
}
.cid-txruc50L50 .nav-link:hover,
.cid-txruc50L50 .nav-link:focus,
.cid-txruc50L50 .nav-link:active {
  color: #ee3102 !important;
}
.cid-txruc50L50 .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txruc50L50 .container {
    flex-wrap: inherit;
  }
}
.cid-txruc50L50 .navbar-caption:hover,
.cid-txruc50L50 .navbar-caption:focus,
.cid-txruc50L50 .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txruc50L50 .dropdown-menu,
.cid-txruc50L50 .navbar.opened {
  background: #ffffff !important;
}
.cid-txruc50L50 .nav-item:focus,
.cid-txruc50L50 .nav-link:focus {
  outline: none;
}
.cid-txruc50L50 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txruc50L50 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txruc50L50 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txruc50L50 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txruc50L50 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txruc50L50 .navbar.opened {
  transition: all 0.3s;
}
.cid-txruc50L50 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txruc50L50 .navbar .navbar-logo img {
  width: auto;
}
.cid-txruc50L50 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txruc50L50 .navbar.collapsed {
  justify-content: center;
}
.cid-txruc50L50 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txruc50L50 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txruc50L50 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txruc50L50 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txruc50L50 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txruc50L50 .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-txruc50L50 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txruc50L50 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txruc50L50 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txruc50L50 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txruc50L50 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txruc50L50 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txruc50L50 .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-txruc50L50 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txruc50L50 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txruc50L50 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txruc50L50 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txruc50L50 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txruc50L50 .navbar.navbar-short {
  min-height: 60px;
}
.cid-txruc50L50 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txruc50L50 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txruc50L50 .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-txruc50L50 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txruc50L50 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txruc50L50 .dropdown-item.active,
.cid-txruc50L50 .dropdown-item:active {
  background-color: transparent;
}
.cid-txruc50L50 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txruc50L50 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txruc50L50 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txruc50L50 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txruc50L50 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txruc50L50 .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txruc50L50 .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txruc50L50 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txruc50L50 ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txruc50L50 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txruc50L50 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txruc50L50 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txruc50L50 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txruc50L50 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txruc50L50 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txruc50L50 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txruc50L50 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txruc50L50 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txruc50L50 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txruc50L50 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txruc50L50 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txruc50L50 a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txruc50L50 .navbar {
    height: 70px;
  }
  .cid-txruc50L50 .navbar.opened {
    height: auto;
  }
  .cid-txruc50L50 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txruc50L50 .socials-wrap {
  flex-shrink: 0;
}
.cid-txruc50L50 .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txruc50L50 .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txruc50L50 .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txruc50L50 .socials-item .link {
  color: #000000;
}
.cid-txruc5MC1m {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txruc5MC1m .row {
  flex-direction: row-reverse;
}
.cid-txruc5MC1m .card-wrapper {
  padding-right: 2rem;
}
@media (min-width: 1400px) {
  .cid-txruc5MC1m .container {
    max-width: 1162px;
  }
}
@media (max-width: 991px) {
  .cid-txruc5MC1m .card {
    margin-bottom: 2rem !important;
  }
  .cid-txruc5MC1m .card-wrapper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .cid-txruc5MC1m .link-wrap {
    align-items: center;
  }
}
.cid-txruc5MC1m .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-txruc5MC1m .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-txruc5MC1m .btn {
  padding: 13px 37px 17px;
  border-radius: 100px;
}
.cid-txruc5MC1m .btn:hover,
.cid-txruc5MC1m .btn:focus {
  border-color: #f4aee6 !important;
  background-color: #f4aee6 !important;
}
.cid-txruc5MC1m .card-title {
  color: #000000;
}
.cid-txruc5MC1m .mbr-subtile {
  color: #000000;
}
.cid-txruc5MC1m .price {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-txruc5MC1m .padding {
    padding-right: 110px;
  }
}
.cid-tGzPI94kyM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGzPI94kyM .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-tGzPI94kyM .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-tGzPI94kyM .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tGzPI94kyM .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-tGzPI94kyM .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGzPI94kyM .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-tGzPI94kyM .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txruc6sqcT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txruc6sqcT h2,
.cid-txruc6sqcT h3,
.cid-txruc6sqcT h4,
.cid-txruc6sqcT p {
  margin: 0;
}
.cid-txruc6sqcT .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txruc6sqcT .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txruc6sqcT .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txruc6sqcT .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txruc6sqcT .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txruc6sqcT .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txruc7k9Et {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txruc7k9Et .items {
  display: flex;
  flex-wrap: wrap;
}
.cid-txruc7k9Et .item {
  width: 33.33333%;
  padding: 15px;
  aspect-ratio: 1;
}
.cid-txruc7k9Et .item .item-wrapper {
  width: 100%;
  height: 100%;
}
.cid-txruc7k9Et .item .item-img {
  width: 100%;
  height: 100%;
}
.cid-txruc7k9Et .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-txruc7k9Et .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-txruc7k9Et .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-txruc7KYXW {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txruc7KYXW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txruc7KYXW .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txruc7KYXW .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txruc7KYXW .info .col-6,
  .cid-txruc7KYXW .info .col-5 {
    width: 100%;
  }
  .cid-txruc7KYXW .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txruc7KYXW .content .col-md-5 {
    width: 43%;
  }
  .cid-txruc7KYXW .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txruc7KYXW .content .col-md-5 {
    width: 100%;
  }
  .cid-txruc7KYXW .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txruc7KYXW .content {
    padding: 0;
  }
}
.cid-txruc7KYXW .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txruc7KYXW .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txruc7KYXW .contacts {
  margin: 20px 0;
}
.cid-txruc7KYXW .contacts p {
  margin: 0;
}
.cid-txruc7KYXW .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txruc7KYXW .socials p {
  margin: 0 20px 0 0;
}
.cid-txruc7KYXW .socials-item .link {
  color: #000000;
}
.cid-txruc7KYXW .mbr-contacts {
  color: #000000;
}
.cid-txruc7KYXW .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txruc7KYXW .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txruc7KYXW .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txruc7KYXW .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txruc7KYXW .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txruc7KYXW .item:first-child {
  margin-left: 0;
}
.cid-txruc7KYXW .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txruc7KYXW .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txruc7KYXW .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txruc7KYXW .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txruc7KYXW .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txruc7KYXW .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txruc7KYXW .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-txruc7KYXW .item:hover {
  cursor: pointer;
}
.cid-txruc7KYXW .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txruc7KYXW .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txruc7KYXW .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-txruc7KYXW .mbr-iconfont {
  color: #ffffff;
}
.cid-txruc7KYXW .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txruc7KYXW .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txruc7KYXW .menu p {
  margin: 0 0 5px;
}
.cid-txruc7KYXW h6 {
  font-size: 21px;
}
.cid-txruc7KYXW .menu-title {
  margin-bottom: 10px;
}
.cid-txruc7KYXW .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txruc7KYXW .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txruc7KYXW .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txx7I7sn3Y {
  z-index: 1000;
  width: 100%;
}
.cid-txx7I7sn3Y nav.navbar {
  position: fixed;
}
.cid-txx7I7sn3Y .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-txx7I7sn3Y .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txx7I7sn3Y .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txx7I7sn3Y .dropdown-item:hover,
.cid-txx7I7sn3Y .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txx7I7sn3Y .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txx7I7sn3Y .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txx7I7sn3Y .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txx7I7sn3Y .nav-item {
  margin: 0 31px;
}
.cid-txx7I7sn3Y .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txx7I7sn3Y .nav-link {
  position: relative;
}
.cid-txx7I7sn3Y .nav-link:hover,
.cid-txx7I7sn3Y .nav-link:focus,
.cid-txx7I7sn3Y .nav-link:active {
  color: #ee3102 !important;
}
.cid-txx7I7sn3Y .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y .container {
    flex-wrap: inherit;
  }
}
.cid-txx7I7sn3Y .navbar-caption:hover,
.cid-txx7I7sn3Y .navbar-caption:focus,
.cid-txx7I7sn3Y .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txx7I7sn3Y .dropdown-menu,
.cid-txx7I7sn3Y .navbar.opened {
  background: #ffffff !important;
}
.cid-txx7I7sn3Y .nav-item:focus,
.cid-txx7I7sn3Y .nav-link:focus {
  outline: none;
}
.cid-txx7I7sn3Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txx7I7sn3Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txx7I7sn3Y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txx7I7sn3Y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txx7I7sn3Y .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txx7I7sn3Y .navbar.opened {
  transition: all 0.3s;
}
.cid-txx7I7sn3Y .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txx7I7sn3Y .navbar .navbar-logo img {
  width: auto;
}
.cid-txx7I7sn3Y .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txx7I7sn3Y .navbar.collapsed {
  justify-content: center;
}
.cid-txx7I7sn3Y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txx7I7sn3Y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txx7I7sn3Y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txx7I7sn3Y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txx7I7sn3Y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txx7I7sn3Y .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-txx7I7sn3Y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txx7I7sn3Y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txx7I7sn3Y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txx7I7sn3Y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txx7I7sn3Y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txx7I7sn3Y .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-txx7I7sn3Y .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txx7I7sn3Y .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txx7I7sn3Y .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txx7I7sn3Y .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txx7I7sn3Y .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txx7I7sn3Y .navbar.navbar-short {
  min-height: 60px;
}
.cid-txx7I7sn3Y .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txx7I7sn3Y .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txx7I7sn3Y .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-txx7I7sn3Y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txx7I7sn3Y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txx7I7sn3Y .dropdown-item.active,
.cid-txx7I7sn3Y .dropdown-item:active {
  background-color: transparent;
}
.cid-txx7I7sn3Y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txx7I7sn3Y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txx7I7sn3Y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txx7I7sn3Y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txx7I7sn3Y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txx7I7sn3Y .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txx7I7sn3Y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txx7I7sn3Y ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txx7I7sn3Y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txx7I7sn3Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txx7I7sn3Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txx7I7sn3Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txx7I7sn3Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txx7I7sn3Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txx7I7sn3Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txx7I7sn3Y nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txx7I7sn3Y nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txx7I7sn3Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txx7I7sn3Y .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txx7I7sn3Y a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txx7I7sn3Y .navbar {
    height: 70px;
  }
  .cid-txx7I7sn3Y .navbar.opened {
    height: auto;
  }
  .cid-txx7I7sn3Y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txx7I7sn3Y .socials-wrap {
  flex-shrink: 0;
}
.cid-txx7I7sn3Y .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txx7I7sn3Y .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txx7I7sn3Y .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txx7I7sn3Y .socials-item .link {
  color: #000000;
}
.cid-tGzV59w8MU {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/coleccion6-2000x1036.jpg");
}
.cid-tGzV59w8MU .mbr-section-title {
  color: #9f1111;
}
.cid-tGzV59w8MU .mbr-text,
.cid-tGzV59w8MU .mbr-section-btn {
  color: #fafafa;
}
.cid-txywsTfvqd {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-txywsTfvqd h2,
.cid-txywsTfvqd h3,
.cid-txywsTfvqd h4,
.cid-txywsTfvqd p {
  margin: 0;
}
.cid-txywsTfvqd .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txywsTfvqd .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txywsTfvqd .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txywsTfvqd .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txywsTfvqd .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txywsTfvqd .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txyBbsNxZ9 {
  padding-top: 420px;
  background-image: url("../../../assets/images/2717666-2000x1333.jpeg");
}
.cid-tGzUUieddr {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tGzUUieddr .mbr-section-head {
    padding: 0 18px;
  }
}
.cid-tGzUUieddr .people {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tGzUUieddr .people {
    padding: 0;
  }
}
.cid-tGzUUieddr .mbr-section-title {
  color: #000000;
  margin: 0;
}
.cid-tGzUUieddr .mbr-section-subtitle {
  color: #6b6b6b;
  margin: 0;
}
.cid-tGzUUieddr .mbr-text {
  color: #6b6b6b;
  margin: 10px auto;
}
.cid-tGzUUieddr .item-name {
  color: #000000;
  text-align: center;
  margin: 0;
}
.cid-tGzUUieddr h3 {
  margin: 0;
}
.cid-tGzUUieddr .occupation {
  color: #6b6b6b;
  text-align: center;
  margin: 0;
}
.cid-tGzUUieddr .item {
  margin-bottom: 30px;
  transition: all 1s ease-out;
}
.cid-tGzUUieddr .item-caption {
  padding-top: 14px;
  background: transparent;
  background: #ffffff;
}
.cid-tGzUUieddr .item-img {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cid-tGzUUieddr .item-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-out;
  --qodef-gradient-color-1: rgba(248, 117, 117, 0.8);
  --qodef-gradient-color-2: rgba(255, 160, 160, 0.44);
  --qodef-gradient-color-3: rgba(254, 216, 255, 0);
  --qodef-gradient-color-4: #b1d2fe;
  --qodef-gradient-color-5: rgba(230, 255, 250, 0);
  --qodef-gradient-color-6: #d8cafe;
  background: radial-gradient(105.68% 45.69% at 92.95% 50%, var(--qodef-gradient-color-1) 0, var(--qodef-gradient-color-2) 53.91%, var(--qodef-gradient-color-3) 100%), radial-gradient(103.18% 103.18% at 90.11% 102.39%, var(--qodef-gradient-color-4) 0, var(--qodef-gradient-color-5) 100%), radial-gradient(90.45% 90.45% at 87.84% 9.55%, var(--qodef-gradient-color-5) 0, rgba(254, 219, 246, 0) 100%), linear-gradient(135.66deg, var(--qodef-gradient-color-6) 14.89%, var(--qodef-gradient-color-6) 74.33%);
  z-index: 1;
  pointer-events: none;
}
.cid-tGzUUieddr .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGzUUieddr .item:hover {
  cursor: pointer;
}
.cid-tGzUUieddr .item:hover .item-img::before {
  opacity: 0.7;
}
.cid-txx7IfqGzS {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txx7IfqGzS .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txx7IfqGzS .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txx7IfqGzS .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txx7IfqGzS .info .col-6,
  .cid-txx7IfqGzS .info .col-5 {
    width: 100%;
  }
  .cid-txx7IfqGzS .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txx7IfqGzS .content .col-md-5 {
    width: 43%;
  }
  .cid-txx7IfqGzS .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txx7IfqGzS .content .col-md-5 {
    width: 100%;
  }
  .cid-txx7IfqGzS .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txx7IfqGzS .content {
    padding: 0;
  }
}
.cid-txx7IfqGzS .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txx7IfqGzS .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txx7IfqGzS .contacts {
  margin: 20px 0;
}
.cid-txx7IfqGzS .contacts p {
  margin: 0;
}
.cid-txx7IfqGzS .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txx7IfqGzS .socials p {
  margin: 0 20px 0 0;
}
.cid-txx7IfqGzS .socials-item .link {
  color: #000000;
}
.cid-txx7IfqGzS .mbr-contacts {
  color: #000000;
}
.cid-txx7IfqGzS .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txx7IfqGzS .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txx7IfqGzS .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txx7IfqGzS .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txx7IfqGzS .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txx7IfqGzS .item:first-child {
  margin-left: 0;
}
.cid-txx7IfqGzS .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txx7IfqGzS .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txx7IfqGzS .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txx7IfqGzS .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txx7IfqGzS .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txx7IfqGzS .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txx7IfqGzS .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-txx7IfqGzS .item:hover {
  cursor: pointer;
}
.cid-txx7IfqGzS .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txx7IfqGzS .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txx7IfqGzS .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-txx7IfqGzS .mbr-iconfont {
  color: #ffffff;
}
.cid-txx7IfqGzS .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txx7IfqGzS .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txx7IfqGzS .menu p {
  margin: 0 0 5px;
}
.cid-txx7IfqGzS h6 {
  font-size: 21px;
}
.cid-txx7IfqGzS .menu-title {
  margin-bottom: 10px;
}
.cid-txx7IfqGzS .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txx7IfqGzS .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txx7IfqGzS .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txyxmBU2mJ {
  z-index: 1000;
  width: 100%;
}
.cid-txyxmBU2mJ nav.navbar {
  position: fixed;
}
.cid-txyxmBU2mJ .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-txyxmBU2mJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txyxmBU2mJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txyxmBU2mJ .dropdown-item:hover,
.cid-txyxmBU2mJ .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txyxmBU2mJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txyxmBU2mJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txyxmBU2mJ .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txyxmBU2mJ .nav-item {
  margin: 0 31px;
}
.cid-txyxmBU2mJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txyxmBU2mJ .nav-link {
  position: relative;
}
.cid-txyxmBU2mJ .nav-link:hover,
.cid-txyxmBU2mJ .nav-link:focus,
.cid-txyxmBU2mJ .nav-link:active {
  color: #ee3102 !important;
}
.cid-txyxmBU2mJ .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ .container {
    flex-wrap: inherit;
  }
}
.cid-txyxmBU2mJ .navbar-caption:hover,
.cid-txyxmBU2mJ .navbar-caption:focus,
.cid-txyxmBU2mJ .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txyxmBU2mJ .dropdown-menu,
.cid-txyxmBU2mJ .navbar.opened {
  background: #ffffff !important;
}
.cid-txyxmBU2mJ .nav-item:focus,
.cid-txyxmBU2mJ .nav-link:focus {
  outline: none;
}
.cid-txyxmBU2mJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txyxmBU2mJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txyxmBU2mJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txyxmBU2mJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txyxmBU2mJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txyxmBU2mJ .navbar.opened {
  transition: all 0.3s;
}
.cid-txyxmBU2mJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txyxmBU2mJ .navbar .navbar-logo img {
  width: auto;
}
.cid-txyxmBU2mJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txyxmBU2mJ .navbar.collapsed {
  justify-content: center;
}
.cid-txyxmBU2mJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txyxmBU2mJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txyxmBU2mJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txyxmBU2mJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txyxmBU2mJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txyxmBU2mJ .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-txyxmBU2mJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txyxmBU2mJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txyxmBU2mJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txyxmBU2mJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txyxmBU2mJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txyxmBU2mJ .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-txyxmBU2mJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txyxmBU2mJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txyxmBU2mJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txyxmBU2mJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txyxmBU2mJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txyxmBU2mJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-txyxmBU2mJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txyxmBU2mJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txyxmBU2mJ .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-txyxmBU2mJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txyxmBU2mJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txyxmBU2mJ .dropdown-item.active,
.cid-txyxmBU2mJ .dropdown-item:active {
  background-color: transparent;
}
.cid-txyxmBU2mJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txyxmBU2mJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txyxmBU2mJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txyxmBU2mJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txyxmBU2mJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txyxmBU2mJ .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txyxmBU2mJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txyxmBU2mJ ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txyxmBU2mJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txyxmBU2mJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txyxmBU2mJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txyxmBU2mJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyxmBU2mJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyxmBU2mJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txyxmBU2mJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyxmBU2mJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txyxmBU2mJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txyxmBU2mJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyxmBU2mJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txyxmBU2mJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txyxmBU2mJ .navbar {
    height: 70px;
  }
  .cid-txyxmBU2mJ .navbar.opened {
    height: auto;
  }
  .cid-txyxmBU2mJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txyxmBU2mJ .socials-wrap {
  flex-shrink: 0;
}
.cid-txyxmBU2mJ .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txyxmBU2mJ .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txyxmBU2mJ .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txyxmBU2mJ .socials-item .link {
  color: #000000;
}
.cid-txyxmDZDzv {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-txyxmDZDzv h2,
.cid-txyxmDZDzv h3,
.cid-txyxmDZDzv h4,
.cid-txyxmDZDzv p {
  margin: 0;
}
.cid-txyxmDZDzv .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txyxmDZDzv .mbr-first-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txyxmDZDzv .mbr-first-section-subtitle {
  margin-bottom: 5px;
}
.cid-txyxmDZDzv .mbr-first-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txyxmDZDzv .mbr-second-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txyxmDZDzv .mbr-second-section-subtitle {
  margin-bottom: 5px;
}
.cid-txyxmDZDzv .mbr-second-section-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txyxmF5chY {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txyxmF5chY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txyxmF5chY .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txyxmF5chY .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txyxmF5chY .info .col-6,
  .cid-txyxmF5chY .info .col-5 {
    width: 100%;
  }
  .cid-txyxmF5chY .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txyxmF5chY .content .col-md-5 {
    width: 43%;
  }
  .cid-txyxmF5chY .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txyxmF5chY .content .col-md-5 {
    width: 100%;
  }
  .cid-txyxmF5chY .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txyxmF5chY .content {
    padding: 0;
  }
}
.cid-txyxmF5chY .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txyxmF5chY .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txyxmF5chY .contacts {
  margin: 20px 0;
}
.cid-txyxmF5chY .contacts p {
  margin: 0;
}
.cid-txyxmF5chY .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txyxmF5chY .socials p {
  margin: 0 20px 0 0;
}
.cid-txyxmF5chY .socials-item .link {
  color: #000000;
}
.cid-txyxmF5chY .mbr-contacts {
  color: #000000;
}
.cid-txyxmF5chY .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txyxmF5chY .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txyxmF5chY .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txyxmF5chY .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txyxmF5chY .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txyxmF5chY .item:first-child {
  margin-left: 0;
}
.cid-txyxmF5chY .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txyxmF5chY .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txyxmF5chY .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txyxmF5chY .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txyxmF5chY .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txyxmF5chY .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txyxmF5chY .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-txyxmF5chY .item:hover {
  cursor: pointer;
}
.cid-txyxmF5chY .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txyxmF5chY .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txyxmF5chY .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-txyxmF5chY .mbr-iconfont {
  color: #ffffff;
}
.cid-txyxmF5chY .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txyxmF5chY .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txyxmF5chY .menu p {
  margin: 0 0 5px;
}
.cid-txyxmF5chY h6 {
  font-size: 21px;
}
.cid-txyxmF5chY .menu-title {
  margin-bottom: 10px;
}
.cid-txyxmF5chY .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txyxmF5chY .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txyxmF5chY .copyright > p {
  text-align: center;
  color: #000000;
}
.cid-txyz1YUBTk {
  z-index: 1000;
  width: 100%;
}
.cid-txyz1YUBTk nav.navbar {
  position: fixed;
}
.cid-txyz1YUBTk .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-txyz1YUBTk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-txyz1YUBTk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-txyz1YUBTk .dropdown-item:hover,
.cid-txyz1YUBTk .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-txyz1YUBTk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-txyz1YUBTk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-txyz1YUBTk .nav-dropdown .link {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk .nav-dropdown .link {
    margin: 10px 0 !important;
  }
}
.cid-txyz1YUBTk .nav-item {
  margin: 0 31px;
}
.cid-txyz1YUBTk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-txyz1YUBTk .nav-link {
  position: relative;
}
.cid-txyz1YUBTk .nav-link:hover,
.cid-txyz1YUBTk .nav-link:focus,
.cid-txyz1YUBTk .nav-link:active {
  color: #ee3102 !important;
}
.cid-txyz1YUBTk .container {
  display: flex;
  margin: auto;
  flex-wrap: initial;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk .container {
    flex-wrap: inherit;
  }
}
.cid-txyz1YUBTk .navbar-caption:hover,
.cid-txyz1YUBTk .navbar-caption:focus,
.cid-txyz1YUBTk .navbar-caption:active {
  color: #ee3102 !important;
}
.cid-txyz1YUBTk .dropdown-menu,
.cid-txyz1YUBTk .navbar.opened {
  background: #ffffff !important;
}
.cid-txyz1YUBTk .nav-item:focus,
.cid-txyz1YUBTk .nav-link:focus {
  outline: none;
}
.cid-txyz1YUBTk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-txyz1YUBTk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txyz1YUBTk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txyz1YUBTk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txyz1YUBTk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.6);
}
.cid-txyz1YUBTk .navbar.opened {
  transition: all 0.3s;
}
.cid-txyz1YUBTk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-txyz1YUBTk .navbar .navbar-logo img {
  width: auto;
}
.cid-txyz1YUBTk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-txyz1YUBTk .navbar.collapsed {
  justify-content: center;
}
.cid-txyz1YUBTk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txyz1YUBTk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txyz1YUBTk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-txyz1YUBTk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txyz1YUBTk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txyz1YUBTk .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-txyz1YUBTk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txyz1YUBTk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txyz1YUBTk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txyz1YUBTk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txyz1YUBTk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txyz1YUBTk .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-txyz1YUBTk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-txyz1YUBTk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-txyz1YUBTk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txyz1YUBTk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-txyz1YUBTk .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-txyz1YUBTk .navbar.navbar-short {
  min-height: 60px;
}
.cid-txyz1YUBTk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-txyz1YUBTk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-txyz1YUBTk .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-txyz1YUBTk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txyz1YUBTk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txyz1YUBTk .dropdown-item.active,
.cid-txyz1YUBTk .dropdown-item:active {
  background-color: transparent;
}
.cid-txyz1YUBTk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txyz1YUBTk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txyz1YUBTk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txyz1YUBTk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-txyz1YUBTk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txyz1YUBTk .navbar > .container-fluid {
  flex-wrap: unset;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk .navbar > .container-fluid {
    flex-wrap: inherit;
  }
}
.cid-txyz1YUBTk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txyz1YUBTk ul.navbar-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-txyz1YUBTk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-txyz1YUBTk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-txyz1YUBTk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-txyz1YUBTk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyz1YUBTk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-txyz1YUBTk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-txyz1YUBTk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyz1YUBTk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-txyz1YUBTk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-txyz1YUBTk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-txyz1YUBTk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-txyz1YUBTk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk a.nav-link {
    justify-content: flex-start;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txyz1YUBTk .navbar {
    height: 70px;
  }
  .cid-txyz1YUBTk .navbar.opened {
    height: auto;
  }
  .cid-txyz1YUBTk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txyz1YUBTk .socials-wrap {
  flex-shrink: 0;
}
.cid-txyz1YUBTk .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: -20px;
  justify-content: center;
}
.cid-txyz1YUBTk .socials p {
  margin: 0 20px 0 0;
}
@media (max-width: 991px) {
  .cid-txyz1YUBTk .socials {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
.cid-txyz1YUBTk .socials-item .link {
  color: #000000;
}
.cid-tGzVsFRBv2 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/coleccion14-2000x1423.jpg");
}
.cid-tGzVsFRBv2 .mbr-section-title {
  color: #9f1111;
}
.cid-tGzVsFRBv2 .mbr-text,
.cid-tGzVsFRBv2 .mbr-section-btn {
  color: #fafafa;
}
.cid-txyz1ZxOmH {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-txyz1ZxOmH h2,
.cid-txyz1ZxOmH h3,
.cid-txyz1ZxOmH h4,
.cid-txyz1ZxOmH p {
  margin: 0;
}
.cid-txyz1ZxOmH .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txyz1ZxOmH .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txyz1ZxOmH .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txyz1ZxOmH .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txyz1ZxOmH .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txyz1ZxOmH .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
  text-align: left;
}
.cid-txyAahZRXw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txyAahZRXw h2,
.cid-txyAahZRXw h3,
.cid-txyAahZRXw h4,
.cid-txyAahZRXw p {
  margin: 0;
}
.cid-txyAahZRXw .image-wrap {
  width: 100%;
  margin-bottom: 28px;
}
.cid-txyAahZRXw .image-wrap img {
  width: 100%;
  height: auto;
}
.cid-txyAahZRXw .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-txyAahZRXw .mbr-section-title {
  color: #000000;
  margin-bottom: 22px;
}
.cid-txyAahZRXw .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-txyAahZRXw .mbr-text {
  color: #6b6b6b;
  margin-bottom: 10px;
}
.cid-txyBSdxJa7 {
  padding-top: 420px;
  background-image: url("../../../assets/images/6562732-2-2000x1333.jpeg");
}
.cid-txyz21kbMP {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-txyz21kbMP .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txyz21kbMP .info .col-6 {
    width: 55%;
  }
}
@media (max-width: 922px) {
  .cid-txyz21kbMP .info .col-5 {
    margin-left: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txyz21kbMP .info .col-6,
  .cid-txyz21kbMP .info .col-5 {
    width: 100%;
  }
  .cid-txyz21kbMP .info .col-5 {
    margin-left: 0;
    margin-top: 29px;
  }
}
@media (min-width: 923px) and (max-width: 1200px) {
  .cid-txyz21kbMP .content .col-md-5 {
    width: 43%;
  }
  .cid-txyz21kbMP .content .col-md-6 {
    width: 57%;
  }
}
@media (max-width: 922px) {
  .cid-txyz21kbMP .content .col-md-5 {
    width: 100%;
  }
  .cid-txyz21kbMP .content .col-md-6 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-txyz21kbMP .content {
    padding: 0;
  }
}
.cid-txyz21kbMP .mbr-brand {
  color: #000000;
  font-weight: 600;
}
.cid-txyz21kbMP .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
  font-weight: 300;
}
.cid-txyz21kbMP .contacts {
  margin: 20px 0;
}
.cid-txyz21kbMP .contacts p {
  margin: 0;
}
.cid-txyz21kbMP .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txyz21kbMP .socials p {
  margin: 0 20px 0 0;
}
.cid-txyz21kbMP .socials-item .link {
  color: #000000;
}
.cid-txyz21kbMP .mbr-contacts {
  color: #000000;
}
.cid-txyz21kbMP .instagram-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 922px) {
  .cid-txyz21kbMP .instagram-wrap {
    margin-top: 29px;
  }
}
.cid-txyz21kbMP .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 922px) {
  .cid-txyz21kbMP .image-container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.cid-txyz21kbMP .item {
  margin: 0 5px;
  position: relative;
  width: 98px;
  height: 98px;
}
.cid-txyz21kbMP .item:first-child {
  margin-left: 0;
}
.cid-txyz21kbMP .item:last-child {
  margin-right: 0;
}
@media (max-width: 640px) {
  .cid-txyz21kbMP .item {
    margin: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .cid-txyz21kbMP .item {
    width: 201px;
    height: auto;
    flex: 1 0 201px;
  }
}
@media (max-width: 480px) {
  .cid-txyz21kbMP .item {
    width: 262px;
    height: auto;
    flex: 1 0 262px;
  }
}
.cid-txyz21kbMP .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-txyz21kbMP .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-txyz21kbMP .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-txyz21kbMP .item:hover {
  cursor: pointer;
}
.cid-txyz21kbMP .item:hover .image-wrap::before {
  background: rgba(255, 255, 255, 0.1);
}
.cid-txyz21kbMP .item:hover .icon-wrap {
  opacity: 0.9;
}
.cid-txyz21kbMP .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-txyz21kbMP .mbr-iconfont {
  color: #ffffff;
}
.cid-txyz21kbMP .mbr-section-title {
  color: #000000;
  margin-bottom: 23px;
}
.cid-txyz21kbMP .menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-txyz21kbMP .menu p {
  margin: 0 0 5px;
}
.cid-txyz21kbMP h6 {
  font-size: 21px;
}
.cid-txyz21kbMP .menu-title {
  margin-bottom: 10px;
}
.cid-txyz21kbMP .footer-lower .copyright {
  margin-bottom: 1rem;
}
.cid-txyz21kbMP .footer-lower hr {
  margin: 1rem 0;
  height: 1px;
  background-color: #000000;
  border: none;
}
.cid-txyz21kbMP .copyright > p {
  text-align: center;
  color: #000000;
}
