body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #bed3f9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
  color: #1046a8 !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: #6f9df2 !important;
  border-color: #6f9df2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #1046a8 !important;
  background-color: #6f9df2 !important;
  border-color: #6f9df2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #bed3f9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6f9df2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #1046a8 !important;
  background-color: #bed3f9 !important;
  border-color: #bed3f9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !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: #bed3f9 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6194f0 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #bed3f9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bed3f9;
  border-color: #bed3f9;
  color: #1250c0;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bed3f9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #bed3f9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #bed3f9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bed3f9;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bed3f9;
}
.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: #bed3f9;
  border-bottom-color: #bed3f9;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bed3f9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23bed3f9' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tIRQho6gJJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tIRQho6gJJ nav.navbar {
  position: fixed;
}
.cid-tIRQho6gJJ .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-tIRQho6gJJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIRQho6gJJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIRQho6gJJ .dropdown-item:hover,
.cid-tIRQho6gJJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tIRQho6gJJ .dropdown-item:hover span {
  color: white;
}
.cid-tIRQho6gJJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIRQho6gJJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIRQho6gJJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIRQho6gJJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIRQho6gJJ .nav-link {
  position: relative;
}
.cid-tIRQho6gJJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tIRQho6gJJ .container {
    flex-wrap: wrap;
  }
}
.cid-tIRQho6gJJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tIRQho6gJJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tIRQho6gJJ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIRQho6gJJ .dropdown-menu,
.cid-tIRQho6gJJ .navbar.opened {
  background: #000000 !important;
}
.cid-tIRQho6gJJ .nav-item:focus,
.cid-tIRQho6gJJ .nav-link:focus {
  outline: none;
}
.cid-tIRQho6gJJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIRQho6gJJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIRQho6gJJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIRQho6gJJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIRQho6gJJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIRQho6gJJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIRQho6gJJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tIRQho6gJJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tIRQho6gJJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIRQho6gJJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tIRQho6gJJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIRQho6gJJ .navbar.collapsed {
  justify-content: center;
}
.cid-tIRQho6gJJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIRQho6gJJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIRQho6gJJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tIRQho6gJJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIRQho6gJJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIRQho6gJJ .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-tIRQho6gJJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIRQho6gJJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIRQho6gJJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIRQho6gJJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIRQho6gJJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIRQho6gJJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIRQho6gJJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIRQho6gJJ .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-tIRQho6gJJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIRQho6gJJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIRQho6gJJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIRQho6gJJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIRQho6gJJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIRQho6gJJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIRQho6gJJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIRQho6gJJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tIRQho6gJJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIRQho6gJJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIRQho6gJJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIRQho6gJJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIRQho6gJJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIRQho6gJJ .dropdown-item.active,
.cid-tIRQho6gJJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tIRQho6gJJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIRQho6gJJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIRQho6gJJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIRQho6gJJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tIRQho6gJJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIRQho6gJJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIRQho6gJJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIRQho6gJJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIRQho6gJJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIRQho6gJJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIRQho6gJJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIRQho6gJJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIRQho6gJJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIRQho6gJJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIRQho6gJJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIRQho6gJJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIRQho6gJJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIRQho6gJJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIRQho6gJJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIRQho6gJJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIRQho6gJJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIRQho6gJJ .navbar {
    height: 70px;
  }
  .cid-tIRQho6gJJ .navbar.opened {
    height: auto;
  }
  .cid-tIRQho6gJJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2umfDbEaV {
  background-image: url("../../../assets/images/mississippi-foundation-for-renewable-energy-banner.webp");
}
.cid-u2umfDbEaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2umfDbEaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2umfDbEaV .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2umfDbEaV .mbr-text,
.cid-u2umfDbEaV .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2umfDbEaV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ve3tQld6ZP {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ve3tQld6ZP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ve3tQld6ZP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ve3tQld6ZP .mbr-section-title {
  color: #ffffff;
}
.cid-ve3tQld6ZP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZtxGsFQ8R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZtxGsFQ8R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZtxGsFQ8R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZtxGsFQ8R .mbr-section-title {
  color: #ffffff;
}
.cid-uZtxGsFQ8R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZzjaBZnu1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZzjaBZnu1 img,
.cid-tZzjaBZnu1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZzjaBZnu1 .item:focus,
.cid-tZzjaBZnu1 span:focus {
  outline: none;
}
.cid-tZzjaBZnu1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZzjaBZnu1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZzjaBZnu1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZzjaBZnu1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZzjaBZnu1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZzjaBZnu1 .mbr-section-title {
  color: #ffffff;
}
.cid-tZzjaBZnu1 .mbr-text,
.cid-tZzjaBZnu1 .mbr-section-btn {
  text-align: left;
}
.cid-tZzjaBZnu1 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZzjaBZnu1 .item-subtitle {
  text-align: center;
}
.cid-tZzjaBZnu1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQuxb81irA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQuxb81irA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuxb81irA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuxb81irA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQuxb81irA .mbr-section-title {
  color: #ffffff;
}
.cid-tZzmfXeyXh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZzmfXeyXh img,
.cid-tZzmfXeyXh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZzmfXeyXh .item:focus,
.cid-tZzmfXeyXh span:focus {
  outline: none;
}
.cid-tZzmfXeyXh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZzmfXeyXh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZzmfXeyXh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZzmfXeyXh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZzmfXeyXh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZzmfXeyXh .mbr-section-title {
  color: #232323;
}
.cid-tZzmfXeyXh .mbr-text,
.cid-tZzmfXeyXh .mbr-section-btn {
  text-align: left;
}
.cid-tZzmfXeyXh .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZzmfXeyXh .item-subtitle {
  text-align: center;
}
.cid-tQuCoHI7mn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQuCoHI7mn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQuCoHI7mn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQuCoHI7mn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQuCoHI7mn .mbr-section-title {
  color: #ffffff;
}
.cid-tZzmhBFx63 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZzmhBFx63 img,
.cid-tZzmhBFx63 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZzmhBFx63 .item:focus,
.cid-tZzmhBFx63 span:focus {
  outline: none;
}
.cid-tZzmhBFx63 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZzmhBFx63 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZzmhBFx63 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZzmhBFx63 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZzmhBFx63 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZzmhBFx63 .mbr-section-title {
  color: #232323;
}
.cid-tZzmhBFx63 .mbr-text,
.cid-tZzmhBFx63 .mbr-section-btn {
  text-align: left;
}
.cid-tZzmhBFx63 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZzmhBFx63 .item-subtitle {
  text-align: center;
}
.cid-tQUpIZXfP9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQUpIZXfP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUpIZXfP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUpIZXfP9 .mbr-section-title {
  color: #ffffff;
}
.cid-tZzmiDMkhF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZzmiDMkhF img,
.cid-tZzmiDMkhF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZzmiDMkhF .item:focus,
.cid-tZzmiDMkhF span:focus {
  outline: none;
}
.cid-tZzmiDMkhF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZzmiDMkhF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZzmiDMkhF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZzmiDMkhF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZzmiDMkhF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZzmiDMkhF .mbr-section-title {
  color: #232323;
}
.cid-tZzmiDMkhF .mbr-text,
.cid-tZzmiDMkhF .mbr-section-btn {
  text-align: left;
}
.cid-tZzmiDMkhF .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZzmiDMkhF .item-subtitle {
  text-align: center;
}
.cid-tQUpKQSQ21 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQUpKQSQ21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQUpKQSQ21 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQUpKQSQ21 .mbr-section-title {
  color: #ffffff;
}
.cid-uYMXEzGtn9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYMXEzGtn9 img,
.cid-uYMXEzGtn9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYMXEzGtn9 .item:focus,
.cid-uYMXEzGtn9 span:focus {
  outline: none;
}
.cid-uYMXEzGtn9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYMXEzGtn9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYMXEzGtn9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYMXEzGtn9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYMXEzGtn9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYMXEzGtn9 .mbr-section-title {
  color: #232323;
}
.cid-uYMXEzGtn9 .mbr-text,
.cid-uYMXEzGtn9 .mbr-section-btn {
  text-align: left;
}
.cid-uYMXEzGtn9 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-uYMXEzGtn9 .item-subtitle {
  text-align: center;
}
.cid-u4t2lGwYWw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4t2lGwYWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4t2lGwYWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4t2lGwYWw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4t2lGwYWw .mbr-section-title {
  color: #ffffff;
}
.cid-tQvDePvQHW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQvDePvQHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvDePvQHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvDePvQHW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-tQvDePvQHW .number {
  color: #ffffff;
}
.cid-tQvDePvQHW .period {
  display: block;
}
.cid-tQvDePvQHW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-tQvDePvQHW .period {
    font-size: 0.8rem;
  }
}
.cid-tQvDePvQHW .btn {
  height: 100%;
  margin: 0;
}
.cid-tQvDePvQHW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tQvDePvQHW .mbr-section-title {
  color: #ffffff;
}
.cid-tQvDePvQHW .mbr-text {
  color: #ffffff;
}
.cid-tQvDePvQHW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tQvDePvQHW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tQvDePvQHW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-tQvDePvQHW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-tIShodtjTY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tIShodtjTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIShodtjTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIShodtjTY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tIShodtjTY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tIShodtjTY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tIShodtjTY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tIShodtjTY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tIShodtjTY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tIShodtjTY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tIShodtjTY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tIShodtjTY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tIShodtjTY [class^="socicon-"]:before,
.cid-tIShodtjTY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tIShodtjTY .mbr-section-title,
.cid-tIShodtjTY .mbr-social-likes {
  color: #ffffff;
}
.cid-tQvFMCSMTm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tQvFMCSMTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQvFMCSMTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQvFMCSMTm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-tQvFMCSMTm .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tQvFMCSMTm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tQvFMCSMTm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tQvFMCSMTm .mbr-text {
  color: #ffffff;
}
.cid-tQvFMCSMTm .card-title {
  color: #ffffff;
}
.cid-tQvFMCSMTm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQvFMCSMTm .mbr-section-title {
  color: #ffffff;
}
.cid-tQvFMCSMTm .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tKY7n2PoAU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tKY7n2PoAU nav.navbar {
  position: fixed;
}
.cid-tKY7n2PoAU .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-tKY7n2PoAU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tKY7n2PoAU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tKY7n2PoAU .dropdown-item:hover,
.cid-tKY7n2PoAU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tKY7n2PoAU .dropdown-item:hover span {
  color: white;
}
.cid-tKY7n2PoAU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tKY7n2PoAU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tKY7n2PoAU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tKY7n2PoAU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tKY7n2PoAU .nav-link {
  position: relative;
}
.cid-tKY7n2PoAU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tKY7n2PoAU .container {
    flex-wrap: wrap;
  }
}
.cid-tKY7n2PoAU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tKY7n2PoAU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tKY7n2PoAU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tKY7n2PoAU .dropdown-menu,
.cid-tKY7n2PoAU .navbar.opened {
  background: #000000 !important;
}
.cid-tKY7n2PoAU .nav-item:focus,
.cid-tKY7n2PoAU .nav-link:focus {
  outline: none;
}
.cid-tKY7n2PoAU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tKY7n2PoAU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKY7n2PoAU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tKY7n2PoAU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKY7n2PoAU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKY7n2PoAU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKY7n2PoAU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tKY7n2PoAU .navbar.opened {
  transition: all 0.3s;
}
.cid-tKY7n2PoAU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tKY7n2PoAU .navbar .navbar-logo img {
  width: auto;
}
.cid-tKY7n2PoAU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKY7n2PoAU .navbar.collapsed {
  justify-content: center;
}
.cid-tKY7n2PoAU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKY7n2PoAU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKY7n2PoAU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tKY7n2PoAU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKY7n2PoAU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKY7n2PoAU .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-tKY7n2PoAU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKY7n2PoAU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tKY7n2PoAU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tKY7n2PoAU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKY7n2PoAU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKY7n2PoAU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKY7n2PoAU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKY7n2PoAU .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-tKY7n2PoAU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tKY7n2PoAU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKY7n2PoAU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKY7n2PoAU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tKY7n2PoAU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tKY7n2PoAU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tKY7n2PoAU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tKY7n2PoAU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tKY7n2PoAU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tKY7n2PoAU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tKY7n2PoAU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKY7n2PoAU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKY7n2PoAU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKY7n2PoAU .dropdown-item.active,
.cid-tKY7n2PoAU .dropdown-item:active {
  background-color: transparent;
}
.cid-tKY7n2PoAU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tKY7n2PoAU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKY7n2PoAU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKY7n2PoAU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tKY7n2PoAU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKY7n2PoAU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKY7n2PoAU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tKY7n2PoAU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tKY7n2PoAU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tKY7n2PoAU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tKY7n2PoAU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tKY7n2PoAU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKY7n2PoAU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKY7n2PoAU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tKY7n2PoAU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKY7n2PoAU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tKY7n2PoAU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tKY7n2PoAU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKY7n2PoAU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tKY7n2PoAU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKY7n2PoAU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKY7n2PoAU .navbar {
    height: 70px;
  }
  .cid-tKY7n2PoAU .navbar.opened {
    height: auto;
  }
  .cid-tKY7n2PoAU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vZlZExAB {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-u2vZlZExAB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vZlZExAB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vZlZExAB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vZlZExAB .mbr-text,
.cid-u2vZlZExAB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vZlZExAB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v1jxaTey0g {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1jxaTey0g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jxaTey0g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jxaTey0g .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1jhIYmrjL {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-v1jhIYmrjL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v1jhIYmrjL LABEL {
  color: #ffffff;
}
.cid-v1jhIYmrjL H4 {
  color: #ffffff;
}
.cid-uYNbYb5dHd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbYb5dHd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbYb5dHd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbYb5dHd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbYb5dHd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbXjZChY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbXjZChY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbXjZChY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbXjZChY .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbXjZChY .number {
  color: #ffffff;
}
.cid-uYNbXjZChY .period {
  display: block;
}
.cid-uYNbXjZChY .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbXjZChY .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbXjZChY .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbXjZChY .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbXjZChY .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbXjZChY .mbr-text {
  color: #ffffff;
}
.cid-uYNbXjZChY .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbXjZChY .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbXjZChY .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbXjZChY .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w46SJ9s9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w46SJ9s9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w46SJ9s9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w46SJ9s9 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w46SJ9s9 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w46SJ9s9 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w46SJ9s9 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w46SJ9s9 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w46SJ9s9 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w46SJ9s9 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w46SJ9s9 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w46SJ9s9 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w46SJ9s9 [class^="socicon-"]:before,
.cid-u2w46SJ9s9 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w46SJ9s9 .mbr-section-title,
.cid-u2w46SJ9s9 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39jUEXpw1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39jUEXpw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39jUEXpw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39jUEXpw1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39jUEXpw1 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39jUEXpw1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39jUEXpw1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39jUEXpw1 .mbr-text {
  color: #ffffff;
}
.cid-u39jUEXpw1 .card-title {
  color: #ffffff;
}
.cid-u39jUEXpw1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39jUEXpw1 .mbr-section-title {
  color: #ffffff;
}
.cid-u39jUEXpw1 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tL8XBvXV6d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tL8XBvXV6d nav.navbar {
  position: fixed;
}
.cid-tL8XBvXV6d .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-tL8XBvXV6d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tL8XBvXV6d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tL8XBvXV6d .dropdown-item:hover,
.cid-tL8XBvXV6d .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tL8XBvXV6d .dropdown-item:hover span {
  color: white;
}
.cid-tL8XBvXV6d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tL8XBvXV6d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tL8XBvXV6d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tL8XBvXV6d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tL8XBvXV6d .nav-link {
  position: relative;
}
.cid-tL8XBvXV6d .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tL8XBvXV6d .container {
    flex-wrap: wrap;
  }
}
.cid-tL8XBvXV6d .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tL8XBvXV6d .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tL8XBvXV6d .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tL8XBvXV6d .dropdown-menu,
.cid-tL8XBvXV6d .navbar.opened {
  background: #000000 !important;
}
.cid-tL8XBvXV6d .nav-item:focus,
.cid-tL8XBvXV6d .nav-link:focus {
  outline: none;
}
.cid-tL8XBvXV6d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tL8XBvXV6d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL8XBvXV6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tL8XBvXV6d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tL8XBvXV6d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL8XBvXV6d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL8XBvXV6d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tL8XBvXV6d .navbar.opened {
  transition: all 0.3s;
}
.cid-tL8XBvXV6d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tL8XBvXV6d .navbar .navbar-logo img {
  width: auto;
}
.cid-tL8XBvXV6d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tL8XBvXV6d .navbar.collapsed {
  justify-content: center;
}
.cid-tL8XBvXV6d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL8XBvXV6d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tL8XBvXV6d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tL8XBvXV6d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL8XBvXV6d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL8XBvXV6d .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-tL8XBvXV6d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL8XBvXV6d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tL8XBvXV6d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tL8XBvXV6d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL8XBvXV6d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL8XBvXV6d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL8XBvXV6d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL8XBvXV6d .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-tL8XBvXV6d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tL8XBvXV6d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL8XBvXV6d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL8XBvXV6d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tL8XBvXV6d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tL8XBvXV6d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tL8XBvXV6d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tL8XBvXV6d .navbar.navbar-short {
  min-height: 60px;
}
.cid-tL8XBvXV6d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tL8XBvXV6d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tL8XBvXV6d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tL8XBvXV6d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL8XBvXV6d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL8XBvXV6d .dropdown-item.active,
.cid-tL8XBvXV6d .dropdown-item:active {
  background-color: transparent;
}
.cid-tL8XBvXV6d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL8XBvXV6d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL8XBvXV6d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL8XBvXV6d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tL8XBvXV6d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL8XBvXV6d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tL8XBvXV6d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tL8XBvXV6d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tL8XBvXV6d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tL8XBvXV6d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tL8XBvXV6d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tL8XBvXV6d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL8XBvXV6d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL8XBvXV6d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tL8XBvXV6d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL8XBvXV6d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tL8XBvXV6d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tL8XBvXV6d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL8XBvXV6d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tL8XBvXV6d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tL8XBvXV6d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tL8XBvXV6d .navbar {
    height: 70px;
  }
  .cid-tL8XBvXV6d .navbar.opened {
    height: auto;
  }
  .cid-tL8XBvXV6d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yXJbWRWE {
  background-image: url("../../../assets/images/beans-dumped-from-baskets.webp");
}
.cid-u2yXJbWRWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXJbWRWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXJbWRWE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXJbWRWE .mbr-text,
.cid-u2yXJbWRWE .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXJbWRWE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tL8XTfCTKY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tL8XTfCTKY img,
.cid-tL8XTfCTKY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tL8XTfCTKY .item:focus,
.cid-tL8XTfCTKY span:focus {
  outline: none;
}
.cid-tL8XTfCTKY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tL8XTfCTKY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tL8XTfCTKY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tL8XTfCTKY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tL8XTfCTKY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tL8XTfCTKY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tL8XTfCTKY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tL8XTfCTKY .mbr-section-title {
  color: #ffffff;
}
.cid-tL8XTfCTKY .mbr-text,
.cid-tL8XTfCTKY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tL8XTfCTKY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tL8XTfCTKY .item-subtitle {
  text-align: left;
}
.cid-tL8XTfCTKY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tL8Z23aZO1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tL8Z23aZO1 img,
.cid-tL8Z23aZO1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tL8Z23aZO1 .item:focus,
.cid-tL8Z23aZO1 span:focus {
  outline: none;
}
.cid-tL8Z23aZO1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tL8Z23aZO1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tL8Z23aZO1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tL8Z23aZO1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tL8Z23aZO1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tL8Z23aZO1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tL8Z23aZO1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tL8Z23aZO1 .mbr-section-title {
  color: #232323;
}
.cid-tL8Z23aZO1 .mbr-text,
.cid-tL8Z23aZO1 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tL8Z23aZO1 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tL8Z23aZO1 .item-subtitle {
  text-align: left;
}
.cid-uYNwgMPB0K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwgMPB0K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwgMPB0K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwgMPB0K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwgMPB0K .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwfbDv38 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwfbDv38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwfbDv38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwfbDv38 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwfbDv38 .number {
  color: #ffffff;
}
.cid-uYNwfbDv38 .period {
  display: block;
}
.cid-uYNwfbDv38 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwfbDv38 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwfbDv38 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwfbDv38 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwfbDv38 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwfbDv38 .mbr-text {
  color: #ffffff;
}
.cid-uYNwfbDv38 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwfbDv38 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwfbDv38 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwfbDv38 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yXGwCyUC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yXGwCyUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXGwCyUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXGwCyUC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yXGwCyUC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yXGwCyUC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yXGwCyUC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yXGwCyUC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yXGwCyUC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yXGwCyUC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yXGwCyUC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yXGwCyUC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yXGwCyUC [class^="socicon-"]:before,
.cid-u2yXGwCyUC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yXGwCyUC .mbr-section-title,
.cid-u2yXGwCyUC .mbr-social-likes {
  color: #ffffff;
}
.cid-u39oi8myg7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39oi8myg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39oi8myg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39oi8myg7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39oi8myg7 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39oi8myg7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39oi8myg7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39oi8myg7 .mbr-text {
  color: #ffffff;
}
.cid-u39oi8myg7 .card-title {
  color: #ffffff;
}
.cid-u39oi8myg7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39oi8myg7 .mbr-section-title {
  color: #ffffff;
}
.cid-u39oi8myg7 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tL8SnkTrEN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tL8SnkTrEN nav.navbar {
  position: fixed;
}
.cid-tL8SnkTrEN .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-tL8SnkTrEN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tL8SnkTrEN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tL8SnkTrEN .dropdown-item:hover,
.cid-tL8SnkTrEN .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tL8SnkTrEN .dropdown-item:hover span {
  color: white;
}
.cid-tL8SnkTrEN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tL8SnkTrEN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tL8SnkTrEN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tL8SnkTrEN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tL8SnkTrEN .nav-link {
  position: relative;
}
.cid-tL8SnkTrEN .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tL8SnkTrEN .container {
    flex-wrap: wrap;
  }
}
.cid-tL8SnkTrEN .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tL8SnkTrEN .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tL8SnkTrEN .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tL8SnkTrEN .dropdown-menu,
.cid-tL8SnkTrEN .navbar.opened {
  background: #000000 !important;
}
.cid-tL8SnkTrEN .nav-item:focus,
.cid-tL8SnkTrEN .nav-link:focus {
  outline: none;
}
.cid-tL8SnkTrEN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tL8SnkTrEN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tL8SnkTrEN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tL8SnkTrEN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tL8SnkTrEN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tL8SnkTrEN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tL8SnkTrEN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tL8SnkTrEN .navbar.opened {
  transition: all 0.3s;
}
.cid-tL8SnkTrEN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tL8SnkTrEN .navbar .navbar-logo img {
  width: auto;
}
.cid-tL8SnkTrEN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tL8SnkTrEN .navbar.collapsed {
  justify-content: center;
}
.cid-tL8SnkTrEN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tL8SnkTrEN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tL8SnkTrEN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tL8SnkTrEN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tL8SnkTrEN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tL8SnkTrEN .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-tL8SnkTrEN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tL8SnkTrEN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tL8SnkTrEN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tL8SnkTrEN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tL8SnkTrEN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tL8SnkTrEN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tL8SnkTrEN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tL8SnkTrEN .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-tL8SnkTrEN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tL8SnkTrEN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tL8SnkTrEN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tL8SnkTrEN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tL8SnkTrEN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tL8SnkTrEN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tL8SnkTrEN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tL8SnkTrEN .navbar.navbar-short {
  min-height: 60px;
}
.cid-tL8SnkTrEN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tL8SnkTrEN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tL8SnkTrEN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tL8SnkTrEN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tL8SnkTrEN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tL8SnkTrEN .dropdown-item.active,
.cid-tL8SnkTrEN .dropdown-item:active {
  background-color: transparent;
}
.cid-tL8SnkTrEN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tL8SnkTrEN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tL8SnkTrEN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tL8SnkTrEN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tL8SnkTrEN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tL8SnkTrEN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tL8SnkTrEN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tL8SnkTrEN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tL8SnkTrEN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tL8SnkTrEN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tL8SnkTrEN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tL8SnkTrEN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL8SnkTrEN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tL8SnkTrEN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tL8SnkTrEN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL8SnkTrEN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tL8SnkTrEN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tL8SnkTrEN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tL8SnkTrEN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tL8SnkTrEN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tL8SnkTrEN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tL8SnkTrEN .navbar {
    height: 70px;
  }
  .cid-tL8SnkTrEN .navbar.opened {
    height: auto;
  }
  .cid-tL8SnkTrEN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yY4TBCtx {
  background-image: url("../../../assets/images/asparagus.webp");
}
.cid-u2yY4TBCtx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yY4TBCtx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yY4TBCtx .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yY4TBCtx .mbr-text,
.cid-u2yY4TBCtx .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yY4TBCtx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tL8SD9uESE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tL8SD9uESE img,
.cid-tL8SD9uESE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tL8SD9uESE .item:focus,
.cid-tL8SD9uESE span:focus {
  outline: none;
}
.cid-tL8SD9uESE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tL8SD9uESE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tL8SD9uESE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tL8SD9uESE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tL8SD9uESE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tL8SD9uESE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tL8SD9uESE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tL8SD9uESE .mbr-section-title {
  color: #ffffff;
}
.cid-tL8SD9uESE .mbr-text,
.cid-tL8SD9uESE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tL8SD9uESE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tL8SD9uESE .item-subtitle {
  text-align: left;
}
.cid-tL8SD9uESE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYnGZnrPj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYnGZnrPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYnGZnrPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYnGZnrPj .mbr-section-title {
  color: #ffffff;
}
.cid-uZYnGZnrPj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwOZwXAX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwOZwXAX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwOZwXAX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwOZwXAX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwOZwXAX .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwNHljD2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwNHljD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwNHljD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwNHljD2 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwNHljD2 .number {
  color: #ffffff;
}
.cid-uYNwNHljD2 .period {
  display: block;
}
.cid-uYNwNHljD2 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwNHljD2 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwNHljD2 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwNHljD2 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwNHljD2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwNHljD2 .mbr-text {
  color: #ffffff;
}
.cid-uYNwNHljD2 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwNHljD2 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwNHljD2 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwNHljD2 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yY3aUEL6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yY3aUEL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yY3aUEL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yY3aUEL6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yY3aUEL6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yY3aUEL6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yY3aUEL6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yY3aUEL6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yY3aUEL6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yY3aUEL6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yY3aUEL6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yY3aUEL6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yY3aUEL6 [class^="socicon-"]:before,
.cid-u2yY3aUEL6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yY3aUEL6 .mbr-section-title,
.cid-u2yY3aUEL6 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39okhw9Uk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39okhw9Uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39okhw9Uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39okhw9Uk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39okhw9Uk .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39okhw9Uk .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39okhw9Uk .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39okhw9Uk .mbr-text {
  color: #ffffff;
}
.cid-u39okhw9Uk .card-title {
  color: #ffffff;
}
.cid-u39okhw9Uk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39okhw9Uk .mbr-section-title {
  color: #ffffff;
}
.cid-u39okhw9Uk .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLdwLfeerT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLdwLfeerT nav.navbar {
  position: fixed;
}
.cid-tLdwLfeerT .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-tLdwLfeerT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLdwLfeerT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLdwLfeerT .dropdown-item:hover,
.cid-tLdwLfeerT .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLdwLfeerT .dropdown-item:hover span {
  color: white;
}
.cid-tLdwLfeerT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLdwLfeerT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLdwLfeerT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLdwLfeerT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLdwLfeerT .nav-link {
  position: relative;
}
.cid-tLdwLfeerT .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdwLfeerT .container {
    flex-wrap: wrap;
  }
}
.cid-tLdwLfeerT .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdwLfeerT .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLdwLfeerT .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLdwLfeerT .dropdown-menu,
.cid-tLdwLfeerT .navbar.opened {
  background: #000000 !important;
}
.cid-tLdwLfeerT .nav-item:focus,
.cid-tLdwLfeerT .nav-link:focus {
  outline: none;
}
.cid-tLdwLfeerT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLdwLfeerT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLdwLfeerT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLdwLfeerT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLdwLfeerT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLdwLfeerT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLdwLfeerT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLdwLfeerT .navbar.opened {
  transition: all 0.3s;
}
.cid-tLdwLfeerT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLdwLfeerT .navbar .navbar-logo img {
  width: auto;
}
.cid-tLdwLfeerT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLdwLfeerT .navbar.collapsed {
  justify-content: center;
}
.cid-tLdwLfeerT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLdwLfeerT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLdwLfeerT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLdwLfeerT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLdwLfeerT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLdwLfeerT .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-tLdwLfeerT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLdwLfeerT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLdwLfeerT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLdwLfeerT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLdwLfeerT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLdwLfeerT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLdwLfeerT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLdwLfeerT .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-tLdwLfeerT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLdwLfeerT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLdwLfeerT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLdwLfeerT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLdwLfeerT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLdwLfeerT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLdwLfeerT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLdwLfeerT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLdwLfeerT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLdwLfeerT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLdwLfeerT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLdwLfeerT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLdwLfeerT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLdwLfeerT .dropdown-item.active,
.cid-tLdwLfeerT .dropdown-item:active {
  background-color: transparent;
}
.cid-tLdwLfeerT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLdwLfeerT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLdwLfeerT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLdwLfeerT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLdwLfeerT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLdwLfeerT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLdwLfeerT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLdwLfeerT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLdwLfeerT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLdwLfeerT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLdwLfeerT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLdwLfeerT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdwLfeerT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdwLfeerT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLdwLfeerT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdwLfeerT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLdwLfeerT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLdwLfeerT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdwLfeerT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLdwLfeerT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLdwLfeerT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLdwLfeerT .navbar {
    height: 70px;
  }
  .cid-tLdwLfeerT .navbar.opened {
    height: auto;
  }
  .cid-tLdwLfeerT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yXrFHvMG {
  background-image: url("../../../assets/images/collards-banner.webp");
}
.cid-u2yXrFHvMG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXrFHvMG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXrFHvMG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXrFHvMG .mbr-text,
.cid-u2yXrFHvMG .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXrFHvMG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLdwSVhOdh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLdwSVhOdh img,
.cid-tLdwSVhOdh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLdwSVhOdh .item:focus,
.cid-tLdwSVhOdh span:focus {
  outline: none;
}
.cid-tLdwSVhOdh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLdwSVhOdh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLdwSVhOdh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLdwSVhOdh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLdwSVhOdh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLdwSVhOdh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLdwSVhOdh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLdwSVhOdh .mbr-section-title {
  color: #ffffff;
}
.cid-tLdwSVhOdh .mbr-text,
.cid-tLdwSVhOdh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLdwSVhOdh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLdwSVhOdh .item-subtitle {
  text-align: left;
}
.cid-tLdwSVhOdh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYoRam7tE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYoRam7tE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYoRam7tE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYoRam7tE .mbr-section-title {
  color: #ffffff;
}
.cid-uZYoRam7tE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNw0htWz5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNw0htWz5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNw0htWz5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNw0htWz5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNw0htWz5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvYBuEDH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvYBuEDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvYBuEDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvYBuEDH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvYBuEDH .number {
  color: #ffffff;
}
.cid-uYNvYBuEDH .period {
  display: block;
}
.cid-uYNvYBuEDH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvYBuEDH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvYBuEDH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvYBuEDH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvYBuEDH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvYBuEDH .mbr-text {
  color: #ffffff;
}
.cid-uYNvYBuEDH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvYBuEDH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvYBuEDH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvYBuEDH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yXqBTIIv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yXqBTIIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXqBTIIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXqBTIIv .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yXqBTIIv .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yXqBTIIv .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yXqBTIIv .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yXqBTIIv .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yXqBTIIv .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yXqBTIIv .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yXqBTIIv .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yXqBTIIv .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yXqBTIIv [class^="socicon-"]:before,
.cid-u2yXqBTIIv [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yXqBTIIv .mbr-section-title,
.cid-u2yXqBTIIv .mbr-social-likes {
  color: #ffffff;
}
.cid-u39ofrnUAp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39ofrnUAp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39ofrnUAp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39ofrnUAp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39ofrnUAp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39ofrnUAp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39ofrnUAp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39ofrnUAp .mbr-text {
  color: #ffffff;
}
.cid-u39ofrnUAp .card-title {
  color: #ffffff;
}
.cid-u39ofrnUAp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39ofrnUAp .mbr-section-title {
  color: #ffffff;
}
.cid-u39ofrnUAp .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLdDhrveF3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLdDhrveF3 nav.navbar {
  position: fixed;
}
.cid-tLdDhrveF3 .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-tLdDhrveF3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLdDhrveF3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLdDhrveF3 .dropdown-item:hover,
.cid-tLdDhrveF3 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLdDhrveF3 .dropdown-item:hover span {
  color: white;
}
.cid-tLdDhrveF3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLdDhrveF3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLdDhrveF3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLdDhrveF3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLdDhrveF3 .nav-link {
  position: relative;
}
.cid-tLdDhrveF3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdDhrveF3 .container {
    flex-wrap: wrap;
  }
}
.cid-tLdDhrveF3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdDhrveF3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLdDhrveF3 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLdDhrveF3 .dropdown-menu,
.cid-tLdDhrveF3 .navbar.opened {
  background: #000000 !important;
}
.cid-tLdDhrveF3 .nav-item:focus,
.cid-tLdDhrveF3 .nav-link:focus {
  outline: none;
}
.cid-tLdDhrveF3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLdDhrveF3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLdDhrveF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLdDhrveF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLdDhrveF3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLdDhrveF3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLdDhrveF3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLdDhrveF3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tLdDhrveF3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLdDhrveF3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tLdDhrveF3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLdDhrveF3 .navbar.collapsed {
  justify-content: center;
}
.cid-tLdDhrveF3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLdDhrveF3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLdDhrveF3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLdDhrveF3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLdDhrveF3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLdDhrveF3 .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-tLdDhrveF3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLdDhrveF3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLdDhrveF3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLdDhrveF3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLdDhrveF3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLdDhrveF3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLdDhrveF3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLdDhrveF3 .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-tLdDhrveF3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLdDhrveF3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLdDhrveF3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLdDhrveF3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLdDhrveF3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLdDhrveF3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLdDhrveF3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLdDhrveF3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLdDhrveF3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLdDhrveF3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLdDhrveF3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLdDhrveF3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLdDhrveF3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLdDhrveF3 .dropdown-item.active,
.cid-tLdDhrveF3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLdDhrveF3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLdDhrveF3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLdDhrveF3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLdDhrveF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLdDhrveF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLdDhrveF3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLdDhrveF3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLdDhrveF3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLdDhrveF3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLdDhrveF3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLdDhrveF3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLdDhrveF3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdDhrveF3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdDhrveF3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLdDhrveF3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdDhrveF3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLdDhrveF3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLdDhrveF3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdDhrveF3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLdDhrveF3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLdDhrveF3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLdDhrveF3 .navbar {
    height: 70px;
  }
  .cid-tLdDhrveF3 .navbar.opened {
    height: auto;
  }
  .cid-tLdDhrveF3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yXcaVqje {
  background-image: url("../../../assets/images/cucumber-banner.webp");
}
.cid-u2yXcaVqje .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXcaVqje .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXcaVqje .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXcaVqje .mbr-text,
.cid-u2yXcaVqje .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yXcaVqje .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLdEAFYnOJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLdEAFYnOJ img,
.cid-tLdEAFYnOJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLdEAFYnOJ .item:focus,
.cid-tLdEAFYnOJ span:focus {
  outline: none;
}
.cid-tLdEAFYnOJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLdEAFYnOJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLdEAFYnOJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLdEAFYnOJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLdEAFYnOJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLdEAFYnOJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLdEAFYnOJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLdEAFYnOJ .mbr-section-title {
  color: #ffffff;
}
.cid-tLdEAFYnOJ .mbr-text,
.cid-tLdEAFYnOJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLdEAFYnOJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLdEAFYnOJ .item-subtitle {
  text-align: left;
}
.cid-tLdEAFYnOJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuozDLQfYx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuozDLQfYx img,
.cid-uuozDLQfYx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuozDLQfYx .item:focus,
.cid-uuozDLQfYx span:focus {
  outline: none;
}
.cid-uuozDLQfYx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuozDLQfYx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuozDLQfYx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuozDLQfYx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuozDLQfYx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuozDLQfYx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuozDLQfYx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuozDLQfYx .mbr-section-title {
  color: #232323;
}
.cid-uuozDLQfYx .mbr-text,
.cid-uuozDLQfYx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuozDLQfYx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuozDLQfYx .item-subtitle {
  text-align: left;
}
.cid-uYNvz4LUIY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvz4LUIY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvz4LUIY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvz4LUIY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvz4LUIY .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvxmi4x9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvxmi4x9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvxmi4x9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvxmi4x9 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvxmi4x9 .number {
  color: #ffffff;
}
.cid-uYNvxmi4x9 .period {
  display: block;
}
.cid-uYNvxmi4x9 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvxmi4x9 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvxmi4x9 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvxmi4x9 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvxmi4x9 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvxmi4x9 .mbr-text {
  color: #ffffff;
}
.cid-uYNvxmi4x9 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvxmi4x9 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvxmi4x9 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvxmi4x9 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yXb2r6oo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yXb2r6oo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yXb2r6oo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yXb2r6oo .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yXb2r6oo .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yXb2r6oo .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yXb2r6oo .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yXb2r6oo .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yXb2r6oo .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yXb2r6oo .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yXb2r6oo .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yXb2r6oo .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yXb2r6oo [class^="socicon-"]:before,
.cid-u2yXb2r6oo [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yXb2r6oo .mbr-section-title,
.cid-u2yXb2r6oo .mbr-social-likes {
  color: #ffffff;
}
.cid-u39odhfiNz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39odhfiNz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39odhfiNz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39odhfiNz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39odhfiNz .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39odhfiNz .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39odhfiNz .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39odhfiNz .mbr-text {
  color: #ffffff;
}
.cid-u39odhfiNz .card-title {
  color: #ffffff;
}
.cid-u39odhfiNz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39odhfiNz .mbr-section-title {
  color: #ffffff;
}
.cid-u39odhfiNz .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLdJoWlWqE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLdJoWlWqE nav.navbar {
  position: fixed;
}
.cid-tLdJoWlWqE .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-tLdJoWlWqE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLdJoWlWqE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLdJoWlWqE .dropdown-item:hover,
.cid-tLdJoWlWqE .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLdJoWlWqE .dropdown-item:hover span {
  color: white;
}
.cid-tLdJoWlWqE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLdJoWlWqE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLdJoWlWqE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLdJoWlWqE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLdJoWlWqE .nav-link {
  position: relative;
}
.cid-tLdJoWlWqE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdJoWlWqE .container {
    flex-wrap: wrap;
  }
}
.cid-tLdJoWlWqE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdJoWlWqE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLdJoWlWqE .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLdJoWlWqE .dropdown-menu,
.cid-tLdJoWlWqE .navbar.opened {
  background: #000000 !important;
}
.cid-tLdJoWlWqE .nav-item:focus,
.cid-tLdJoWlWqE .nav-link:focus {
  outline: none;
}
.cid-tLdJoWlWqE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLdJoWlWqE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLdJoWlWqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLdJoWlWqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLdJoWlWqE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLdJoWlWqE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLdJoWlWqE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLdJoWlWqE .navbar.opened {
  transition: all 0.3s;
}
.cid-tLdJoWlWqE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLdJoWlWqE .navbar .navbar-logo img {
  width: auto;
}
.cid-tLdJoWlWqE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLdJoWlWqE .navbar.collapsed {
  justify-content: center;
}
.cid-tLdJoWlWqE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLdJoWlWqE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLdJoWlWqE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLdJoWlWqE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLdJoWlWqE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLdJoWlWqE .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-tLdJoWlWqE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLdJoWlWqE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLdJoWlWqE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLdJoWlWqE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLdJoWlWqE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLdJoWlWqE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLdJoWlWqE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLdJoWlWqE .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-tLdJoWlWqE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLdJoWlWqE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLdJoWlWqE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLdJoWlWqE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLdJoWlWqE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLdJoWlWqE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLdJoWlWqE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLdJoWlWqE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLdJoWlWqE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLdJoWlWqE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLdJoWlWqE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLdJoWlWqE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLdJoWlWqE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLdJoWlWqE .dropdown-item.active,
.cid-tLdJoWlWqE .dropdown-item:active {
  background-color: transparent;
}
.cid-tLdJoWlWqE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLdJoWlWqE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLdJoWlWqE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLdJoWlWqE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLdJoWlWqE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLdJoWlWqE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLdJoWlWqE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLdJoWlWqE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLdJoWlWqE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLdJoWlWqE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLdJoWlWqE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLdJoWlWqE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdJoWlWqE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdJoWlWqE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLdJoWlWqE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdJoWlWqE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLdJoWlWqE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLdJoWlWqE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdJoWlWqE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLdJoWlWqE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLdJoWlWqE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLdJoWlWqE .navbar {
    height: 70px;
  }
  .cid-tLdJoWlWqE .navbar.opened {
    height: auto;
  }
  .cid-tLdJoWlWqE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yWTSJ2zR {
  background-image: url("../../../assets/images/ping-tung-eggplant-banner.webp");
}
.cid-u2yWTSJ2zR .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWTSJ2zR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWTSJ2zR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWTSJ2zR .mbr-text,
.cid-u2yWTSJ2zR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWTSJ2zR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLdJzZpAxB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLdJzZpAxB img,
.cid-tLdJzZpAxB .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLdJzZpAxB .item:focus,
.cid-tLdJzZpAxB span:focus {
  outline: none;
}
.cid-tLdJzZpAxB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLdJzZpAxB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLdJzZpAxB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLdJzZpAxB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLdJzZpAxB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLdJzZpAxB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLdJzZpAxB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLdJzZpAxB .mbr-section-title {
  color: #ffffff;
}
.cid-tLdJzZpAxB .mbr-text,
.cid-tLdJzZpAxB .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLdJzZpAxB .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLdJzZpAxB .item-subtitle {
  text-align: left;
}
.cid-tLdJzZpAxB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvqXnLY8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvqXnLY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvqXnLY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvqXnLY8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvqXnLY8 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvpgaOvc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvpgaOvc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvpgaOvc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvpgaOvc .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvpgaOvc .number {
  color: #ffffff;
}
.cid-uYNvpgaOvc .period {
  display: block;
}
.cid-uYNvpgaOvc .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvpgaOvc .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvpgaOvc .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvpgaOvc .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvpgaOvc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvpgaOvc .mbr-text {
  color: #ffffff;
}
.cid-uYNvpgaOvc .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvpgaOvc .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvpgaOvc .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvpgaOvc .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yWSHKU3G {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yWSHKU3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWSHKU3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWSHKU3G .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yWSHKU3G .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yWSHKU3G .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yWSHKU3G .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yWSHKU3G .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yWSHKU3G .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yWSHKU3G .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yWSHKU3G .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yWSHKU3G .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yWSHKU3G [class^="socicon-"]:before,
.cid-u2yWSHKU3G [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yWSHKU3G .mbr-section-title,
.cid-u2yWSHKU3G .mbr-social-likes {
  color: #ffffff;
}
.cid-u39obbfuct {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39obbfuct .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39obbfuct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39obbfuct .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39obbfuct .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39obbfuct .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39obbfuct .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39obbfuct .mbr-text {
  color: #ffffff;
}
.cid-u39obbfuct .card-title {
  color: #ffffff;
}
.cid-u39obbfuct .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39obbfuct .mbr-section-title {
  color: #ffffff;
}
.cid-u39obbfuct .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLdQxwLzmZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLdQxwLzmZ nav.navbar {
  position: fixed;
}
.cid-tLdQxwLzmZ .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-tLdQxwLzmZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLdQxwLzmZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLdQxwLzmZ .dropdown-item:hover,
.cid-tLdQxwLzmZ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLdQxwLzmZ .dropdown-item:hover span {
  color: white;
}
.cid-tLdQxwLzmZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLdQxwLzmZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLdQxwLzmZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLdQxwLzmZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLdQxwLzmZ .nav-link {
  position: relative;
}
.cid-tLdQxwLzmZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdQxwLzmZ .container {
    flex-wrap: wrap;
  }
}
.cid-tLdQxwLzmZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLdQxwLzmZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLdQxwLzmZ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLdQxwLzmZ .dropdown-menu,
.cid-tLdQxwLzmZ .navbar.opened {
  background: #000000 !important;
}
.cid-tLdQxwLzmZ .nav-item:focus,
.cid-tLdQxwLzmZ .nav-link:focus {
  outline: none;
}
.cid-tLdQxwLzmZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLdQxwLzmZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLdQxwLzmZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLdQxwLzmZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLdQxwLzmZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLdQxwLzmZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLdQxwLzmZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLdQxwLzmZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tLdQxwLzmZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLdQxwLzmZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tLdQxwLzmZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLdQxwLzmZ .navbar.collapsed {
  justify-content: center;
}
.cid-tLdQxwLzmZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLdQxwLzmZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLdQxwLzmZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLdQxwLzmZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLdQxwLzmZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLdQxwLzmZ .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-tLdQxwLzmZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLdQxwLzmZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLdQxwLzmZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLdQxwLzmZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLdQxwLzmZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLdQxwLzmZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLdQxwLzmZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLdQxwLzmZ .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-tLdQxwLzmZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLdQxwLzmZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLdQxwLzmZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLdQxwLzmZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLdQxwLzmZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLdQxwLzmZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLdQxwLzmZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLdQxwLzmZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLdQxwLzmZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLdQxwLzmZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLdQxwLzmZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLdQxwLzmZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLdQxwLzmZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLdQxwLzmZ .dropdown-item.active,
.cid-tLdQxwLzmZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tLdQxwLzmZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLdQxwLzmZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLdQxwLzmZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLdQxwLzmZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLdQxwLzmZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLdQxwLzmZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLdQxwLzmZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLdQxwLzmZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLdQxwLzmZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLdQxwLzmZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLdQxwLzmZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLdQxwLzmZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdQxwLzmZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLdQxwLzmZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLdQxwLzmZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdQxwLzmZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLdQxwLzmZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLdQxwLzmZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLdQxwLzmZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLdQxwLzmZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLdQxwLzmZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLdQxwLzmZ .navbar {
    height: 70px;
  }
  .cid-tLdQxwLzmZ .navbar.opened {
    height: auto;
  }
  .cid-tLdQxwLzmZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yWC9svdU {
  background-image: url("../../../assets/images/birdhouse-gourds-banner.webp");
}
.cid-u2yWC9svdU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWC9svdU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWC9svdU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWC9svdU .mbr-text,
.cid-u2yWC9svdU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWC9svdU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLdQItoZeu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLdQItoZeu img,
.cid-tLdQItoZeu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLdQItoZeu .item:focus,
.cid-tLdQItoZeu span:focus {
  outline: none;
}
.cid-tLdQItoZeu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLdQItoZeu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLdQItoZeu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLdQItoZeu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLdQItoZeu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLdQItoZeu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLdQItoZeu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLdQItoZeu .mbr-section-title {
  color: #ffffff;
}
.cid-tLdQItoZeu .mbr-text,
.cid-tLdQItoZeu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLdQItoZeu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLdQItoZeu .item-subtitle {
  text-align: left;
}
.cid-tLdQItoZeu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v30wB2uPvS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v30wB2uPvS img,
.cid-v30wB2uPvS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v30wB2uPvS .item:focus,
.cid-v30wB2uPvS span:focus {
  outline: none;
}
.cid-v30wB2uPvS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v30wB2uPvS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v30wB2uPvS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v30wB2uPvS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v30wB2uPvS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v30wB2uPvS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v30wB2uPvS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v30wB2uPvS .mbr-section-title {
  color: #ffffff;
}
.cid-v30wB2uPvS .mbr-text,
.cid-v30wB2uPvS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v30wB2uPvS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v30wB2uPvS .item-subtitle {
  text-align: left;
}
.cid-v30wB2uPvS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNv6ksM3s {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNv6ksM3s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNv6ksM3s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNv6ksM3s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNv6ksM3s .mbr-section-title {
  color: #ffffff;
}
.cid-uYNv4NXDqW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNv4NXDqW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNv4NXDqW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNv4NXDqW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNv4NXDqW .number {
  color: #ffffff;
}
.cid-uYNv4NXDqW .period {
  display: block;
}
.cid-uYNv4NXDqW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNv4NXDqW .period {
    font-size: 0.8rem;
  }
}
.cid-uYNv4NXDqW .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNv4NXDqW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNv4NXDqW .mbr-section-title {
  color: #ffffff;
}
.cid-uYNv4NXDqW .mbr-text {
  color: #ffffff;
}
.cid-uYNv4NXDqW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNv4NXDqW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNv4NXDqW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNv4NXDqW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yWBa8eMc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yWBa8eMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWBa8eMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWBa8eMc .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yWBa8eMc .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yWBa8eMc .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yWBa8eMc .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yWBa8eMc .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yWBa8eMc .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yWBa8eMc .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yWBa8eMc .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yWBa8eMc .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yWBa8eMc [class^="socicon-"]:before,
.cid-u2yWBa8eMc [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yWBa8eMc .mbr-section-title,
.cid-u2yWBa8eMc .mbr-social-likes {
  color: #ffffff;
}
.cid-u39o93aStZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39o93aStZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39o93aStZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39o93aStZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39o93aStZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39o93aStZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39o93aStZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39o93aStZ .mbr-text {
  color: #ffffff;
}
.cid-u39o93aStZ .card-title {
  color: #ffffff;
}
.cid-u39o93aStZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39o93aStZ .mbr-section-title {
  color: #ffffff;
}
.cid-u39o93aStZ .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLfhvtXwPI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLfhvtXwPI nav.navbar {
  position: fixed;
}
.cid-tLfhvtXwPI .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-tLfhvtXwPI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLfhvtXwPI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLfhvtXwPI .dropdown-item:hover,
.cid-tLfhvtXwPI .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLfhvtXwPI .dropdown-item:hover span {
  color: white;
}
.cid-tLfhvtXwPI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLfhvtXwPI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLfhvtXwPI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLfhvtXwPI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLfhvtXwPI .nav-link {
  position: relative;
}
.cid-tLfhvtXwPI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfhvtXwPI .container {
    flex-wrap: wrap;
  }
}
.cid-tLfhvtXwPI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfhvtXwPI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLfhvtXwPI .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLfhvtXwPI .dropdown-menu,
.cid-tLfhvtXwPI .navbar.opened {
  background: #000000 !important;
}
.cid-tLfhvtXwPI .nav-item:focus,
.cid-tLfhvtXwPI .nav-link:focus {
  outline: none;
}
.cid-tLfhvtXwPI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLfhvtXwPI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLfhvtXwPI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLfhvtXwPI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLfhvtXwPI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLfhvtXwPI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLfhvtXwPI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLfhvtXwPI .navbar.opened {
  transition: all 0.3s;
}
.cid-tLfhvtXwPI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLfhvtXwPI .navbar .navbar-logo img {
  width: auto;
}
.cid-tLfhvtXwPI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLfhvtXwPI .navbar.collapsed {
  justify-content: center;
}
.cid-tLfhvtXwPI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLfhvtXwPI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLfhvtXwPI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLfhvtXwPI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLfhvtXwPI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLfhvtXwPI .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-tLfhvtXwPI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLfhvtXwPI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLfhvtXwPI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLfhvtXwPI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLfhvtXwPI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLfhvtXwPI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLfhvtXwPI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLfhvtXwPI .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-tLfhvtXwPI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLfhvtXwPI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLfhvtXwPI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLfhvtXwPI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLfhvtXwPI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLfhvtXwPI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLfhvtXwPI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLfhvtXwPI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLfhvtXwPI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLfhvtXwPI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLfhvtXwPI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLfhvtXwPI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLfhvtXwPI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLfhvtXwPI .dropdown-item.active,
.cid-tLfhvtXwPI .dropdown-item:active {
  background-color: transparent;
}
.cid-tLfhvtXwPI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLfhvtXwPI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLfhvtXwPI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLfhvtXwPI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLfhvtXwPI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLfhvtXwPI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLfhvtXwPI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLfhvtXwPI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLfhvtXwPI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLfhvtXwPI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLfhvtXwPI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLfhvtXwPI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfhvtXwPI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfhvtXwPI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLfhvtXwPI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfhvtXwPI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLfhvtXwPI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLfhvtXwPI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfhvtXwPI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLfhvtXwPI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLfhvtXwPI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLfhvtXwPI .navbar {
    height: 70px;
  }
  .cid-tLfhvtXwPI .navbar.opened {
    height: auto;
  }
  .cid-tLfhvtXwPI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yVZLVGth {
  background-image: url("../../../assets/images/leaf-lettuce-mix-basket.webp");
}
.cid-u2yVZLVGth .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVZLVGth .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVZLVGth .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVZLVGth .mbr-text,
.cid-u2yVZLVGth .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVZLVGth .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLfhIUfqzj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLfhIUfqzj img,
.cid-tLfhIUfqzj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLfhIUfqzj .item:focus,
.cid-tLfhIUfqzj span:focus {
  outline: none;
}
.cid-tLfhIUfqzj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLfhIUfqzj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLfhIUfqzj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLfhIUfqzj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLfhIUfqzj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLfhIUfqzj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLfhIUfqzj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLfhIUfqzj .mbr-section-title {
  color: #ffffff;
}
.cid-tLfhIUfqzj .mbr-text,
.cid-tLfhIUfqzj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLfhIUfqzj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLfhIUfqzj .item-subtitle {
  text-align: left;
}
.cid-tLfhIUfqzj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGGEx6ulp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGGEx6ulp img,
.cid-uYGGEx6ulp .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGGEx6ulp .item:focus,
.cid-uYGGEx6ulp span:focus {
  outline: none;
}
.cid-uYGGEx6ulp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGGEx6ulp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGGEx6ulp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGGEx6ulp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGGEx6ulp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGGEx6ulp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGGEx6ulp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGGEx6ulp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGGEx6ulp .mbr-text,
.cid-uYGGEx6ulp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGGEx6ulp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGGEx6ulp .item-subtitle {
  text-align: left;
}
.cid-uYGGEx6ulp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNu5KE3NS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNu5KE3NS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNu5KE3NS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNu5KE3NS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNu5KE3NS .mbr-section-title {
  color: #ffffff;
}
.cid-uYNu47wjQt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNu47wjQt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNu47wjQt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNu47wjQt .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNu47wjQt .number {
  color: #ffffff;
}
.cid-uYNu47wjQt .period {
  display: block;
}
.cid-uYNu47wjQt .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNu47wjQt .period {
    font-size: 0.8rem;
  }
}
.cid-uYNu47wjQt .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNu47wjQt .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNu47wjQt .mbr-section-title {
  color: #ffffff;
}
.cid-uYNu47wjQt .mbr-text {
  color: #ffffff;
}
.cid-uYNu47wjQt .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNu47wjQt .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNu47wjQt .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNu47wjQt .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yVYFUP28 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yVYFUP28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVYFUP28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVYFUP28 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yVYFUP28 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yVYFUP28 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yVYFUP28 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yVYFUP28 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yVYFUP28 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yVYFUP28 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yVYFUP28 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yVYFUP28 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yVYFUP28 [class^="socicon-"]:before,
.cid-u2yVYFUP28 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yVYFUP28 .mbr-section-title,
.cid-u2yVYFUP28 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39o3RVNaC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39o3RVNaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39o3RVNaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39o3RVNaC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39o3RVNaC .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39o3RVNaC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39o3RVNaC .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39o3RVNaC .mbr-text {
  color: #ffffff;
}
.cid-u39o3RVNaC .card-title {
  color: #ffffff;
}
.cid-u39o3RVNaC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39o3RVNaC .mbr-section-title {
  color: #ffffff;
}
.cid-u39o3RVNaC .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLfkiNHaYk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLfkiNHaYk nav.navbar {
  position: fixed;
}
.cid-tLfkiNHaYk .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-tLfkiNHaYk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLfkiNHaYk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLfkiNHaYk .dropdown-item:hover,
.cid-tLfkiNHaYk .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLfkiNHaYk .dropdown-item:hover span {
  color: white;
}
.cid-tLfkiNHaYk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLfkiNHaYk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLfkiNHaYk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLfkiNHaYk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLfkiNHaYk .nav-link {
  position: relative;
}
.cid-tLfkiNHaYk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfkiNHaYk .container {
    flex-wrap: wrap;
  }
}
.cid-tLfkiNHaYk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfkiNHaYk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLfkiNHaYk .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLfkiNHaYk .dropdown-menu,
.cid-tLfkiNHaYk .navbar.opened {
  background: #000000 !important;
}
.cid-tLfkiNHaYk .nav-item:focus,
.cid-tLfkiNHaYk .nav-link:focus {
  outline: none;
}
.cid-tLfkiNHaYk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLfkiNHaYk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLfkiNHaYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLfkiNHaYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLfkiNHaYk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLfkiNHaYk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLfkiNHaYk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLfkiNHaYk .navbar.opened {
  transition: all 0.3s;
}
.cid-tLfkiNHaYk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLfkiNHaYk .navbar .navbar-logo img {
  width: auto;
}
.cid-tLfkiNHaYk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLfkiNHaYk .navbar.collapsed {
  justify-content: center;
}
.cid-tLfkiNHaYk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLfkiNHaYk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLfkiNHaYk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLfkiNHaYk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLfkiNHaYk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLfkiNHaYk .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-tLfkiNHaYk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLfkiNHaYk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLfkiNHaYk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLfkiNHaYk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLfkiNHaYk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLfkiNHaYk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLfkiNHaYk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLfkiNHaYk .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-tLfkiNHaYk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLfkiNHaYk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLfkiNHaYk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLfkiNHaYk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLfkiNHaYk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLfkiNHaYk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLfkiNHaYk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLfkiNHaYk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLfkiNHaYk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLfkiNHaYk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLfkiNHaYk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLfkiNHaYk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLfkiNHaYk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLfkiNHaYk .dropdown-item.active,
.cid-tLfkiNHaYk .dropdown-item:active {
  background-color: transparent;
}
.cid-tLfkiNHaYk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLfkiNHaYk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLfkiNHaYk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLfkiNHaYk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLfkiNHaYk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLfkiNHaYk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLfkiNHaYk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLfkiNHaYk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLfkiNHaYk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLfkiNHaYk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLfkiNHaYk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLfkiNHaYk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfkiNHaYk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfkiNHaYk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLfkiNHaYk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfkiNHaYk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLfkiNHaYk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLfkiNHaYk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfkiNHaYk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLfkiNHaYk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLfkiNHaYk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLfkiNHaYk .navbar {
    height: 70px;
  }
  .cid-tLfkiNHaYk .navbar.opened {
    height: auto;
  }
  .cid-tLfkiNHaYk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yVHblnRe {
  background-image: url("../../../assets/images/melons.webp");
}
.cid-u2yVHblnRe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVHblnRe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVHblnRe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVHblnRe .mbr-text,
.cid-u2yVHblnRe .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVHblnRe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLfktk5UbH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLfktk5UbH img,
.cid-tLfktk5UbH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLfktk5UbH .item:focus,
.cid-tLfktk5UbH span:focus {
  outline: none;
}
.cid-tLfktk5UbH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLfktk5UbH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLfktk5UbH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLfktk5UbH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLfktk5UbH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLfktk5UbH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLfktk5UbH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLfktk5UbH .mbr-section-title {
  color: #ffffff;
}
.cid-tLfktk5UbH .mbr-text,
.cid-tLfktk5UbH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLfktk5UbH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLfktk5UbH .item-subtitle {
  text-align: left;
}
.cid-tLfktk5UbH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqCrZtIrol {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uqCrZtIrol img,
.cid-uqCrZtIrol .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uqCrZtIrol .item:focus,
.cid-uqCrZtIrol span:focus {
  outline: none;
}
.cid-uqCrZtIrol .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqCrZtIrol .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqCrZtIrol .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uqCrZtIrol .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqCrZtIrol .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uqCrZtIrol .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uqCrZtIrol .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqCrZtIrol .mbr-section-title {
  color: #232323;
}
.cid-uqCrZtIrol .mbr-text,
.cid-uqCrZtIrol .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uqCrZtIrol .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uqCrZtIrol .item-subtitle {
  text-align: center;
}
.cid-uYNtAu9qj2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtAu9qj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtAu9qj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtAu9qj2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtAu9qj2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtyWgziZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtyWgziZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtyWgziZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtyWgziZ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtyWgziZ .number {
  color: #ffffff;
}
.cid-uYNtyWgziZ .period {
  display: block;
}
.cid-uYNtyWgziZ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtyWgziZ .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtyWgziZ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtyWgziZ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtyWgziZ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtyWgziZ .mbr-text {
  color: #ffffff;
}
.cid-uYNtyWgziZ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtyWgziZ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtyWgziZ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtyWgziZ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yVFU1uCa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yVFU1uCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVFU1uCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVFU1uCa .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yVFU1uCa .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yVFU1uCa .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yVFU1uCa .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yVFU1uCa .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yVFU1uCa .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yVFU1uCa .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yVFU1uCa .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yVFU1uCa .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yVFU1uCa [class^="socicon-"]:before,
.cid-u2yVFU1uCa [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yVFU1uCa .mbr-section-title,
.cid-u2yVFU1uCa .mbr-social-likes {
  color: #ffffff;
}
.cid-u39o1GVI2O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39o1GVI2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39o1GVI2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39o1GVI2O .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39o1GVI2O .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39o1GVI2O .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39o1GVI2O .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39o1GVI2O .mbr-text {
  color: #ffffff;
}
.cid-u39o1GVI2O .card-title {
  color: #ffffff;
}
.cid-u39o1GVI2O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39o1GVI2O .mbr-section-title {
  color: #ffffff;
}
.cid-u39o1GVI2O .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLfpudfoCp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLfpudfoCp nav.navbar {
  position: fixed;
}
.cid-tLfpudfoCp .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-tLfpudfoCp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLfpudfoCp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLfpudfoCp .dropdown-item:hover,
.cid-tLfpudfoCp .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLfpudfoCp .dropdown-item:hover span {
  color: white;
}
.cid-tLfpudfoCp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLfpudfoCp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLfpudfoCp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLfpudfoCp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLfpudfoCp .nav-link {
  position: relative;
}
.cid-tLfpudfoCp .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfpudfoCp .container {
    flex-wrap: wrap;
  }
}
.cid-tLfpudfoCp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfpudfoCp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLfpudfoCp .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLfpudfoCp .dropdown-menu,
.cid-tLfpudfoCp .navbar.opened {
  background: #000000 !important;
}
.cid-tLfpudfoCp .nav-item:focus,
.cid-tLfpudfoCp .nav-link:focus {
  outline: none;
}
.cid-tLfpudfoCp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLfpudfoCp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLfpudfoCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLfpudfoCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLfpudfoCp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLfpudfoCp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLfpudfoCp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLfpudfoCp .navbar.opened {
  transition: all 0.3s;
}
.cid-tLfpudfoCp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLfpudfoCp .navbar .navbar-logo img {
  width: auto;
}
.cid-tLfpudfoCp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLfpudfoCp .navbar.collapsed {
  justify-content: center;
}
.cid-tLfpudfoCp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLfpudfoCp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLfpudfoCp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLfpudfoCp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLfpudfoCp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLfpudfoCp .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-tLfpudfoCp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLfpudfoCp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLfpudfoCp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLfpudfoCp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLfpudfoCp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLfpudfoCp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLfpudfoCp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLfpudfoCp .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-tLfpudfoCp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLfpudfoCp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLfpudfoCp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLfpudfoCp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLfpudfoCp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLfpudfoCp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLfpudfoCp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLfpudfoCp .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLfpudfoCp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLfpudfoCp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLfpudfoCp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLfpudfoCp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLfpudfoCp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLfpudfoCp .dropdown-item.active,
.cid-tLfpudfoCp .dropdown-item:active {
  background-color: transparent;
}
.cid-tLfpudfoCp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLfpudfoCp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLfpudfoCp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLfpudfoCp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLfpudfoCp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLfpudfoCp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLfpudfoCp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLfpudfoCp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLfpudfoCp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLfpudfoCp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLfpudfoCp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLfpudfoCp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfpudfoCp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfpudfoCp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLfpudfoCp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfpudfoCp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLfpudfoCp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLfpudfoCp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfpudfoCp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLfpudfoCp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLfpudfoCp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLfpudfoCp .navbar {
    height: 70px;
  }
  .cid-tLfpudfoCp .navbar.opened {
    height: auto;
  }
  .cid-tLfpudfoCp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yVpmJ1ma {
  background-image: url("../../../assets/images/mustard-plant-flowers-banner.webp");
}
.cid-u2yVpmJ1ma .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVpmJ1ma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVpmJ1ma .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVpmJ1ma .mbr-text,
.cid-u2yVpmJ1ma .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yVpmJ1ma .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLfpGqiwio {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLfpGqiwio img,
.cid-tLfpGqiwio .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLfpGqiwio .item:focus,
.cid-tLfpGqiwio span:focus {
  outline: none;
}
.cid-tLfpGqiwio .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLfpGqiwio .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLfpGqiwio .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLfpGqiwio .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLfpGqiwio .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLfpGqiwio .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLfpGqiwio .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLfpGqiwio .mbr-section-title {
  color: #ffffff;
}
.cid-tLfpGqiwio .mbr-text,
.cid-tLfpGqiwio .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLfpGqiwio .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLfpGqiwio .item-subtitle {
  text-align: left;
}
.cid-tLfpGqiwio .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYoH3jkJX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYoH3jkJX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYoH3jkJX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYoH3jkJX .mbr-section-title {
  color: #ffffff;
}
.cid-uZYoH3jkJX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtqsjpeB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtqsjpeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtqsjpeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtqsjpeB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtqsjpeB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtpb8gNQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtpb8gNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtpb8gNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtpb8gNQ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtpb8gNQ .number {
  color: #ffffff;
}
.cid-uYNtpb8gNQ .period {
  display: block;
}
.cid-uYNtpb8gNQ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtpb8gNQ .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtpb8gNQ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtpb8gNQ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtpb8gNQ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtpb8gNQ .mbr-text {
  color: #ffffff;
}
.cid-uYNtpb8gNQ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtpb8gNQ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtpb8gNQ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtpb8gNQ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yVoahfqb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yVoahfqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yVoahfqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yVoahfqb .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yVoahfqb .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yVoahfqb .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yVoahfqb .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yVoahfqb .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yVoahfqb .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yVoahfqb .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yVoahfqb .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yVoahfqb .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yVoahfqb [class^="socicon-"]:before,
.cid-u2yVoahfqb [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yVoahfqb .mbr-section-title,
.cid-u2yVoahfqb .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nPE9YWs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nPE9YWs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nPE9YWs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nPE9YWs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nPE9YWs .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nPE9YWs .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nPE9YWs .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nPE9YWs .mbr-text {
  color: #ffffff;
}
.cid-u39nPE9YWs .card-title {
  color: #ffffff;
}
.cid-u39nPE9YWs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nPE9YWs .mbr-section-title {
  color: #ffffff;
}
.cid-u39nPE9YWs .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLfrpq1oU5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLfrpq1oU5 nav.navbar {
  position: fixed;
}
.cid-tLfrpq1oU5 .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-tLfrpq1oU5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLfrpq1oU5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLfrpq1oU5 .dropdown-item:hover,
.cid-tLfrpq1oU5 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLfrpq1oU5 .dropdown-item:hover span {
  color: white;
}
.cid-tLfrpq1oU5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLfrpq1oU5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLfrpq1oU5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLfrpq1oU5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLfrpq1oU5 .nav-link {
  position: relative;
}
.cid-tLfrpq1oU5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfrpq1oU5 .container {
    flex-wrap: wrap;
  }
}
.cid-tLfrpq1oU5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfrpq1oU5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLfrpq1oU5 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLfrpq1oU5 .dropdown-menu,
.cid-tLfrpq1oU5 .navbar.opened {
  background: #000000 !important;
}
.cid-tLfrpq1oU5 .nav-item:focus,
.cid-tLfrpq1oU5 .nav-link:focus {
  outline: none;
}
.cid-tLfrpq1oU5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLfrpq1oU5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLfrpq1oU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLfrpq1oU5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLfrpq1oU5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLfrpq1oU5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLfrpq1oU5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLfrpq1oU5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tLfrpq1oU5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLfrpq1oU5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tLfrpq1oU5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLfrpq1oU5 .navbar.collapsed {
  justify-content: center;
}
.cid-tLfrpq1oU5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLfrpq1oU5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLfrpq1oU5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLfrpq1oU5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLfrpq1oU5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLfrpq1oU5 .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-tLfrpq1oU5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLfrpq1oU5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLfrpq1oU5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLfrpq1oU5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLfrpq1oU5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLfrpq1oU5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLfrpq1oU5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLfrpq1oU5 .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-tLfrpq1oU5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLfrpq1oU5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLfrpq1oU5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLfrpq1oU5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLfrpq1oU5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLfrpq1oU5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLfrpq1oU5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLfrpq1oU5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLfrpq1oU5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLfrpq1oU5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLfrpq1oU5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLfrpq1oU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLfrpq1oU5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLfrpq1oU5 .dropdown-item.active,
.cid-tLfrpq1oU5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLfrpq1oU5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLfrpq1oU5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLfrpq1oU5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLfrpq1oU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLfrpq1oU5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLfrpq1oU5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLfrpq1oU5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLfrpq1oU5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLfrpq1oU5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLfrpq1oU5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLfrpq1oU5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLfrpq1oU5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfrpq1oU5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfrpq1oU5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLfrpq1oU5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfrpq1oU5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLfrpq1oU5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLfrpq1oU5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfrpq1oU5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLfrpq1oU5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLfrpq1oU5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLfrpq1oU5 .navbar {
    height: 70px;
  }
  .cid-tLfrpq1oU5 .navbar.opened {
    height: auto;
  }
  .cid-tLfrpq1oU5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yV4Bbs7j {
  background-image: url("../../../assets/images/emerald-green-okra.webp");
}
.cid-u2yV4Bbs7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yV4Bbs7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yV4Bbs7j .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yV4Bbs7j .mbr-text,
.cid-u2yV4Bbs7j .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yV4Bbs7j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLfrFOTseF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLfrFOTseF img,
.cid-tLfrFOTseF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLfrFOTseF .item:focus,
.cid-tLfrFOTseF span:focus {
  outline: none;
}
.cid-tLfrFOTseF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLfrFOTseF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLfrFOTseF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLfrFOTseF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLfrFOTseF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLfrFOTseF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLfrFOTseF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLfrFOTseF .mbr-section-title {
  color: #ffffff;
}
.cid-tLfrFOTseF .mbr-text,
.cid-tLfrFOTseF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLfrFOTseF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLfrFOTseF .item-subtitle {
  text-align: left;
}
.cid-tLfrFOTseF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNt38sO62 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNt38sO62 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNt38sO62 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNt38sO62 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNt38sO62 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNt2131t7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNt2131t7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNt2131t7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNt2131t7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNt2131t7 .number {
  color: #ffffff;
}
.cid-uYNt2131t7 .period {
  display: block;
}
.cid-uYNt2131t7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNt2131t7 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNt2131t7 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNt2131t7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNt2131t7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNt2131t7 .mbr-text {
  color: #ffffff;
}
.cid-uYNt2131t7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNt2131t7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNt2131t7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNt2131t7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yV3vjJDh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yV3vjJDh .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yV3vjJDh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yV3vjJDh .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yV3vjJDh .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yV3vjJDh .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yV3vjJDh .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yV3vjJDh .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yV3vjJDh .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yV3vjJDh .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yV3vjJDh .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yV3vjJDh .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yV3vjJDh [class^="socicon-"]:before,
.cid-u2yV3vjJDh [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yV3vjJDh .mbr-section-title,
.cid-u2yV3vjJDh .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nNjIhbw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nNjIhbw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nNjIhbw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nNjIhbw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nNjIhbw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nNjIhbw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nNjIhbw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nNjIhbw .mbr-text {
  color: #ffffff;
}
.cid-u39nNjIhbw .card-title {
  color: #ffffff;
}
.cid-u39nNjIhbw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nNjIhbw .mbr-section-title {
  color: #ffffff;
}
.cid-u39nNjIhbw .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLkoEmCz2G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLkoEmCz2G nav.navbar {
  position: fixed;
}
.cid-tLkoEmCz2G .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-tLkoEmCz2G .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLkoEmCz2G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLkoEmCz2G .dropdown-item:hover,
.cid-tLkoEmCz2G .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLkoEmCz2G .dropdown-item:hover span {
  color: white;
}
.cid-tLkoEmCz2G .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLkoEmCz2G .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLkoEmCz2G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLkoEmCz2G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLkoEmCz2G .nav-link {
  position: relative;
}
.cid-tLkoEmCz2G .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLkoEmCz2G .container {
    flex-wrap: wrap;
  }
}
.cid-tLkoEmCz2G .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLkoEmCz2G .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLkoEmCz2G .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLkoEmCz2G .dropdown-menu,
.cid-tLkoEmCz2G .navbar.opened {
  background: #000000 !important;
}
.cid-tLkoEmCz2G .nav-item:focus,
.cid-tLkoEmCz2G .nav-link:focus {
  outline: none;
}
.cid-tLkoEmCz2G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLkoEmCz2G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLkoEmCz2G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLkoEmCz2G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLkoEmCz2G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLkoEmCz2G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLkoEmCz2G .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLkoEmCz2G .navbar.opened {
  transition: all 0.3s;
}
.cid-tLkoEmCz2G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLkoEmCz2G .navbar .navbar-logo img {
  width: auto;
}
.cid-tLkoEmCz2G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLkoEmCz2G .navbar.collapsed {
  justify-content: center;
}
.cid-tLkoEmCz2G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLkoEmCz2G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLkoEmCz2G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLkoEmCz2G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLkoEmCz2G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLkoEmCz2G .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-tLkoEmCz2G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLkoEmCz2G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLkoEmCz2G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLkoEmCz2G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLkoEmCz2G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLkoEmCz2G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLkoEmCz2G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLkoEmCz2G .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-tLkoEmCz2G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLkoEmCz2G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLkoEmCz2G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLkoEmCz2G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLkoEmCz2G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLkoEmCz2G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLkoEmCz2G .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLkoEmCz2G .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLkoEmCz2G .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLkoEmCz2G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLkoEmCz2G .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLkoEmCz2G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLkoEmCz2G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLkoEmCz2G .dropdown-item.active,
.cid-tLkoEmCz2G .dropdown-item:active {
  background-color: transparent;
}
.cid-tLkoEmCz2G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLkoEmCz2G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLkoEmCz2G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLkoEmCz2G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLkoEmCz2G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLkoEmCz2G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLkoEmCz2G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLkoEmCz2G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLkoEmCz2G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLkoEmCz2G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLkoEmCz2G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLkoEmCz2G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLkoEmCz2G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLkoEmCz2G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLkoEmCz2G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLkoEmCz2G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLkoEmCz2G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLkoEmCz2G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLkoEmCz2G .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLkoEmCz2G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLkoEmCz2G .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLkoEmCz2G .navbar {
    height: 70px;
  }
  .cid-tLkoEmCz2G .navbar.opened {
    height: auto;
  }
  .cid-tLkoEmCz2G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yUtGzeNf {
  background-image: url("../../../assets/images/parsnips-banner.webp");
}
.cid-u2yUtGzeNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yUtGzeNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yUtGzeNf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUtGzeNf .mbr-text,
.cid-u2yUtGzeNf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUtGzeNf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLkoO4DNc4 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tLkoO4DNc4 img,
.cid-tLkoO4DNc4 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLkoO4DNc4 .item:focus,
.cid-tLkoO4DNc4 span:focus {
  outline: none;
}
.cid-tLkoO4DNc4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLkoO4DNc4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLkoO4DNc4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLkoO4DNc4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLkoO4DNc4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLkoO4DNc4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLkoO4DNc4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLkoO4DNc4 .mbr-section-title {
  color: #ffffff;
}
.cid-tLkoO4DNc4 .mbr-text,
.cid-tLkoO4DNc4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLkoO4DNc4 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLkoO4DNc4 .item-subtitle {
  text-align: left;
}
.cid-tLkoO4DNc4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYopMJdsu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYopMJdsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYopMJdsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYopMJdsu .mbr-section-title {
  color: #ffffff;
}
.cid-uZYopMJdsu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsRBRU7X {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsRBRU7X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsRBRU7X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsRBRU7X .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsRBRU7X .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsPZBnhJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsPZBnhJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsPZBnhJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsPZBnhJ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsPZBnhJ .number {
  color: #ffffff;
}
.cid-uYNsPZBnhJ .period {
  display: block;
}
.cid-uYNsPZBnhJ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsPZBnhJ .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsPZBnhJ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsPZBnhJ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsPZBnhJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsPZBnhJ .mbr-text {
  color: #ffffff;
}
.cid-uYNsPZBnhJ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsPZBnhJ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsPZBnhJ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsPZBnhJ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yUrmV7Ap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yUrmV7Ap .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yUrmV7Ap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yUrmV7Ap .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yUrmV7Ap .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yUrmV7Ap .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yUrmV7Ap .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yUrmV7Ap .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yUrmV7Ap .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yUrmV7Ap .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yUrmV7Ap .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yUrmV7Ap .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yUrmV7Ap [class^="socicon-"]:before,
.cid-u2yUrmV7Ap [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yUrmV7Ap .mbr-section-title,
.cid-u2yUrmV7Ap .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nICdoT2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nICdoT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nICdoT2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nICdoT2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nICdoT2 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nICdoT2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nICdoT2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nICdoT2 .mbr-text {
  color: #ffffff;
}
.cid-u39nICdoT2 .card-title {
  color: #ffffff;
}
.cid-u39nICdoT2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nICdoT2 .mbr-section-title {
  color: #ffffff;
}
.cid-u39nICdoT2 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLlqZWxEQZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLlqZWxEQZ nav.navbar {
  position: fixed;
}
.cid-tLlqZWxEQZ .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-tLlqZWxEQZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLlqZWxEQZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLlqZWxEQZ .dropdown-item:hover,
.cid-tLlqZWxEQZ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLlqZWxEQZ .dropdown-item:hover span {
  color: white;
}
.cid-tLlqZWxEQZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLlqZWxEQZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLlqZWxEQZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLlqZWxEQZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLlqZWxEQZ .nav-link {
  position: relative;
}
.cid-tLlqZWxEQZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlqZWxEQZ .container {
    flex-wrap: wrap;
  }
}
.cid-tLlqZWxEQZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlqZWxEQZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLlqZWxEQZ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLlqZWxEQZ .dropdown-menu,
.cid-tLlqZWxEQZ .navbar.opened {
  background: #000000 !important;
}
.cid-tLlqZWxEQZ .nav-item:focus,
.cid-tLlqZWxEQZ .nav-link:focus {
  outline: none;
}
.cid-tLlqZWxEQZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLlqZWxEQZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLlqZWxEQZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLlqZWxEQZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLlqZWxEQZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLlqZWxEQZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLlqZWxEQZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLlqZWxEQZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tLlqZWxEQZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLlqZWxEQZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tLlqZWxEQZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLlqZWxEQZ .navbar.collapsed {
  justify-content: center;
}
.cid-tLlqZWxEQZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLlqZWxEQZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLlqZWxEQZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLlqZWxEQZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLlqZWxEQZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLlqZWxEQZ .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-tLlqZWxEQZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLlqZWxEQZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLlqZWxEQZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLlqZWxEQZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLlqZWxEQZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLlqZWxEQZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLlqZWxEQZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLlqZWxEQZ .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-tLlqZWxEQZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLlqZWxEQZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLlqZWxEQZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLlqZWxEQZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLlqZWxEQZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLlqZWxEQZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLlqZWxEQZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLlqZWxEQZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLlqZWxEQZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLlqZWxEQZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLlqZWxEQZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLlqZWxEQZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLlqZWxEQZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLlqZWxEQZ .dropdown-item.active,
.cid-tLlqZWxEQZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tLlqZWxEQZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLlqZWxEQZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLlqZWxEQZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLlqZWxEQZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLlqZWxEQZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLlqZWxEQZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLlqZWxEQZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLlqZWxEQZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLlqZWxEQZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLlqZWxEQZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLlqZWxEQZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLlqZWxEQZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlqZWxEQZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlqZWxEQZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLlqZWxEQZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlqZWxEQZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLlqZWxEQZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLlqZWxEQZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlqZWxEQZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLlqZWxEQZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLlqZWxEQZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLlqZWxEQZ .navbar {
    height: 70px;
  }
  .cid-tLlqZWxEQZ .navbar.opened {
    height: auto;
  }
  .cid-tLlqZWxEQZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yShls9T8 {
  background-image: url("../../../assets/images/peppers-banner.webp");
}
.cid-u2yShls9T8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yShls9T8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yShls9T8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yShls9T8 .mbr-text,
.cid-u2yShls9T8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yShls9T8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLlr8P9QVl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLlr8P9QVl img,
.cid-tLlr8P9QVl .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLlr8P9QVl .item:focus,
.cid-tLlr8P9QVl span:focus {
  outline: none;
}
.cid-tLlr8P9QVl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLlr8P9QVl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLlr8P9QVl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLlr8P9QVl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLlr8P9QVl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLlr8P9QVl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLlr8P9QVl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLlr8P9QVl .mbr-section-title {
  color: #ffffff;
}
.cid-tLlr8P9QVl .mbr-text,
.cid-tLlr8P9QVl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLlr8P9QVl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLlr8P9QVl .item-subtitle {
  text-align: left;
}
.cid-tLlr8P9QVl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLlrYkHNAT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLlrYkHNAT img,
.cid-tLlrYkHNAT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLlrYkHNAT .item:focus,
.cid-tLlrYkHNAT span:focus {
  outline: none;
}
.cid-tLlrYkHNAT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLlrYkHNAT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLlrYkHNAT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLlrYkHNAT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLlrYkHNAT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLlrYkHNAT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLlrYkHNAT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLlrYkHNAT .mbr-section-title {
  color: #232323;
}
.cid-tLlrYkHNAT .mbr-text,
.cid-tLlrYkHNAT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLlrYkHNAT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLlrYkHNAT .item-subtitle {
  text-align: left;
}
.cid-tLlsbchav7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLlsbchav7 img,
.cid-tLlsbchav7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLlsbchav7 .item:focus,
.cid-tLlsbchav7 span:focus {
  outline: none;
}
.cid-tLlsbchav7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLlsbchav7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLlsbchav7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLlsbchav7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLlsbchav7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLlsbchav7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLlsbchav7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLlsbchav7 .mbr-section-title {
  color: #232323;
}
.cid-tLlsbchav7 .mbr-text,
.cid-tLlsbchav7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLlsbchav7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLlsbchav7 .item-subtitle {
  text-align: left;
}
.cid-tLlsRnBKfT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLlsRnBKfT img,
.cid-tLlsRnBKfT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLlsRnBKfT .item:focus,
.cid-tLlsRnBKfT span:focus {
  outline: none;
}
.cid-tLlsRnBKfT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLlsRnBKfT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLlsRnBKfT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLlsRnBKfT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLlsRnBKfT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLlsRnBKfT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLlsRnBKfT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLlsRnBKfT .mbr-section-title {
  color: #232323;
}
.cid-tLlsRnBKfT .mbr-text,
.cid-tLlsRnBKfT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLlsRnBKfT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLlsRnBKfT .item-subtitle {
  text-align: left;
}
.cid-uy6DO68UiF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uy6DO68UiF img,
.cid-uy6DO68UiF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uy6DO68UiF .item:focus,
.cid-uy6DO68UiF span:focus {
  outline: none;
}
.cid-uy6DO68UiF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uy6DO68UiF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uy6DO68UiF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uy6DO68UiF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uy6DO68UiF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uy6DO68UiF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uy6DO68UiF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uy6DO68UiF .mbr-section-title {
  color: #232323;
}
.cid-uy6DO68UiF .mbr-text,
.cid-uy6DO68UiF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uy6DO68UiF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uy6DO68UiF .item-subtitle {
  text-align: left;
}
.cid-uYNqw6hcnp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqw6hcnp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqw6hcnp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqw6hcnp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqw6hcnp .mbr-section-title {
  color: #ffffff;
}
.cid-uYNquLAMOl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNquLAMOl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNquLAMOl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNquLAMOl .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNquLAMOl .number {
  color: #ffffff;
}
.cid-uYNquLAMOl .period {
  display: block;
}
.cid-uYNquLAMOl .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNquLAMOl .period {
    font-size: 0.8rem;
  }
}
.cid-uYNquLAMOl .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNquLAMOl .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNquLAMOl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNquLAMOl .mbr-text {
  color: #ffffff;
}
.cid-uYNquLAMOl .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNquLAMOl .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNquLAMOl .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNquLAMOl .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2ySeRaQRw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2ySeRaQRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ySeRaQRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ySeRaQRw .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2ySeRaQRw .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2ySeRaQRw .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2ySeRaQRw .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2ySeRaQRw .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2ySeRaQRw .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2ySeRaQRw .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2ySeRaQRw .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2ySeRaQRw .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2ySeRaQRw [class^="socicon-"]:before,
.cid-u2ySeRaQRw [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2ySeRaQRw .mbr-section-title,
.cid-u2ySeRaQRw .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nvuxbML {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nvuxbML .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nvuxbML .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nvuxbML .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nvuxbML .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nvuxbML .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nvuxbML .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nvuxbML .mbr-text {
  color: #ffffff;
}
.cid-u39nvuxbML .card-title {
  color: #ffffff;
}
.cid-u39nvuxbML .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nvuxbML .mbr-section-title {
  color: #ffffff;
}
.cid-u39nvuxbML .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLxeo4dyiv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLxeo4dyiv nav.navbar {
  position: fixed;
}
.cid-tLxeo4dyiv .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-tLxeo4dyiv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLxeo4dyiv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLxeo4dyiv .dropdown-item:hover,
.cid-tLxeo4dyiv .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLxeo4dyiv .dropdown-item:hover span {
  color: white;
}
.cid-tLxeo4dyiv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLxeo4dyiv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLxeo4dyiv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLxeo4dyiv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLxeo4dyiv .nav-link {
  position: relative;
}
.cid-tLxeo4dyiv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxeo4dyiv .container {
    flex-wrap: wrap;
  }
}
.cid-tLxeo4dyiv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxeo4dyiv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLxeo4dyiv .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLxeo4dyiv .dropdown-menu,
.cid-tLxeo4dyiv .navbar.opened {
  background: #000000 !important;
}
.cid-tLxeo4dyiv .nav-item:focus,
.cid-tLxeo4dyiv .nav-link:focus {
  outline: none;
}
.cid-tLxeo4dyiv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLxeo4dyiv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLxeo4dyiv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLxeo4dyiv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLxeo4dyiv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLxeo4dyiv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLxeo4dyiv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLxeo4dyiv .navbar.opened {
  transition: all 0.3s;
}
.cid-tLxeo4dyiv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLxeo4dyiv .navbar .navbar-logo img {
  width: auto;
}
.cid-tLxeo4dyiv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLxeo4dyiv .navbar.collapsed {
  justify-content: center;
}
.cid-tLxeo4dyiv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLxeo4dyiv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLxeo4dyiv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLxeo4dyiv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLxeo4dyiv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLxeo4dyiv .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-tLxeo4dyiv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLxeo4dyiv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLxeo4dyiv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLxeo4dyiv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLxeo4dyiv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLxeo4dyiv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLxeo4dyiv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLxeo4dyiv .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-tLxeo4dyiv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLxeo4dyiv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLxeo4dyiv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLxeo4dyiv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLxeo4dyiv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLxeo4dyiv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLxeo4dyiv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLxeo4dyiv .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLxeo4dyiv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLxeo4dyiv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLxeo4dyiv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLxeo4dyiv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLxeo4dyiv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLxeo4dyiv .dropdown-item.active,
.cid-tLxeo4dyiv .dropdown-item:active {
  background-color: transparent;
}
.cid-tLxeo4dyiv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLxeo4dyiv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLxeo4dyiv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLxeo4dyiv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLxeo4dyiv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLxeo4dyiv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLxeo4dyiv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLxeo4dyiv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLxeo4dyiv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLxeo4dyiv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLxeo4dyiv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLxeo4dyiv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxeo4dyiv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxeo4dyiv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLxeo4dyiv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxeo4dyiv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLxeo4dyiv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLxeo4dyiv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxeo4dyiv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLxeo4dyiv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLxeo4dyiv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLxeo4dyiv .navbar {
    height: 70px;
  }
  .cid-tLxeo4dyiv .navbar.opened {
    height: auto;
  }
  .cid-tLxeo4dyiv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yRW7eNnS {
  background-image: url("../../../assets/images/pumpkins-banner.webp");
}
.cid-u2yRW7eNnS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRW7eNnS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRW7eNnS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRW7eNnS .mbr-text,
.cid-u2yRW7eNnS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRW7eNnS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLxeAmu04n {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLxeAmu04n img,
.cid-tLxeAmu04n .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLxeAmu04n .item:focus,
.cid-tLxeAmu04n span:focus {
  outline: none;
}
.cid-tLxeAmu04n .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLxeAmu04n .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLxeAmu04n .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLxeAmu04n .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLxeAmu04n .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLxeAmu04n .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLxeAmu04n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLxeAmu04n .mbr-section-title {
  color: #ffffff;
}
.cid-tLxeAmu04n .mbr-text,
.cid-tLxeAmu04n .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLxeAmu04n .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLxeAmu04n .item-subtitle {
  text-align: left;
}
.cid-tLxeAmu04n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpZ0hY4q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpZ0hY4q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpZ0hY4q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpZ0hY4q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpZ0hY4q .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpXO7rUm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpXO7rUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpXO7rUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpXO7rUm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpXO7rUm .number {
  color: #ffffff;
}
.cid-uYNpXO7rUm .period {
  display: block;
}
.cid-uYNpXO7rUm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpXO7rUm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpXO7rUm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpXO7rUm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpXO7rUm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpXO7rUm .mbr-text {
  color: #ffffff;
}
.cid-uYNpXO7rUm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpXO7rUm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpXO7rUm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpXO7rUm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yRV3Vi9Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yRV3Vi9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRV3Vi9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRV3Vi9Z .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yRV3Vi9Z .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yRV3Vi9Z .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yRV3Vi9Z .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yRV3Vi9Z .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yRV3Vi9Z .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yRV3Vi9Z .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yRV3Vi9Z .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yRV3Vi9Z .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yRV3Vi9Z [class^="socicon-"]:before,
.cid-u2yRV3Vi9Z [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yRV3Vi9Z .mbr-section-title,
.cid-u2yRV3Vi9Z .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nsDO9RN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nsDO9RN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nsDO9RN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nsDO9RN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nsDO9RN .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nsDO9RN .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nsDO9RN .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nsDO9RN .mbr-text {
  color: #ffffff;
}
.cid-u39nsDO9RN .card-title {
  color: #ffffff;
}
.cid-u39nsDO9RN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nsDO9RN .mbr-section-title {
  color: #ffffff;
}
.cid-u39nsDO9RN .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLxmQdP1pY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLxmQdP1pY nav.navbar {
  position: fixed;
}
.cid-tLxmQdP1pY .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-tLxmQdP1pY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLxmQdP1pY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLxmQdP1pY .dropdown-item:hover,
.cid-tLxmQdP1pY .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLxmQdP1pY .dropdown-item:hover span {
  color: white;
}
.cid-tLxmQdP1pY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLxmQdP1pY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLxmQdP1pY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLxmQdP1pY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLxmQdP1pY .nav-link {
  position: relative;
}
.cid-tLxmQdP1pY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxmQdP1pY .container {
    flex-wrap: wrap;
  }
}
.cid-tLxmQdP1pY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxmQdP1pY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLxmQdP1pY .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLxmQdP1pY .dropdown-menu,
.cid-tLxmQdP1pY .navbar.opened {
  background: #000000 !important;
}
.cid-tLxmQdP1pY .nav-item:focus,
.cid-tLxmQdP1pY .nav-link:focus {
  outline: none;
}
.cid-tLxmQdP1pY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLxmQdP1pY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLxmQdP1pY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLxmQdP1pY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLxmQdP1pY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLxmQdP1pY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLxmQdP1pY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLxmQdP1pY .navbar.opened {
  transition: all 0.3s;
}
.cid-tLxmQdP1pY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLxmQdP1pY .navbar .navbar-logo img {
  width: auto;
}
.cid-tLxmQdP1pY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLxmQdP1pY .navbar.collapsed {
  justify-content: center;
}
.cid-tLxmQdP1pY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLxmQdP1pY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLxmQdP1pY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLxmQdP1pY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLxmQdP1pY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLxmQdP1pY .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-tLxmQdP1pY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLxmQdP1pY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLxmQdP1pY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLxmQdP1pY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLxmQdP1pY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLxmQdP1pY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLxmQdP1pY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLxmQdP1pY .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-tLxmQdP1pY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLxmQdP1pY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLxmQdP1pY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLxmQdP1pY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLxmQdP1pY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLxmQdP1pY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLxmQdP1pY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLxmQdP1pY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLxmQdP1pY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLxmQdP1pY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLxmQdP1pY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLxmQdP1pY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLxmQdP1pY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLxmQdP1pY .dropdown-item.active,
.cid-tLxmQdP1pY .dropdown-item:active {
  background-color: transparent;
}
.cid-tLxmQdP1pY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLxmQdP1pY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLxmQdP1pY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLxmQdP1pY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLxmQdP1pY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLxmQdP1pY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLxmQdP1pY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLxmQdP1pY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLxmQdP1pY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLxmQdP1pY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLxmQdP1pY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLxmQdP1pY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxmQdP1pY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxmQdP1pY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLxmQdP1pY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxmQdP1pY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLxmQdP1pY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLxmQdP1pY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxmQdP1pY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLxmQdP1pY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLxmQdP1pY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLxmQdP1pY .navbar {
    height: 70px;
  }
  .cid-tLxmQdP1pY .navbar.opened {
    height: auto;
  }
  .cid-tLxmQdP1pY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yRE3Skqs {
  background-image: url("../../../assets/images/scarlet-globe-radish.webp");
}
.cid-u2yRE3Skqs .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRE3Skqs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRE3Skqs .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRE3Skqs .mbr-text,
.cid-u2yRE3Skqs .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRE3Skqs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLxn0mdliJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLxn0mdliJ img,
.cid-tLxn0mdliJ .item-img {
  width: 100%;
}
.cid-tLxn0mdliJ .item:focus,
.cid-tLxn0mdliJ span:focus {
  outline: none;
}
.cid-tLxn0mdliJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLxn0mdliJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLxn0mdliJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLxn0mdliJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLxn0mdliJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLxn0mdliJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLxn0mdliJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLxn0mdliJ .mbr-section-title {
  color: #ffffff;
}
.cid-tLxn0mdliJ .mbr-text,
.cid-tLxn0mdliJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLxn0mdliJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLxn0mdliJ .item-subtitle {
  text-align: left;
}
.cid-tLxn0mdliJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGvr6uK47 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGvr6uK47 img,
.cid-uYGvr6uK47 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGvr6uK47 .item:focus,
.cid-uYGvr6uK47 span:focus {
  outline: none;
}
.cid-uYGvr6uK47 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGvr6uK47 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGvr6uK47 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGvr6uK47 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGvr6uK47 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGvr6uK47 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGvr6uK47 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGvr6uK47 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGvr6uK47 .mbr-text,
.cid-uYGvr6uK47 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGvr6uK47 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGvr6uK47 .item-subtitle {
  text-align: left;
}
.cid-uYGvr6uK47 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpwEZvJ6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpwEZvJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpwEZvJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpwEZvJ6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpwEZvJ6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpvz0Gow {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpvz0Gow .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpvz0Gow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpvz0Gow .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpvz0Gow .number {
  color: #ffffff;
}
.cid-uYNpvz0Gow .period {
  display: block;
}
.cid-uYNpvz0Gow .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpvz0Gow .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpvz0Gow .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpvz0Gow .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpvz0Gow .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpvz0Gow .mbr-text {
  color: #ffffff;
}
.cid-uYNpvz0Gow .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpvz0Gow .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpvz0Gow .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpvz0Gow .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yRCtuPea {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yRCtuPea .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRCtuPea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRCtuPea .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yRCtuPea .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yRCtuPea .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yRCtuPea .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yRCtuPea .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yRCtuPea .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yRCtuPea .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yRCtuPea .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yRCtuPea .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yRCtuPea [class^="socicon-"]:before,
.cid-u2yRCtuPea [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yRCtuPea .mbr-section-title,
.cid-u2yRCtuPea .mbr-social-likes {
  color: #ffffff;
}
.cid-u39ndpdQi9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39ndpdQi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39ndpdQi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39ndpdQi9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39ndpdQi9 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39ndpdQi9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39ndpdQi9 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39ndpdQi9 .mbr-text {
  color: #ffffff;
}
.cid-u39ndpdQi9 .card-title {
  color: #ffffff;
}
.cid-u39ndpdQi9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39ndpdQi9 .mbr-section-title {
  color: #ffffff;
}
.cid-u39ndpdQi9 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLxoNP2WK6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLxoNP2WK6 nav.navbar {
  position: fixed;
}
.cid-tLxoNP2WK6 .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-tLxoNP2WK6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLxoNP2WK6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLxoNP2WK6 .dropdown-item:hover,
.cid-tLxoNP2WK6 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLxoNP2WK6 .dropdown-item:hover span {
  color: white;
}
.cid-tLxoNP2WK6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLxoNP2WK6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLxoNP2WK6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLxoNP2WK6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLxoNP2WK6 .nav-link {
  position: relative;
}
.cid-tLxoNP2WK6 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxoNP2WK6 .container {
    flex-wrap: wrap;
  }
}
.cid-tLxoNP2WK6 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLxoNP2WK6 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLxoNP2WK6 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLxoNP2WK6 .dropdown-menu,
.cid-tLxoNP2WK6 .navbar.opened {
  background: #000000 !important;
}
.cid-tLxoNP2WK6 .nav-item:focus,
.cid-tLxoNP2WK6 .nav-link:focus {
  outline: none;
}
.cid-tLxoNP2WK6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLxoNP2WK6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLxoNP2WK6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLxoNP2WK6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLxoNP2WK6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLxoNP2WK6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLxoNP2WK6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLxoNP2WK6 .navbar.opened {
  transition: all 0.3s;
}
.cid-tLxoNP2WK6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLxoNP2WK6 .navbar .navbar-logo img {
  width: auto;
}
.cid-tLxoNP2WK6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLxoNP2WK6 .navbar.collapsed {
  justify-content: center;
}
.cid-tLxoNP2WK6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLxoNP2WK6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLxoNP2WK6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLxoNP2WK6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLxoNP2WK6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLxoNP2WK6 .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-tLxoNP2WK6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLxoNP2WK6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLxoNP2WK6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLxoNP2WK6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLxoNP2WK6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLxoNP2WK6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLxoNP2WK6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLxoNP2WK6 .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-tLxoNP2WK6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLxoNP2WK6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLxoNP2WK6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLxoNP2WK6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLxoNP2WK6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLxoNP2WK6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLxoNP2WK6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLxoNP2WK6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLxoNP2WK6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLxoNP2WK6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLxoNP2WK6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLxoNP2WK6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLxoNP2WK6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLxoNP2WK6 .dropdown-item.active,
.cid-tLxoNP2WK6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tLxoNP2WK6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLxoNP2WK6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLxoNP2WK6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLxoNP2WK6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLxoNP2WK6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLxoNP2WK6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLxoNP2WK6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLxoNP2WK6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLxoNP2WK6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLxoNP2WK6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLxoNP2WK6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLxoNP2WK6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxoNP2WK6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLxoNP2WK6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLxoNP2WK6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxoNP2WK6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLxoNP2WK6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLxoNP2WK6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLxoNP2WK6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLxoNP2WK6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLxoNP2WK6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLxoNP2WK6 .navbar {
    height: 70px;
  }
  .cid-tLxoNP2WK6 .navbar.opened {
    height: auto;
  }
  .cid-tLxoNP2WK6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yRkaKHaD {
  background-image: url("../../../assets/images/squash-banner.webp");
}
.cid-u2yRkaKHaD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRkaKHaD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRkaKHaD .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRkaKHaD .mbr-text,
.cid-u2yRkaKHaD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yRkaKHaD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLxoXsLWYs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLxoXsLWYs img,
.cid-tLxoXsLWYs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLxoXsLWYs .item:focus,
.cid-tLxoXsLWYs span:focus {
  outline: none;
}
.cid-tLxoXsLWYs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLxoXsLWYs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLxoXsLWYs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLxoXsLWYs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLxoXsLWYs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLxoXsLWYs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLxoXsLWYs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLxoXsLWYs .mbr-section-title {
  color: #ffffff;
}
.cid-tLxoXsLWYs .mbr-text,
.cid-tLxoXsLWYs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLxoXsLWYs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLxoXsLWYs .item-subtitle {
  text-align: left;
}
.cid-tLxoXsLWYs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLxzZ8v3wE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLxzZ8v3wE img,
.cid-tLxzZ8v3wE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLxzZ8v3wE .item:focus,
.cid-tLxzZ8v3wE span:focus {
  outline: none;
}
.cid-tLxzZ8v3wE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLxzZ8v3wE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLxzZ8v3wE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLxzZ8v3wE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLxzZ8v3wE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLxzZ8v3wE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLxzZ8v3wE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLxzZ8v3wE .mbr-section-title {
  color: #232323;
}
.cid-tLxzZ8v3wE .mbr-text,
.cid-tLxzZ8v3wE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLxzZ8v3wE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLxzZ8v3wE .item-subtitle {
  text-align: left;
}
.cid-uYNnQwsnAE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnQwsnAE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnQwsnAE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnQwsnAE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnQwsnAE .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnPoZjKO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnPoZjKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnPoZjKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnPoZjKO .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnPoZjKO .number {
  color: #ffffff;
}
.cid-uYNnPoZjKO .period {
  display: block;
}
.cid-uYNnPoZjKO .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnPoZjKO .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnPoZjKO .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnPoZjKO .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnPoZjKO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnPoZjKO .mbr-text {
  color: #ffffff;
}
.cid-uYNnPoZjKO .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnPoZjKO .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnPoZjKO .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnPoZjKO .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yRfcilrK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yRfcilrK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yRfcilrK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yRfcilrK .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yRfcilrK .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yRfcilrK .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yRfcilrK .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yRfcilrK .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yRfcilrK .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yRfcilrK .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yRfcilrK .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yRfcilrK .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yRfcilrK [class^="socicon-"]:before,
.cid-u2yRfcilrK [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yRfcilrK .mbr-section-title,
.cid-u2yRfcilrK .mbr-social-likes {
  color: #ffffff;
}
.cid-u39naIhgnU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39naIhgnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39naIhgnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39naIhgnU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39naIhgnU .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39naIhgnU .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39naIhgnU .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39naIhgnU .mbr-text {
  color: #ffffff;
}
.cid-u39naIhgnU .card-title {
  color: #ffffff;
}
.cid-u39naIhgnU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39naIhgnU .mbr-section-title {
  color: #ffffff;
}
.cid-u39naIhgnU .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLA5ySLMHS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLA5ySLMHS nav.navbar {
  position: fixed;
}
.cid-tLA5ySLMHS .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-tLA5ySLMHS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLA5ySLMHS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLA5ySLMHS .dropdown-item:hover,
.cid-tLA5ySLMHS .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLA5ySLMHS .dropdown-item:hover span {
  color: white;
}
.cid-tLA5ySLMHS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLA5ySLMHS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLA5ySLMHS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLA5ySLMHS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLA5ySLMHS .nav-link {
  position: relative;
}
.cid-tLA5ySLMHS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLA5ySLMHS .container {
    flex-wrap: wrap;
  }
}
.cid-tLA5ySLMHS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLA5ySLMHS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLA5ySLMHS .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLA5ySLMHS .dropdown-menu,
.cid-tLA5ySLMHS .navbar.opened {
  background: #000000 !important;
}
.cid-tLA5ySLMHS .nav-item:focus,
.cid-tLA5ySLMHS .nav-link:focus {
  outline: none;
}
.cid-tLA5ySLMHS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLA5ySLMHS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLA5ySLMHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLA5ySLMHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLA5ySLMHS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLA5ySLMHS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLA5ySLMHS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLA5ySLMHS .navbar.opened {
  transition: all 0.3s;
}
.cid-tLA5ySLMHS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLA5ySLMHS .navbar .navbar-logo img {
  width: auto;
}
.cid-tLA5ySLMHS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLA5ySLMHS .navbar.collapsed {
  justify-content: center;
}
.cid-tLA5ySLMHS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLA5ySLMHS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLA5ySLMHS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLA5ySLMHS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLA5ySLMHS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLA5ySLMHS .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-tLA5ySLMHS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLA5ySLMHS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLA5ySLMHS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLA5ySLMHS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLA5ySLMHS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLA5ySLMHS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLA5ySLMHS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLA5ySLMHS .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-tLA5ySLMHS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLA5ySLMHS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLA5ySLMHS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLA5ySLMHS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLA5ySLMHS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLA5ySLMHS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLA5ySLMHS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLA5ySLMHS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLA5ySLMHS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLA5ySLMHS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLA5ySLMHS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLA5ySLMHS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLA5ySLMHS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLA5ySLMHS .dropdown-item.active,
.cid-tLA5ySLMHS .dropdown-item:active {
  background-color: transparent;
}
.cid-tLA5ySLMHS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLA5ySLMHS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLA5ySLMHS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLA5ySLMHS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLA5ySLMHS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLA5ySLMHS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLA5ySLMHS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLA5ySLMHS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLA5ySLMHS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLA5ySLMHS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLA5ySLMHS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLA5ySLMHS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLA5ySLMHS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLA5ySLMHS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLA5ySLMHS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLA5ySLMHS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLA5ySLMHS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLA5ySLMHS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLA5ySLMHS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLA5ySLMHS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLA5ySLMHS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLA5ySLMHS .navbar {
    height: 70px;
  }
  .cid-tLA5ySLMHS .navbar.opened {
    height: auto;
  }
  .cid-tLA5ySLMHS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yQWEg7zt {
  background-image: url("../../../assets/images/rio-grande-tomatillo.webp");
}
.cid-u2yQWEg7zt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yQWEg7zt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yQWEg7zt .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yQWEg7zt .mbr-text,
.cid-u2yQWEg7zt .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yQWEg7zt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLA5ITbGI3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLA5ITbGI3 img,
.cid-tLA5ITbGI3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLA5ITbGI3 .item:focus,
.cid-tLA5ITbGI3 span:focus {
  outline: none;
}
.cid-tLA5ITbGI3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLA5ITbGI3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLA5ITbGI3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLA5ITbGI3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLA5ITbGI3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLA5ITbGI3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLA5ITbGI3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLA5ITbGI3 .mbr-section-title {
  color: #ffffff;
}
.cid-tLA5ITbGI3 .mbr-text,
.cid-tLA5ITbGI3 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLA5ITbGI3 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLA5ITbGI3 .item-subtitle {
  text-align: left;
}
.cid-tLA5ITbGI3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnKfQ6bj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnKfQ6bj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnKfQ6bj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnKfQ6bj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnKfQ6bj .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnJ88U7j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnJ88U7j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnJ88U7j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnJ88U7j .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnJ88U7j .number {
  color: #ffffff;
}
.cid-uYNnJ88U7j .period {
  display: block;
}
.cid-uYNnJ88U7j .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnJ88U7j .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnJ88U7j .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnJ88U7j .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnJ88U7j .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnJ88U7j .mbr-text {
  color: #ffffff;
}
.cid-uYNnJ88U7j .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnJ88U7j .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnJ88U7j .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnJ88U7j .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yQUWX14S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yQUWX14S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yQUWX14S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yQUWX14S .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yQUWX14S .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yQUWX14S .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yQUWX14S .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yQUWX14S .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yQUWX14S .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yQUWX14S .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yQUWX14S .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yQUWX14S .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yQUWX14S [class^="socicon-"]:before,
.cid-u2yQUWX14S [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yQUWX14S .mbr-section-title,
.cid-u2yQUWX14S .mbr-social-likes {
  color: #ffffff;
}
.cid-u39n8aiZNw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39n8aiZNw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39n8aiZNw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39n8aiZNw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39n8aiZNw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39n8aiZNw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39n8aiZNw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39n8aiZNw .mbr-text {
  color: #ffffff;
}
.cid-u39n8aiZNw .card-title {
  color: #ffffff;
}
.cid-u39n8aiZNw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39n8aiZNw .mbr-section-title {
  color: #ffffff;
}
.cid-u39n8aiZNw .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLA7UuSrSi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLA7UuSrSi nav.navbar {
  position: fixed;
}
.cid-tLA7UuSrSi .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-tLA7UuSrSi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLA7UuSrSi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLA7UuSrSi .dropdown-item:hover,
.cid-tLA7UuSrSi .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLA7UuSrSi .dropdown-item:hover span {
  color: white;
}
.cid-tLA7UuSrSi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLA7UuSrSi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLA7UuSrSi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLA7UuSrSi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLA7UuSrSi .nav-link {
  position: relative;
}
.cid-tLA7UuSrSi .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLA7UuSrSi .container {
    flex-wrap: wrap;
  }
}
.cid-tLA7UuSrSi .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLA7UuSrSi .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLA7UuSrSi .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLA7UuSrSi .dropdown-menu,
.cid-tLA7UuSrSi .navbar.opened {
  background: #000000 !important;
}
.cid-tLA7UuSrSi .nav-item:focus,
.cid-tLA7UuSrSi .nav-link:focus {
  outline: none;
}
.cid-tLA7UuSrSi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLA7UuSrSi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLA7UuSrSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLA7UuSrSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLA7UuSrSi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLA7UuSrSi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLA7UuSrSi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLA7UuSrSi .navbar.opened {
  transition: all 0.3s;
}
.cid-tLA7UuSrSi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLA7UuSrSi .navbar .navbar-logo img {
  width: auto;
}
.cid-tLA7UuSrSi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLA7UuSrSi .navbar.collapsed {
  justify-content: center;
}
.cid-tLA7UuSrSi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLA7UuSrSi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLA7UuSrSi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLA7UuSrSi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLA7UuSrSi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLA7UuSrSi .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-tLA7UuSrSi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLA7UuSrSi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLA7UuSrSi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLA7UuSrSi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLA7UuSrSi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLA7UuSrSi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLA7UuSrSi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLA7UuSrSi .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-tLA7UuSrSi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLA7UuSrSi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLA7UuSrSi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLA7UuSrSi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLA7UuSrSi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLA7UuSrSi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLA7UuSrSi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLA7UuSrSi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLA7UuSrSi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLA7UuSrSi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLA7UuSrSi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLA7UuSrSi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLA7UuSrSi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLA7UuSrSi .dropdown-item.active,
.cid-tLA7UuSrSi .dropdown-item:active {
  background-color: transparent;
}
.cid-tLA7UuSrSi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLA7UuSrSi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLA7UuSrSi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLA7UuSrSi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLA7UuSrSi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLA7UuSrSi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLA7UuSrSi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLA7UuSrSi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLA7UuSrSi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLA7UuSrSi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLA7UuSrSi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLA7UuSrSi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLA7UuSrSi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLA7UuSrSi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLA7UuSrSi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLA7UuSrSi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLA7UuSrSi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLA7UuSrSi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLA7UuSrSi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLA7UuSrSi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLA7UuSrSi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLA7UuSrSi .navbar {
    height: 70px;
  }
  .cid-tLA7UuSrSi .navbar.opened {
    height: auto;
  }
  .cid-tLA7UuSrSi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yOIE9EJi {
  background-image: url("../../../assets/images/orange-hat-micro-dwarf-tomato-plants.webp");
}
.cid-u2yOIE9EJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yOIE9EJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yOIE9EJi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yOIE9EJi .mbr-text,
.cid-u2yOIE9EJi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yOIE9EJi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLA82j9wwU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLA82j9wwU img,
.cid-tLA82j9wwU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLA82j9wwU .item:focus,
.cid-tLA82j9wwU span:focus {
  outline: none;
}
.cid-tLA82j9wwU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLA82j9wwU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLA82j9wwU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLA82j9wwU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLA82j9wwU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLA82j9wwU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLA82j9wwU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLA82j9wwU .mbr-section-title {
  color: #ffffff;
}
.cid-tLA82j9wwU .mbr-text,
.cid-tLA82j9wwU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLA82j9wwU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLA82j9wwU .item-subtitle {
  text-align: left;
}
.cid-tLA82j9wwU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLA82ZXMJW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLA82ZXMJW img,
.cid-tLA82ZXMJW .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLA82ZXMJW .item:focus,
.cid-tLA82ZXMJW span:focus {
  outline: none;
}
.cid-tLA82ZXMJW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLA82ZXMJW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLA82ZXMJW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLA82ZXMJW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLA82ZXMJW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLA82ZXMJW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLA82ZXMJW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLA82ZXMJW .mbr-section-title {
  color: #232323;
}
.cid-tLA82ZXMJW .mbr-text,
.cid-tLA82ZXMJW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLA82ZXMJW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLA82ZXMJW .item-subtitle {
  text-align: left;
}
.cid-v2P8nGUrZU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2P8nGUrZU img,
.cid-v2P8nGUrZU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2P8nGUrZU .item:focus,
.cid-v2P8nGUrZU span:focus {
  outline: none;
}
.cid-v2P8nGUrZU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2P8nGUrZU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2P8nGUrZU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2P8nGUrZU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2P8nGUrZU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2P8nGUrZU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2P8nGUrZU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2P8nGUrZU .mbr-section-title {
  color: #ffffff;
}
.cid-v2P8nGUrZU .mbr-text,
.cid-v2P8nGUrZU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2P8nGUrZU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2P8nGUrZU .item-subtitle {
  text-align: left;
}
.cid-v2P8nGUrZU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmKIY0mQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmKIY0mQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmKIY0mQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmKIY0mQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmKIY0mQ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmJDipUi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmJDipUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmJDipUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmJDipUi .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmJDipUi .number {
  color: #ffffff;
}
.cid-uYNmJDipUi .period {
  display: block;
}
.cid-uYNmJDipUi .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmJDipUi .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmJDipUi .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmJDipUi .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmJDipUi .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmJDipUi .mbr-text {
  color: #ffffff;
}
.cid-uYNmJDipUi .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmJDipUi .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmJDipUi .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmJDipUi .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yOGGPAys {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yOGGPAys .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yOGGPAys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yOGGPAys .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yOGGPAys .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yOGGPAys .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yOGGPAys .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yOGGPAys .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yOGGPAys .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yOGGPAys .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yOGGPAys .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yOGGPAys .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yOGGPAys [class^="socicon-"]:before,
.cid-u2yOGGPAys [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yOGGPAys .mbr-section-title,
.cid-u2yOGGPAys .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mPnn6EX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mPnn6EX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mPnn6EX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mPnn6EX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mPnn6EX .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mPnn6EX .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mPnn6EX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mPnn6EX .mbr-text {
  color: #ffffff;
}
.cid-u39mPnn6EX .card-title {
  color: #ffffff;
}
.cid-u39mPnn6EX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mPnn6EX .mbr-section-title {
  color: #ffffff;
}
.cid-u39mPnn6EX .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLD0ANc47s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLD0ANc47s nav.navbar {
  position: fixed;
}
.cid-tLD0ANc47s .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-tLD0ANc47s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLD0ANc47s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLD0ANc47s .dropdown-item:hover,
.cid-tLD0ANc47s .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLD0ANc47s .dropdown-item:hover span {
  color: white;
}
.cid-tLD0ANc47s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLD0ANc47s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLD0ANc47s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLD0ANc47s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLD0ANc47s .nav-link {
  position: relative;
}
.cid-tLD0ANc47s .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLD0ANc47s .container {
    flex-wrap: wrap;
  }
}
.cid-tLD0ANc47s .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLD0ANc47s .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLD0ANc47s .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLD0ANc47s .dropdown-menu,
.cid-tLD0ANc47s .navbar.opened {
  background: #000000 !important;
}
.cid-tLD0ANc47s .nav-item:focus,
.cid-tLD0ANc47s .nav-link:focus {
  outline: none;
}
.cid-tLD0ANc47s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLD0ANc47s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLD0ANc47s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLD0ANc47s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLD0ANc47s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLD0ANc47s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLD0ANc47s .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLD0ANc47s .navbar.opened {
  transition: all 0.3s;
}
.cid-tLD0ANc47s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLD0ANc47s .navbar .navbar-logo img {
  width: auto;
}
.cid-tLD0ANc47s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLD0ANc47s .navbar.collapsed {
  justify-content: center;
}
.cid-tLD0ANc47s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLD0ANc47s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLD0ANc47s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLD0ANc47s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLD0ANc47s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLD0ANc47s .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-tLD0ANc47s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLD0ANc47s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLD0ANc47s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLD0ANc47s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLD0ANc47s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLD0ANc47s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLD0ANc47s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLD0ANc47s .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-tLD0ANc47s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLD0ANc47s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLD0ANc47s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLD0ANc47s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLD0ANc47s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLD0ANc47s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLD0ANc47s .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLD0ANc47s .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLD0ANc47s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLD0ANc47s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLD0ANc47s .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLD0ANc47s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLD0ANc47s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLD0ANc47s .dropdown-item.active,
.cid-tLD0ANc47s .dropdown-item:active {
  background-color: transparent;
}
.cid-tLD0ANc47s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLD0ANc47s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLD0ANc47s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLD0ANc47s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLD0ANc47s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLD0ANc47s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLD0ANc47s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLD0ANc47s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLD0ANc47s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLD0ANc47s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLD0ANc47s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLD0ANc47s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLD0ANc47s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLD0ANc47s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLD0ANc47s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLD0ANc47s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLD0ANc47s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLD0ANc47s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLD0ANc47s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLD0ANc47s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLD0ANc47s .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLD0ANc47s .navbar {
    height: 70px;
  }
  .cid-tLD0ANc47s .navbar.opened {
    height: auto;
  }
  .cid-tLD0ANc47s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yNu6blYw {
  background-image: url("../../../assets/images/blackberries-banner.webp");
}
.cid-u2yNu6blYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yNu6blYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yNu6blYw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yNu6blYw .mbr-text,
.cid-u2yNu6blYw .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yNu6blYw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLD2Xw4KUa {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tLD2Xw4KUa img,
.cid-tLD2Xw4KUa .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLD2Xw4KUa .item:focus,
.cid-tLD2Xw4KUa span:focus {
  outline: none;
}
.cid-tLD2Xw4KUa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLD2Xw4KUa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLD2Xw4KUa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLD2Xw4KUa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLD2Xw4KUa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLD2Xw4KUa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLD2Xw4KUa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLD2Xw4KUa .mbr-section-title {
  color: #ffffff;
}
.cid-tLD2Xw4KUa .mbr-text,
.cid-tLD2Xw4KUa .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLD2Xw4KUa .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLD2Xw4KUa .item-subtitle {
  text-align: left;
}
.cid-tLD2Xw4KUa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLIOH9nTGy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLIOH9nTGy img,
.cid-tLIOH9nTGy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLIOH9nTGy .item:focus,
.cid-tLIOH9nTGy span:focus {
  outline: none;
}
.cid-tLIOH9nTGy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLIOH9nTGy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLIOH9nTGy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLIOH9nTGy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLIOH9nTGy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLIOH9nTGy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLIOH9nTGy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLIOH9nTGy .mbr-section-title {
  color: #232323;
}
.cid-tLIOH9nTGy .mbr-text,
.cid-tLIOH9nTGy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLIOH9nTGy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLIOH9nTGy .item-subtitle {
  text-align: left;
}
.cid-uqmYbAZbDN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uqmYbAZbDN img,
.cid-uqmYbAZbDN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uqmYbAZbDN .item:focus,
.cid-uqmYbAZbDN span:focus {
  outline: none;
}
.cid-uqmYbAZbDN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uqmYbAZbDN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uqmYbAZbDN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uqmYbAZbDN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqmYbAZbDN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uqmYbAZbDN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uqmYbAZbDN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uqmYbAZbDN .mbr-section-title {
  color: #232323;
}
.cid-uqmYbAZbDN .mbr-text,
.cid-uqmYbAZbDN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uqmYbAZbDN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uqmYbAZbDN .item-subtitle {
  text-align: center;
}
.cid-uYNltXGHvg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNltXGHvg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNltXGHvg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNltXGHvg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNltXGHvg .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlsQG4dO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlsQG4dO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlsQG4dO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlsQG4dO .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlsQG4dO .number {
  color: #ffffff;
}
.cid-uYNlsQG4dO .period {
  display: block;
}
.cid-uYNlsQG4dO .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlsQG4dO .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlsQG4dO .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlsQG4dO .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlsQG4dO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlsQG4dO .mbr-text {
  color: #ffffff;
}
.cid-uYNlsQG4dO .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlsQG4dO .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlsQG4dO .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlsQG4dO .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yNsfXoEN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yNsfXoEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yNsfXoEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yNsfXoEN .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yNsfXoEN .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yNsfXoEN .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yNsfXoEN .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yNsfXoEN .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yNsfXoEN .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yNsfXoEN .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yNsfXoEN .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yNsfXoEN .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yNsfXoEN [class^="socicon-"]:before,
.cid-u2yNsfXoEN [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yNsfXoEN .mbr-section-title,
.cid-u2yNsfXoEN .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mJbjWM4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mJbjWM4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mJbjWM4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mJbjWM4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mJbjWM4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mJbjWM4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mJbjWM4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mJbjWM4 .mbr-text {
  color: #ffffff;
}
.cid-u39mJbjWM4 .card-title {
  color: #ffffff;
}
.cid-u39mJbjWM4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mJbjWM4 .mbr-section-title {
  color: #ffffff;
}
.cid-u39mJbjWM4 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMbV5CPcLH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMbV5CPcLH nav.navbar {
  position: fixed;
}
.cid-tMbV5CPcLH .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-tMbV5CPcLH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMbV5CPcLH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMbV5CPcLH .dropdown-item:hover,
.cid-tMbV5CPcLH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMbV5CPcLH .dropdown-item:hover span {
  color: white;
}
.cid-tMbV5CPcLH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMbV5CPcLH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMbV5CPcLH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMbV5CPcLH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMbV5CPcLH .nav-link {
  position: relative;
}
.cid-tMbV5CPcLH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbV5CPcLH .container {
    flex-wrap: wrap;
  }
}
.cid-tMbV5CPcLH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbV5CPcLH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMbV5CPcLH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMbV5CPcLH .dropdown-menu,
.cid-tMbV5CPcLH .navbar.opened {
  background: #000000 !important;
}
.cid-tMbV5CPcLH .nav-item:focus,
.cid-tMbV5CPcLH .nav-link:focus {
  outline: none;
}
.cid-tMbV5CPcLH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMbV5CPcLH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMbV5CPcLH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMbV5CPcLH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMbV5CPcLH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMbV5CPcLH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMbV5CPcLH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMbV5CPcLH .navbar.opened {
  transition: all 0.3s;
}
.cid-tMbV5CPcLH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMbV5CPcLH .navbar .navbar-logo img {
  width: auto;
}
.cid-tMbV5CPcLH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMbV5CPcLH .navbar.collapsed {
  justify-content: center;
}
.cid-tMbV5CPcLH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMbV5CPcLH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMbV5CPcLH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMbV5CPcLH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMbV5CPcLH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMbV5CPcLH .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-tMbV5CPcLH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMbV5CPcLH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMbV5CPcLH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMbV5CPcLH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMbV5CPcLH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMbV5CPcLH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMbV5CPcLH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMbV5CPcLH .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-tMbV5CPcLH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMbV5CPcLH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMbV5CPcLH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMbV5CPcLH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMbV5CPcLH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMbV5CPcLH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMbV5CPcLH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMbV5CPcLH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMbV5CPcLH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMbV5CPcLH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMbV5CPcLH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMbV5CPcLH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMbV5CPcLH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMbV5CPcLH .dropdown-item.active,
.cid-tMbV5CPcLH .dropdown-item:active {
  background-color: transparent;
}
.cid-tMbV5CPcLH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMbV5CPcLH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMbV5CPcLH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMbV5CPcLH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMbV5CPcLH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMbV5CPcLH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMbV5CPcLH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMbV5CPcLH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMbV5CPcLH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMbV5CPcLH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMbV5CPcLH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMbV5CPcLH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbV5CPcLH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbV5CPcLH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMbV5CPcLH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbV5CPcLH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMbV5CPcLH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMbV5CPcLH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbV5CPcLH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMbV5CPcLH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMbV5CPcLH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMbV5CPcLH .navbar {
    height: 70px;
  }
  .cid-tMbV5CPcLH .navbar.opened {
    height: auto;
  }
  .cid-tMbV5CPcLH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yMVFkbMK {
  background-image: url("../../../assets/images/motherboard.webp");
}
.cid-u2yMVFkbMK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yMVFkbMK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yMVFkbMK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yMVFkbMK .mbr-text,
.cid-u2yMVFkbMK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yMVFkbMK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMbV5DhDmx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMbV5DhDmx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5DhDmx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMbV5DhDmx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMbV5DhDmx .row {
  flex-direction: row-reverse;
}
.cid-tMbV5DhDmx img {
  width: 100%;
}
.cid-tMbV5DzpQ9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5DzpQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5DzpQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5DzpQ9 .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMbV5DzpQ9 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMbV5DzpQ9 .mbr-section-title {
  color: #ffffff;
}
.cid-tMbV5DzpQ9 .card-title,
.cid-tMbV5DzpQ9 .card-box {
  color: #ffffff;
}
.cid-tMbV5E46x0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5E46x0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5E46x0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5E46x0 .link {
  color: #4479d9;
}
.cid-tMbV5E46x0 .card-title,
.cid-tMbV5E46x0 .card-box {
  color: #ffffff;
}
.cid-tMbV5Exsil {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5Exsil .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5Exsil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5Exsil .link {
  color: #4479d9;
}
.cid-tMbV5Exsil .card-title,
.cid-tMbV5Exsil .card-box {
  color: #ffffff;
}
.cid-tMbV5F4OMC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5F4OMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5F4OMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5F4OMC .link {
  color: #4479d9;
}
.cid-tMbV5F4OMC .card-title,
.cid-tMbV5F4OMC .card-box {
  color: #ffffff;
}
.cid-tMbV5Fyvk0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5Fyvk0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5Fyvk0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5Fyvk0 .link {
  color: #4479d9;
}
.cid-tMbV5Fyvk0 .card-title,
.cid-tMbV5Fyvk0 .card-box {
  color: #ffffff;
}
.cid-tMbV5G2J5N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5G2J5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5G2J5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5G2J5N .link {
  color: #4479d9;
}
.cid-tMbV5G2J5N .card-title,
.cid-tMbV5G2J5N .card-box {
  color: #ffffff;
}
.cid-tMbV5GuIEf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5GuIEf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5GuIEf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5GuIEf .link {
  color: #4479d9;
}
.cid-tMbV5GuIEf .card-title,
.cid-tMbV5GuIEf .card-box {
  color: #ffffff;
}
.cid-tMbV5H4Opm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5H4Opm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5H4Opm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5H4Opm .link {
  color: #4479d9;
}
.cid-tMbV5H4Opm .card-title,
.cid-tMbV5H4Opm .card-box {
  color: #ffffff;
}
.cid-tMbV5HyO6i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5HyO6i .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5HyO6i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5HyO6i .link {
  color: #4479d9;
}
.cid-tMbV5HyO6i .card-title,
.cid-tMbV5HyO6i .card-box {
  color: #ffffff;
}
.cid-tMbV5I3MXr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5I3MXr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5I3MXr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5I3MXr .link {
  color: #4479d9;
}
.cid-tMbV5I3MXr .card-title,
.cid-tMbV5I3MXr .card-box {
  color: #ffffff;
}
.cid-tMbV5Izinl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5Izinl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5Izinl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5Izinl .link {
  color: #4479d9;
}
.cid-tMbV5Izinl .card-title,
.cid-tMbV5Izinl .card-box {
  color: #ffffff;
}
.cid-tMbV5J25h0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5J25h0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5J25h0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5J25h0 .link {
  color: #4479d9;
}
.cid-tMbV5J25h0 .card-title,
.cid-tMbV5J25h0 .card-box {
  color: #ffffff;
}
.cid-tMbV5JwkJ0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5JwkJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5JwkJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5JwkJ0 .link {
  color: #4479d9;
}
.cid-tMbV5JwkJ0 .card-title,
.cid-tMbV5JwkJ0 .card-box {
  color: #ffffff;
}
.cid-tMbV5K04ZJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbV5K04ZJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbV5K04ZJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbV5K04ZJ .link {
  color: #4479d9;
}
.cid-tMbV5K04ZJ .card-title,
.cid-tMbV5K04ZJ .card-box {
  color: #ffffff;
}
.cid-tMm2M7Aezj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm2M7Aezj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm2M7Aezj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm2M7Aezj .link {
  color: #4479d9;
}
.cid-tMm2M7Aezj .card-title,
.cid-tMm2M7Aezj .card-box {
  color: #ffffff;
}
.cid-tMm3axsv5o {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3axsv5o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3axsv5o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3axsv5o .link {
  color: #4479d9;
}
.cid-tMm3axsv5o .card-title,
.cid-tMm3axsv5o .card-box {
  color: #ffffff;
}
.cid-tMm3by4NMr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3by4NMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3by4NMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3by4NMr .link {
  color: #4479d9;
}
.cid-tMm3by4NMr .card-title,
.cid-tMm3by4NMr .card-box {
  color: #ffffff;
}
.cid-tMm3cgHIMS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3cgHIMS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3cgHIMS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3cgHIMS .link {
  color: #4479d9;
}
.cid-tMm3cgHIMS .card-title,
.cid-tMm3cgHIMS .card-box {
  color: #ffffff;
}
.cid-tMm3d2Zfi0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3d2Zfi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3d2Zfi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3d2Zfi0 .link {
  color: #4479d9;
}
.cid-tMm3d2Zfi0 .card-title,
.cid-tMm3d2Zfi0 .card-box {
  color: #ffffff;
}
.cid-tMm3dRz9uf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3dRz9uf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3dRz9uf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3dRz9uf .link {
  color: #4479d9;
}
.cid-tMm3dRz9uf .card-title,
.cid-tMm3dRz9uf .card-box {
  color: #ffffff;
}
.cid-tMm3eIK5Q9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3eIK5Q9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3eIK5Q9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3eIK5Q9 .link {
  color: #4479d9;
}
.cid-tMm3eIK5Q9 .card-title,
.cid-tMm3eIK5Q9 .card-box {
  color: #ffffff;
}
.cid-tMm3fDHysl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMm3fDHysl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMm3fDHysl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMm3fDHysl .link {
  color: #4479d9;
}
.cid-tMm3fDHysl .card-title,
.cid-tMm3fDHysl .card-box {
  color: #ffffff;
}
.cid-tMmmOWzddI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMmmOWzddI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMmmOWzddI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMmmOWzddI .link {
  color: #4479d9;
}
.cid-tMmmOWzddI .card-title,
.cid-tMmmOWzddI .card-box {
  color: #ffffff;
}
.cid-tMmmPTamfu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMmmPTamfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMmmPTamfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMmmPTamfu .link {
  color: #4479d9;
}
.cid-tMmmPTamfu .card-title,
.cid-tMmmPTamfu .card-box {
  color: #ffffff;
}
.cid-tMmmQE7iIH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMmmQE7iIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMmmQE7iIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMmmQE7iIH .link {
  color: #4479d9;
}
.cid-tMmmQE7iIH .card-title,
.cid-tMmmQE7iIH .card-box {
  color: #ffffff;
}
.cid-tMmmSDPeQk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMmmSDPeQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMmmSDPeQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMmmSDPeQk .link {
  color: #4479d9;
}
.cid-tMmmSDPeQk .card-title,
.cid-tMmmSDPeQk .card-box {
  color: #ffffff;
}
.cid-tMnd7kxkpd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMnd7kxkpd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnd7kxkpd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMnd7kxkpd .link {
  color: #4479d9;
}
.cid-tMnd7kxkpd .card-title,
.cid-tMnd7kxkpd .card-box {
  color: #ffffff;
}
.cid-uYNlntfKxa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNlntfKxa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlntfKxa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlntfKxa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlntfKxa .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlmePY1E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlmePY1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlmePY1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlmePY1E .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlmePY1E .number {
  color: #ffffff;
}
.cid-uYNlmePY1E .period {
  display: block;
}
.cid-uYNlmePY1E .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlmePY1E .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlmePY1E .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlmePY1E .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlmePY1E .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlmePY1E .mbr-text {
  color: #ffffff;
}
.cid-uYNlmePY1E .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlmePY1E .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlmePY1E .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlmePY1E .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yMSPofGr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yMSPofGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yMSPofGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yMSPofGr .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yMSPofGr .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yMSPofGr .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yMSPofGr .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yMSPofGr .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yMSPofGr .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yMSPofGr .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yMSPofGr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yMSPofGr .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yMSPofGr [class^="socicon-"]:before,
.cid-u2yMSPofGr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yMSPofGr .mbr-section-title,
.cid-u2yMSPofGr .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mG9GOie {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mG9GOie .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mG9GOie .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mG9GOie .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mG9GOie .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mG9GOie .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mG9GOie .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mG9GOie .mbr-text {
  color: #ffffff;
}
.cid-u39mG9GOie .card-title {
  color: #ffffff;
}
.cid-u39mG9GOie .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mG9GOie .mbr-section-title {
  color: #ffffff;
}
.cid-u39mG9GOie .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMbVHFxpHQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMbVHFxpHQ nav.navbar {
  position: fixed;
}
.cid-tMbVHFxpHQ .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-tMbVHFxpHQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMbVHFxpHQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMbVHFxpHQ .dropdown-item:hover,
.cid-tMbVHFxpHQ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMbVHFxpHQ .dropdown-item:hover span {
  color: white;
}
.cid-tMbVHFxpHQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMbVHFxpHQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMbVHFxpHQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMbVHFxpHQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMbVHFxpHQ .nav-link {
  position: relative;
}
.cid-tMbVHFxpHQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbVHFxpHQ .container {
    flex-wrap: wrap;
  }
}
.cid-tMbVHFxpHQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbVHFxpHQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMbVHFxpHQ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMbVHFxpHQ .dropdown-menu,
.cid-tMbVHFxpHQ .navbar.opened {
  background: #000000 !important;
}
.cid-tMbVHFxpHQ .nav-item:focus,
.cid-tMbVHFxpHQ .nav-link:focus {
  outline: none;
}
.cid-tMbVHFxpHQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMbVHFxpHQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMbVHFxpHQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMbVHFxpHQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMbVHFxpHQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMbVHFxpHQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMbVHFxpHQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMbVHFxpHQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tMbVHFxpHQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMbVHFxpHQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tMbVHFxpHQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMbVHFxpHQ .navbar.collapsed {
  justify-content: center;
}
.cid-tMbVHFxpHQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMbVHFxpHQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMbVHFxpHQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMbVHFxpHQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMbVHFxpHQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMbVHFxpHQ .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-tMbVHFxpHQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMbVHFxpHQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMbVHFxpHQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMbVHFxpHQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMbVHFxpHQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMbVHFxpHQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMbVHFxpHQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMbVHFxpHQ .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-tMbVHFxpHQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMbVHFxpHQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMbVHFxpHQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMbVHFxpHQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMbVHFxpHQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMbVHFxpHQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMbVHFxpHQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMbVHFxpHQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMbVHFxpHQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMbVHFxpHQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMbVHFxpHQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMbVHFxpHQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMbVHFxpHQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMbVHFxpHQ .dropdown-item.active,
.cid-tMbVHFxpHQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tMbVHFxpHQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMbVHFxpHQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMbVHFxpHQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMbVHFxpHQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMbVHFxpHQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMbVHFxpHQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMbVHFxpHQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMbVHFxpHQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMbVHFxpHQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMbVHFxpHQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMbVHFxpHQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMbVHFxpHQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbVHFxpHQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbVHFxpHQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMbVHFxpHQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbVHFxpHQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMbVHFxpHQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMbVHFxpHQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbVHFxpHQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMbVHFxpHQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMbVHFxpHQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMbVHFxpHQ .navbar {
    height: 70px;
  }
  .cid-tMbVHFxpHQ .navbar.opened {
    height: auto;
  }
  .cid-tMbVHFxpHQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yLNstLVi {
  background-image: url("../../../assets/images/resistors.webp");
}
.cid-u2yLNstLVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yLNstLVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yLNstLVi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yLNstLVi .mbr-text,
.cid-u2yLNstLVi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yLNstLVi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMbVHGaj8F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMbVHGaj8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHGaj8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMbVHGaj8F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMbVHGaj8F .row {
  flex-direction: row-reverse;
}
.cid-tMbVHGaj8F img {
  width: 100%;
}
.cid-tMbVHGCnBS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVHGCnBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHGCnBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVHGCnBS .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMbVHGCnBS .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMbVHGCnBS .mbr-section-title {
  color: #ffffff;
}
.cid-tMbVHGCnBS .card-title,
.cid-tMbVHGCnBS .card-box {
  color: #ffffff;
}
.cid-tMbVHH7VN6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVHH7VN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHH7VN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVHH7VN6 .link {
  color: #4479d9;
}
.cid-tMbVHH7VN6 .card-title,
.cid-tMbVHH7VN6 .card-box {
  color: #ffffff;
}
.cid-tMbVHHAtyq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVHHAtyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHHAtyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVHHAtyq .link {
  color: #4479d9;
}
.cid-tMbVHHAtyq .card-title,
.cid-tMbVHHAtyq .card-box {
  color: #ffffff;
}
.cid-tMbVHI2On6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVHI2On6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHI2On6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVHI2On6 .link {
  color: #4479d9;
}
.cid-tMbVHI2On6 .card-title,
.cid-tMbVHI2On6 .card-box {
  color: #ffffff;
}
.cid-tMbVHIAw7q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVHIAw7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVHIAw7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVHIAw7q .link {
  color: #4479d9;
}
.cid-tMbVHIAw7q .card-title,
.cid-tMbVHIAw7q .card-box {
  color: #ffffff;
}
.cid-uYNleNFLae {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNleNFLae .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNleNFLae .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNleNFLae .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNleNFLae .mbr-section-title {
  color: #ffffff;
}
.cid-uYNldyTsSw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNldyTsSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNldyTsSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNldyTsSw .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNldyTsSw .number {
  color: #ffffff;
}
.cid-uYNldyTsSw .period {
  display: block;
}
.cid-uYNldyTsSw .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNldyTsSw .period {
    font-size: 0.8rem;
  }
}
.cid-uYNldyTsSw .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNldyTsSw .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNldyTsSw .mbr-section-title {
  color: #ffffff;
}
.cid-uYNldyTsSw .mbr-text {
  color: #ffffff;
}
.cid-uYNldyTsSw .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNldyTsSw .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNldyTsSw .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNldyTsSw .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yLLxQTns {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yLLxQTns .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yLLxQTns .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yLLxQTns .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yLLxQTns .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yLLxQTns .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yLLxQTns .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yLLxQTns .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yLLxQTns .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yLLxQTns .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yLLxQTns .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yLLxQTns .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yLLxQTns [class^="socicon-"]:before,
.cid-u2yLLxQTns [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yLLxQTns .mbr-section-title,
.cid-u2yLLxQTns .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mC42Qx2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mC42Qx2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mC42Qx2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mC42Qx2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mC42Qx2 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mC42Qx2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mC42Qx2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mC42Qx2 .mbr-text {
  color: #ffffff;
}
.cid-u39mC42Qx2 .card-title {
  color: #ffffff;
}
.cid-u39mC42Qx2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mC42Qx2 .mbr-section-title {
  color: #ffffff;
}
.cid-u39mC42Qx2 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMbVZ3i7WH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMbVZ3i7WH nav.navbar {
  position: fixed;
}
.cid-tMbVZ3i7WH .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-tMbVZ3i7WH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMbVZ3i7WH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMbVZ3i7WH .dropdown-item:hover,
.cid-tMbVZ3i7WH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMbVZ3i7WH .dropdown-item:hover span {
  color: white;
}
.cid-tMbVZ3i7WH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMbVZ3i7WH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMbVZ3i7WH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMbVZ3i7WH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMbVZ3i7WH .nav-link {
  position: relative;
}
.cid-tMbVZ3i7WH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbVZ3i7WH .container {
    flex-wrap: wrap;
  }
}
.cid-tMbVZ3i7WH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMbVZ3i7WH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMbVZ3i7WH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMbVZ3i7WH .dropdown-menu,
.cid-tMbVZ3i7WH .navbar.opened {
  background: #000000 !important;
}
.cid-tMbVZ3i7WH .nav-item:focus,
.cid-tMbVZ3i7WH .nav-link:focus {
  outline: none;
}
.cid-tMbVZ3i7WH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMbVZ3i7WH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMbVZ3i7WH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMbVZ3i7WH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMbVZ3i7WH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMbVZ3i7WH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMbVZ3i7WH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMbVZ3i7WH .navbar.opened {
  transition: all 0.3s;
}
.cid-tMbVZ3i7WH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMbVZ3i7WH .navbar .navbar-logo img {
  width: auto;
}
.cid-tMbVZ3i7WH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMbVZ3i7WH .navbar.collapsed {
  justify-content: center;
}
.cid-tMbVZ3i7WH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMbVZ3i7WH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMbVZ3i7WH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMbVZ3i7WH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMbVZ3i7WH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMbVZ3i7WH .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-tMbVZ3i7WH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMbVZ3i7WH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMbVZ3i7WH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMbVZ3i7WH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMbVZ3i7WH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMbVZ3i7WH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMbVZ3i7WH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMbVZ3i7WH .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-tMbVZ3i7WH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMbVZ3i7WH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMbVZ3i7WH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMbVZ3i7WH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMbVZ3i7WH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMbVZ3i7WH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMbVZ3i7WH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMbVZ3i7WH .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMbVZ3i7WH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMbVZ3i7WH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMbVZ3i7WH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMbVZ3i7WH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMbVZ3i7WH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMbVZ3i7WH .dropdown-item.active,
.cid-tMbVZ3i7WH .dropdown-item:active {
  background-color: transparent;
}
.cid-tMbVZ3i7WH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMbVZ3i7WH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMbVZ3i7WH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMbVZ3i7WH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMbVZ3i7WH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMbVZ3i7WH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMbVZ3i7WH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMbVZ3i7WH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMbVZ3i7WH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMbVZ3i7WH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMbVZ3i7WH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMbVZ3i7WH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbVZ3i7WH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbVZ3i7WH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMbVZ3i7WH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbVZ3i7WH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMbVZ3i7WH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMbVZ3i7WH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbVZ3i7WH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMbVZ3i7WH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMbVZ3i7WH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMbVZ3i7WH .navbar {
    height: 70px;
  }
  .cid-tMbVZ3i7WH .navbar.opened {
    height: auto;
  }
  .cid-tMbVZ3i7WH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yLdl1iUj {
  background-image: url("../../../assets/images/triode-transistors.webp");
}
.cid-u2yLdl1iUj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yLdl1iUj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yLdl1iUj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yLdl1iUj .mbr-text,
.cid-u2yLdl1iUj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yLdl1iUj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMbVZ3UoRn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMbVZ3UoRn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ3UoRn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMbVZ3UoRn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMbVZ3UoRn .row {
  flex-direction: row-reverse;
}
.cid-tMbVZ3UoRn img {
  width: 100%;
}
.cid-tMbVZ4m8FD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVZ4m8FD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ4m8FD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVZ4m8FD .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMbVZ4m8FD .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMbVZ4m8FD .mbr-section-title {
  color: #ffffff;
}
.cid-tMbVZ4m8FD .card-title,
.cid-tMbVZ4m8FD .card-box {
  color: #ffffff;
}
.cid-tMbVZ4SH6T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVZ4SH6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ4SH6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVZ4SH6T .link {
  color: #4479d9;
}
.cid-tMbVZ4SH6T .card-title,
.cid-tMbVZ4SH6T .card-box {
  color: #ffffff;
}
.cid-tMbVZ5lQB9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVZ5lQB9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ5lQB9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVZ5lQB9 .link {
  color: #4479d9;
}
.cid-tMbVZ5lQB9 .card-title,
.cid-tMbVZ5lQB9 .card-box {
  color: #ffffff;
}
.cid-tMbVZ5R1AL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVZ5R1AL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ5R1AL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVZ5R1AL .link {
  color: #4479d9;
}
.cid-tMbVZ5R1AL .card-title,
.cid-tMbVZ5R1AL .card-box {
  color: #ffffff;
}
.cid-tMbVZ6lMS9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMbVZ6lMS9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMbVZ6lMS9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMbVZ6lMS9 .link {
  color: #4479d9;
}
.cid-tMbVZ6lMS9 .card-title,
.cid-tMbVZ6lMS9 .card-box {
  color: #ffffff;
}
.cid-uYNl8Hocky {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNl8Hocky .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNl8Hocky .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNl8Hocky .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNl8Hocky .mbr-section-title {
  color: #ffffff;
}
.cid-uYNl7B08QP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNl7B08QP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNl7B08QP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNl7B08QP .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNl7B08QP .number {
  color: #ffffff;
}
.cid-uYNl7B08QP .period {
  display: block;
}
.cid-uYNl7B08QP .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNl7B08QP .period {
    font-size: 0.8rem;
  }
}
.cid-uYNl7B08QP .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNl7B08QP .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNl7B08QP .mbr-section-title {
  color: #ffffff;
}
.cid-uYNl7B08QP .mbr-text {
  color: #ffffff;
}
.cid-uYNl7B08QP .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNl7B08QP .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNl7B08QP .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNl7B08QP .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yLbNXg7S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yLbNXg7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yLbNXg7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yLbNXg7S .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yLbNXg7S .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yLbNXg7S .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yLbNXg7S .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yLbNXg7S .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yLbNXg7S .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yLbNXg7S .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yLbNXg7S .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yLbNXg7S .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yLbNXg7S [class^="socicon-"]:before,
.cid-u2yLbNXg7S [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yLbNXg7S .mbr-section-title,
.cid-u2yLbNXg7S .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mx34HAH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mx34HAH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mx34HAH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mx34HAH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mx34HAH .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mx34HAH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mx34HAH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mx34HAH .mbr-text {
  color: #ffffff;
}
.cid-u39mx34HAH .card-title {
  color: #ffffff;
}
.cid-u39mx34HAH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mx34HAH .mbr-section-title {
  color: #ffffff;
}
.cid-u39mx34HAH .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMnf9XYA3P {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMnf9XYA3P nav.navbar {
  position: fixed;
}
.cid-tMnf9XYA3P .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-tMnf9XYA3P .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMnf9XYA3P .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMnf9XYA3P .dropdown-item:hover,
.cid-tMnf9XYA3P .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMnf9XYA3P .dropdown-item:hover span {
  color: white;
}
.cid-tMnf9XYA3P .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMnf9XYA3P .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMnf9XYA3P .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMnf9XYA3P .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMnf9XYA3P .nav-link {
  position: relative;
}
.cid-tMnf9XYA3P .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMnf9XYA3P .container {
    flex-wrap: wrap;
  }
}
.cid-tMnf9XYA3P .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMnf9XYA3P .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMnf9XYA3P .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMnf9XYA3P .dropdown-menu,
.cid-tMnf9XYA3P .navbar.opened {
  background: #000000 !important;
}
.cid-tMnf9XYA3P .nav-item:focus,
.cid-tMnf9XYA3P .nav-link:focus {
  outline: none;
}
.cid-tMnf9XYA3P .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMnf9XYA3P .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMnf9XYA3P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMnf9XYA3P .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMnf9XYA3P .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMnf9XYA3P .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMnf9XYA3P .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMnf9XYA3P .navbar.opened {
  transition: all 0.3s;
}
.cid-tMnf9XYA3P .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMnf9XYA3P .navbar .navbar-logo img {
  width: auto;
}
.cid-tMnf9XYA3P .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMnf9XYA3P .navbar.collapsed {
  justify-content: center;
}
.cid-tMnf9XYA3P .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMnf9XYA3P .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMnf9XYA3P .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMnf9XYA3P .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMnf9XYA3P .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMnf9XYA3P .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-tMnf9XYA3P .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMnf9XYA3P .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMnf9XYA3P .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMnf9XYA3P .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMnf9XYA3P .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMnf9XYA3P .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMnf9XYA3P .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMnf9XYA3P .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-tMnf9XYA3P .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMnf9XYA3P .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMnf9XYA3P .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMnf9XYA3P .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMnf9XYA3P .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMnf9XYA3P .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMnf9XYA3P .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMnf9XYA3P .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMnf9XYA3P .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMnf9XYA3P .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMnf9XYA3P .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMnf9XYA3P .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMnf9XYA3P .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMnf9XYA3P .dropdown-item.active,
.cid-tMnf9XYA3P .dropdown-item:active {
  background-color: transparent;
}
.cid-tMnf9XYA3P .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMnf9XYA3P .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMnf9XYA3P .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMnf9XYA3P .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMnf9XYA3P .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMnf9XYA3P .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMnf9XYA3P ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMnf9XYA3P .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMnf9XYA3P button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMnf9XYA3P button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMnf9XYA3P button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMnf9XYA3P button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnf9XYA3P button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnf9XYA3P button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMnf9XYA3P nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnf9XYA3P nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMnf9XYA3P nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMnf9XYA3P nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnf9XYA3P .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMnf9XYA3P a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMnf9XYA3P .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMnf9XYA3P .navbar {
    height: 70px;
  }
  .cid-tMnf9XYA3P .navbar.opened {
    height: auto;
  }
  .cid-tMnf9XYA3P .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yKMxTjDG {
  background-image: url("../../../assets/images/motherboard.webp");
}
.cid-u2yKMxTjDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yKMxTjDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yKMxTjDG .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yKMxTjDG .mbr-text,
.cid-u2yKMxTjDG .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yKMxTjDG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMnf9YDpN4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMnf9YDpN4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnf9YDpN4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMnf9YDpN4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMnf9YDpN4 .row {
  flex-direction: row-reverse;
}
.cid-tMnf9YDpN4 img {
  width: 100%;
}
.cid-tMnf9Z8l1w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMnf9Z8l1w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnf9Z8l1w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMnf9Z8l1w .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMnf9Z8l1w .mbr-section-subtitle {
  color: #4479d9;
  text-align: center;
}
.cid-tMnf9Z8l1w .mbr-section-title {
  color: #ffffff;
}
.cid-tMnf9Z8l1w .card-title,
.cid-tMnf9Z8l1w .card-box {
  color: #ffffff;
}
.cid-tMnf9ZJSDg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMnf9ZJSDg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnf9ZJSDg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMnf9ZJSDg .link {
  color: #4479d9;
}
.cid-tMnf9ZJSDg .card-title,
.cid-tMnf9ZJSDg .card-box {
  color: #ffffff;
}
.cid-uYNl3ajYGy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNl3ajYGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNl3ajYGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNl3ajYGy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNl3ajYGy .mbr-section-title {
  color: #ffffff;
}
.cid-uYNl285hKE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNl285hKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNl285hKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNl285hKE .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNl285hKE .number {
  color: #ffffff;
}
.cid-uYNl285hKE .period {
  display: block;
}
.cid-uYNl285hKE .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNl285hKE .period {
    font-size: 0.8rem;
  }
}
.cid-uYNl285hKE .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNl285hKE .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNl285hKE .mbr-section-title {
  color: #ffffff;
}
.cid-uYNl285hKE .mbr-text {
  color: #ffffff;
}
.cid-uYNl285hKE .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNl285hKE .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNl285hKE .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNl285hKE .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yKKCNI2M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yKKCNI2M .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yKKCNI2M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yKKCNI2M .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yKKCNI2M .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yKKCNI2M .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yKKCNI2M .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yKKCNI2M .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yKKCNI2M .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yKKCNI2M .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yKKCNI2M .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yKKCNI2M .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yKKCNI2M [class^="socicon-"]:before,
.cid-u2yKKCNI2M [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yKKCNI2M .mbr-section-title,
.cid-u2yKKCNI2M .mbr-social-likes {
  color: #ffffff;
}
.cid-u39muiHdcF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39muiHdcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39muiHdcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39muiHdcF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39muiHdcF .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39muiHdcF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39muiHdcF .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39muiHdcF .mbr-text {
  color: #ffffff;
}
.cid-u39muiHdcF .card-title {
  color: #ffffff;
}
.cid-u39muiHdcF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39muiHdcF .mbr-section-title {
  color: #ffffff;
}
.cid-u39muiHdcF .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMnkxdpFi5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMnkxdpFi5 nav.navbar {
  position: fixed;
}
.cid-tMnkxdpFi5 .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-tMnkxdpFi5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMnkxdpFi5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMnkxdpFi5 .dropdown-item:hover,
.cid-tMnkxdpFi5 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMnkxdpFi5 .dropdown-item:hover span {
  color: white;
}
.cid-tMnkxdpFi5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMnkxdpFi5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMnkxdpFi5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMnkxdpFi5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMnkxdpFi5 .nav-link {
  position: relative;
}
.cid-tMnkxdpFi5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMnkxdpFi5 .container {
    flex-wrap: wrap;
  }
}
.cid-tMnkxdpFi5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMnkxdpFi5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMnkxdpFi5 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMnkxdpFi5 .dropdown-menu,
.cid-tMnkxdpFi5 .navbar.opened {
  background: #000000 !important;
}
.cid-tMnkxdpFi5 .nav-item:focus,
.cid-tMnkxdpFi5 .nav-link:focus {
  outline: none;
}
.cid-tMnkxdpFi5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMnkxdpFi5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMnkxdpFi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMnkxdpFi5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMnkxdpFi5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMnkxdpFi5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMnkxdpFi5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMnkxdpFi5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tMnkxdpFi5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMnkxdpFi5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tMnkxdpFi5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMnkxdpFi5 .navbar.collapsed {
  justify-content: center;
}
.cid-tMnkxdpFi5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMnkxdpFi5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMnkxdpFi5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMnkxdpFi5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMnkxdpFi5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMnkxdpFi5 .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-tMnkxdpFi5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMnkxdpFi5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMnkxdpFi5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMnkxdpFi5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMnkxdpFi5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMnkxdpFi5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMnkxdpFi5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMnkxdpFi5 .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-tMnkxdpFi5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMnkxdpFi5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMnkxdpFi5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMnkxdpFi5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMnkxdpFi5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMnkxdpFi5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMnkxdpFi5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMnkxdpFi5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMnkxdpFi5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMnkxdpFi5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMnkxdpFi5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMnkxdpFi5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMnkxdpFi5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMnkxdpFi5 .dropdown-item.active,
.cid-tMnkxdpFi5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tMnkxdpFi5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMnkxdpFi5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMnkxdpFi5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMnkxdpFi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMnkxdpFi5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMnkxdpFi5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMnkxdpFi5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMnkxdpFi5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMnkxdpFi5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMnkxdpFi5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMnkxdpFi5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMnkxdpFi5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnkxdpFi5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMnkxdpFi5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMnkxdpFi5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnkxdpFi5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMnkxdpFi5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMnkxdpFi5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMnkxdpFi5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMnkxdpFi5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMnkxdpFi5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMnkxdpFi5 .navbar {
    height: 70px;
  }
  .cid-tMnkxdpFi5 .navbar.opened {
    height: auto;
  }
  .cid-tMnkxdpFi5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yKd6YzKY {
  background-image: url("../../../assets/images/blocking-diodes.webp");
}
.cid-u2yKd6YzKY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yKd6YzKY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yKd6YzKY .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yKd6YzKY .mbr-text,
.cid-u2yKd6YzKY .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yKd6YzKY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMnkxe39tg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMnkxe39tg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnkxe39tg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMnkxe39tg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMnkxe39tg .row {
  flex-direction: row-reverse;
}
.cid-tMnkxe39tg img {
  width: 100%;
}
.cid-tMnkxeEnEd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMnkxeEnEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMnkxeEnEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMnkxeEnEd .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMnkxeEnEd .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMnkxeEnEd .mbr-section-title {
  color: #ffffff;
}
.cid-tMnkxeEnEd .card-title,
.cid-tMnkxeEnEd .card-box {
  color: #ffffff;
}
.cid-uYNkXVOw8l {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkXVOw8l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkXVOw8l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkXVOw8l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkXVOw8l .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkWDBV6x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkWDBV6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkWDBV6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkWDBV6x .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkWDBV6x .number {
  color: #ffffff;
}
.cid-uYNkWDBV6x .period {
  display: block;
}
.cid-uYNkWDBV6x .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkWDBV6x .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkWDBV6x .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkWDBV6x .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkWDBV6x .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkWDBV6x .mbr-text {
  color: #ffffff;
}
.cid-uYNkWDBV6x .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkWDBV6x .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkWDBV6x .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkWDBV6x .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yKc3JyWu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yKc3JyWu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yKc3JyWu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yKc3JyWu .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yKc3JyWu .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yKc3JyWu .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yKc3JyWu .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yKc3JyWu .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yKc3JyWu .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yKc3JyWu .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yKc3JyWu .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yKc3JyWu .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yKc3JyWu [class^="socicon-"]:before,
.cid-u2yKc3JyWu [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yKc3JyWu .mbr-section-title,
.cid-u2yKc3JyWu .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mrUiAQr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mrUiAQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mrUiAQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mrUiAQr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mrUiAQr .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mrUiAQr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mrUiAQr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mrUiAQr .mbr-text {
  color: #ffffff;
}
.cid-u39mrUiAQr .card-title {
  color: #ffffff;
}
.cid-u39mrUiAQr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mrUiAQr .mbr-section-title {
  color: #ffffff;
}
.cid-u39mrUiAQr .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMs1HNBKGF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMs1HNBKGF nav.navbar {
  position: fixed;
}
.cid-tMs1HNBKGF .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-tMs1HNBKGF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMs1HNBKGF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMs1HNBKGF .dropdown-item:hover,
.cid-tMs1HNBKGF .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMs1HNBKGF .dropdown-item:hover span {
  color: white;
}
.cid-tMs1HNBKGF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMs1HNBKGF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMs1HNBKGF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMs1HNBKGF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMs1HNBKGF .nav-link {
  position: relative;
}
.cid-tMs1HNBKGF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs1HNBKGF .container {
    flex-wrap: wrap;
  }
}
.cid-tMs1HNBKGF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs1HNBKGF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMs1HNBKGF .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMs1HNBKGF .dropdown-menu,
.cid-tMs1HNBKGF .navbar.opened {
  background: #000000 !important;
}
.cid-tMs1HNBKGF .nav-item:focus,
.cid-tMs1HNBKGF .nav-link:focus {
  outline: none;
}
.cid-tMs1HNBKGF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMs1HNBKGF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMs1HNBKGF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMs1HNBKGF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMs1HNBKGF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMs1HNBKGF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMs1HNBKGF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMs1HNBKGF .navbar.opened {
  transition: all 0.3s;
}
.cid-tMs1HNBKGF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMs1HNBKGF .navbar .navbar-logo img {
  width: auto;
}
.cid-tMs1HNBKGF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMs1HNBKGF .navbar.collapsed {
  justify-content: center;
}
.cid-tMs1HNBKGF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMs1HNBKGF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMs1HNBKGF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMs1HNBKGF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMs1HNBKGF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMs1HNBKGF .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-tMs1HNBKGF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMs1HNBKGF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMs1HNBKGF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMs1HNBKGF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMs1HNBKGF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMs1HNBKGF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMs1HNBKGF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMs1HNBKGF .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-tMs1HNBKGF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMs1HNBKGF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMs1HNBKGF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMs1HNBKGF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMs1HNBKGF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMs1HNBKGF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMs1HNBKGF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMs1HNBKGF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMs1HNBKGF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMs1HNBKGF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMs1HNBKGF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMs1HNBKGF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMs1HNBKGF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMs1HNBKGF .dropdown-item.active,
.cid-tMs1HNBKGF .dropdown-item:active {
  background-color: transparent;
}
.cid-tMs1HNBKGF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMs1HNBKGF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMs1HNBKGF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMs1HNBKGF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMs1HNBKGF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMs1HNBKGF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMs1HNBKGF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMs1HNBKGF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMs1HNBKGF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMs1HNBKGF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMs1HNBKGF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMs1HNBKGF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs1HNBKGF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs1HNBKGF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMs1HNBKGF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs1HNBKGF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMs1HNBKGF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMs1HNBKGF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs1HNBKGF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMs1HNBKGF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMs1HNBKGF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMs1HNBKGF .navbar {
    height: 70px;
  }
  .cid-tMs1HNBKGF .navbar.opened {
    height: auto;
  }
  .cid-tMs1HNBKGF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yJKblTvm {
  background-image: url("../../../assets/images/light-emitting-diodes.webp");
}
.cid-u2yJKblTvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yJKblTvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yJKblTvm .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yJKblTvm .mbr-text,
.cid-u2yJKblTvm .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yJKblTvm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMs1HOdXvX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMs1HOdXvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs1HOdXvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMs1HOdXvX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMs1HOdXvX .row {
  flex-direction: row-reverse;
}
.cid-tMs1HOdXvX img {
  width: 100%;
}
.cid-tMs1HOEp8I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMs1HOEp8I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs1HOEp8I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMs1HOEp8I .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMs1HOEp8I .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMs1HOEp8I .mbr-section-title {
  color: #ffffff;
}
.cid-tMs1HOEp8I .card-title,
.cid-tMs1HOEp8I .card-box {
  color: #ffffff;
}
.cid-tMs1HPaVGq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMs1HPaVGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs1HPaVGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMs1HPaVGq .link {
  color: #4479d9;
}
.cid-tMs1HPaVGq .card-title,
.cid-tMs1HPaVGq .card-box {
  color: #ffffff;
}
.cid-uYNkSFVZsl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkSFVZsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkSFVZsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkSFVZsl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkSFVZsl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkRvg9kz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkRvg9kz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkRvg9kz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkRvg9kz .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkRvg9kz .number {
  color: #ffffff;
}
.cid-uYNkRvg9kz .period {
  display: block;
}
.cid-uYNkRvg9kz .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkRvg9kz .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkRvg9kz .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkRvg9kz .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkRvg9kz .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkRvg9kz .mbr-text {
  color: #ffffff;
}
.cid-uYNkRvg9kz .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkRvg9kz .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkRvg9kz .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkRvg9kz .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yJIMV6VC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yJIMV6VC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yJIMV6VC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yJIMV6VC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yJIMV6VC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yJIMV6VC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yJIMV6VC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yJIMV6VC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yJIMV6VC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yJIMV6VC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yJIMV6VC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yJIMV6VC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yJIMV6VC [class^="socicon-"]:before,
.cid-u2yJIMV6VC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yJIMV6VC .mbr-section-title,
.cid-u2yJIMV6VC .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mpynVuO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mpynVuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mpynVuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mpynVuO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mpynVuO .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mpynVuO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mpynVuO .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mpynVuO .mbr-text {
  color: #ffffff;
}
.cid-u39mpynVuO .card-title {
  color: #ffffff;
}
.cid-u39mpynVuO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mpynVuO .mbr-section-title {
  color: #ffffff;
}
.cid-u39mpynVuO .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMs9xKHcAA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMs9xKHcAA nav.navbar {
  position: fixed;
}
.cid-tMs9xKHcAA .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-tMs9xKHcAA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMs9xKHcAA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMs9xKHcAA .dropdown-item:hover,
.cid-tMs9xKHcAA .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMs9xKHcAA .dropdown-item:hover span {
  color: white;
}
.cid-tMs9xKHcAA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMs9xKHcAA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMs9xKHcAA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMs9xKHcAA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMs9xKHcAA .nav-link {
  position: relative;
}
.cid-tMs9xKHcAA .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs9xKHcAA .container {
    flex-wrap: wrap;
  }
}
.cid-tMs9xKHcAA .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs9xKHcAA .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMs9xKHcAA .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMs9xKHcAA .dropdown-menu,
.cid-tMs9xKHcAA .navbar.opened {
  background: #000000 !important;
}
.cid-tMs9xKHcAA .nav-item:focus,
.cid-tMs9xKHcAA .nav-link:focus {
  outline: none;
}
.cid-tMs9xKHcAA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMs9xKHcAA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMs9xKHcAA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMs9xKHcAA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMs9xKHcAA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMs9xKHcAA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMs9xKHcAA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMs9xKHcAA .navbar.opened {
  transition: all 0.3s;
}
.cid-tMs9xKHcAA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMs9xKHcAA .navbar .navbar-logo img {
  width: auto;
}
.cid-tMs9xKHcAA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMs9xKHcAA .navbar.collapsed {
  justify-content: center;
}
.cid-tMs9xKHcAA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMs9xKHcAA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMs9xKHcAA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMs9xKHcAA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMs9xKHcAA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMs9xKHcAA .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-tMs9xKHcAA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMs9xKHcAA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMs9xKHcAA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMs9xKHcAA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMs9xKHcAA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMs9xKHcAA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMs9xKHcAA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMs9xKHcAA .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-tMs9xKHcAA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMs9xKHcAA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMs9xKHcAA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMs9xKHcAA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMs9xKHcAA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMs9xKHcAA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMs9xKHcAA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMs9xKHcAA .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMs9xKHcAA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMs9xKHcAA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMs9xKHcAA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMs9xKHcAA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMs9xKHcAA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMs9xKHcAA .dropdown-item.active,
.cid-tMs9xKHcAA .dropdown-item:active {
  background-color: transparent;
}
.cid-tMs9xKHcAA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMs9xKHcAA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMs9xKHcAA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMs9xKHcAA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMs9xKHcAA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMs9xKHcAA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMs9xKHcAA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMs9xKHcAA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMs9xKHcAA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMs9xKHcAA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMs9xKHcAA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMs9xKHcAA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs9xKHcAA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs9xKHcAA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMs9xKHcAA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs9xKHcAA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMs9xKHcAA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMs9xKHcAA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs9xKHcAA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMs9xKHcAA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMs9xKHcAA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMs9xKHcAA .navbar {
    height: 70px;
  }
  .cid-tMs9xKHcAA .navbar.opened {
    height: auto;
  }
  .cid-tMs9xKHcAA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yIm0YyNU {
  background-image: url("../../../assets/images/circuit20board20banner-1280x881.jpg");
}
.cid-u2yIm0YyNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yIm0YyNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yIm0YyNU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yIm0YyNU .mbr-text,
.cid-u2yIm0YyNU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yIm0YyNU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMs9xLiHpe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMs9xLiHpe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs9xLiHpe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMs9xLiHpe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMs9xLiHpe .row {
  flex-direction: row-reverse;
}
.cid-tMs9xLiHpe img {
  width: 100%;
}
.cid-tMs9xLL4uo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMs9xLL4uo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs9xLL4uo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMs9xLL4uo .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMs9xLL4uo .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMs9xLL4uo .mbr-section-title {
  color: #ffffff;
}
.cid-tMs9xLL4uo .card-title,
.cid-tMs9xLL4uo .card-box {
  color: #ffffff;
}
.cid-uYNkHY75sa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkHY75sa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkHY75sa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkHY75sa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkHY75sa .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkGOp4mk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkGOp4mk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkGOp4mk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkGOp4mk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkGOp4mk .number {
  color: #ffffff;
}
.cid-uYNkGOp4mk .period {
  display: block;
}
.cid-uYNkGOp4mk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkGOp4mk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkGOp4mk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkGOp4mk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkGOp4mk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkGOp4mk .mbr-text {
  color: #ffffff;
}
.cid-uYNkGOp4mk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkGOp4mk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkGOp4mk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkGOp4mk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yIktxQGD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yIktxQGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yIktxQGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yIktxQGD .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yIktxQGD .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yIktxQGD .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yIktxQGD .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yIktxQGD .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yIktxQGD .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yIktxQGD .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yIktxQGD .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yIktxQGD .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yIktxQGD [class^="socicon-"]:before,
.cid-u2yIktxQGD [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yIktxQGD .mbr-section-title,
.cid-u2yIktxQGD .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mlalqIu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mlalqIu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mlalqIu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mlalqIu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mlalqIu .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mlalqIu .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mlalqIu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mlalqIu .mbr-text {
  color: #ffffff;
}
.cid-u39mlalqIu .card-title {
  color: #ffffff;
}
.cid-u39mlalqIu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mlalqIu .mbr-section-title {
  color: #ffffff;
}
.cid-u39mlalqIu .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMseQCHENT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMseQCHENT nav.navbar {
  position: fixed;
}
.cid-tMseQCHENT .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-tMseQCHENT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMseQCHENT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMseQCHENT .dropdown-item:hover,
.cid-tMseQCHENT .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMseQCHENT .dropdown-item:hover span {
  color: white;
}
.cid-tMseQCHENT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMseQCHENT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMseQCHENT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMseQCHENT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMseQCHENT .nav-link {
  position: relative;
}
.cid-tMseQCHENT .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMseQCHENT .container {
    flex-wrap: wrap;
  }
}
.cid-tMseQCHENT .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMseQCHENT .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMseQCHENT .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMseQCHENT .dropdown-menu,
.cid-tMseQCHENT .navbar.opened {
  background: #000000 !important;
}
.cid-tMseQCHENT .nav-item:focus,
.cid-tMseQCHENT .nav-link:focus {
  outline: none;
}
.cid-tMseQCHENT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMseQCHENT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMseQCHENT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMseQCHENT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMseQCHENT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMseQCHENT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMseQCHENT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMseQCHENT .navbar.opened {
  transition: all 0.3s;
}
.cid-tMseQCHENT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMseQCHENT .navbar .navbar-logo img {
  width: auto;
}
.cid-tMseQCHENT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMseQCHENT .navbar.collapsed {
  justify-content: center;
}
.cid-tMseQCHENT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMseQCHENT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMseQCHENT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMseQCHENT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMseQCHENT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMseQCHENT .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-tMseQCHENT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMseQCHENT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMseQCHENT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMseQCHENT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMseQCHENT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMseQCHENT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMseQCHENT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMseQCHENT .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-tMseQCHENT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMseQCHENT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMseQCHENT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMseQCHENT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMseQCHENT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMseQCHENT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMseQCHENT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMseQCHENT .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMseQCHENT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMseQCHENT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMseQCHENT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMseQCHENT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMseQCHENT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMseQCHENT .dropdown-item.active,
.cid-tMseQCHENT .dropdown-item:active {
  background-color: transparent;
}
.cid-tMseQCHENT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMseQCHENT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMseQCHENT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMseQCHENT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMseQCHENT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMseQCHENT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMseQCHENT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMseQCHENT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMseQCHENT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMseQCHENT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMseQCHENT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMseQCHENT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMseQCHENT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMseQCHENT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMseQCHENT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMseQCHENT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMseQCHENT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMseQCHENT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMseQCHENT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMseQCHENT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMseQCHENT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMseQCHENT .navbar {
    height: 70px;
  }
  .cid-tMseQCHENT .navbar.opened {
    height: auto;
  }
  .cid-tMseQCHENT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yHBLOeUb {
  background-image: url("../../../assets/images/connectors.webp");
}
.cid-u2yHBLOeUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yHBLOeUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yHBLOeUb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yHBLOeUb .mbr-text,
.cid-u2yHBLOeUb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yHBLOeUb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMseQDiQLd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMseQDiQLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMseQDiQLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMseQDiQLd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMseQDiQLd .row {
  flex-direction: row-reverse;
}
.cid-tMseQDiQLd img {
  width: 100%;
}
.cid-tMseQDKjA5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMseQDKjA5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMseQDKjA5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMseQDKjA5 .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMseQDKjA5 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMseQDKjA5 .mbr-section-title {
  color: #ffffff;
}
.cid-tMseQDKjA5 .card-title,
.cid-tMseQDKjA5 .card-box {
  color: #ffffff;
}
.cid-tMseQEhVYp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMseQEhVYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMseQEhVYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMseQEhVYp .link {
  color: #4479d9;
}
.cid-tMseQEhVYp .card-title,
.cid-tMseQEhVYp .card-box {
  color: #ffffff;
}
.cid-uYNkCIr6lC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkCIr6lC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkCIr6lC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkCIr6lC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkCIr6lC .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkBsdlQx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkBsdlQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkBsdlQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkBsdlQx .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkBsdlQx .number {
  color: #ffffff;
}
.cid-uYNkBsdlQx .period {
  display: block;
}
.cid-uYNkBsdlQx .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkBsdlQx .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkBsdlQx .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkBsdlQx .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkBsdlQx .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkBsdlQx .mbr-text {
  color: #ffffff;
}
.cid-uYNkBsdlQx .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkBsdlQx .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkBsdlQx .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkBsdlQx .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yHzNjNak {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yHzNjNak .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yHzNjNak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yHzNjNak .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yHzNjNak .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yHzNjNak .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yHzNjNak .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yHzNjNak .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yHzNjNak .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yHzNjNak .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yHzNjNak .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yHzNjNak .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yHzNjNak [class^="socicon-"]:before,
.cid-u2yHzNjNak [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yHzNjNak .mbr-section-title,
.cid-u2yHzNjNak .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mhMqB3f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mhMqB3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mhMqB3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mhMqB3f .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mhMqB3f .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mhMqB3f .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mhMqB3f .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mhMqB3f .mbr-text {
  color: #ffffff;
}
.cid-u39mhMqB3f .card-title {
  color: #ffffff;
}
.cid-u39mhMqB3f .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mhMqB3f .mbr-section-title {
  color: #ffffff;
}
.cid-u39mhMqB3f .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNctrv4CmE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNctrv4CmE nav.navbar {
  position: fixed;
}
.cid-tNctrv4CmE .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-tNctrv4CmE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNctrv4CmE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNctrv4CmE .dropdown-item:hover,
.cid-tNctrv4CmE .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNctrv4CmE .dropdown-item:hover span {
  color: white;
}
.cid-tNctrv4CmE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNctrv4CmE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNctrv4CmE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNctrv4CmE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNctrv4CmE .nav-link {
  position: relative;
}
.cid-tNctrv4CmE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNctrv4CmE .container {
    flex-wrap: wrap;
  }
}
.cid-tNctrv4CmE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNctrv4CmE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNctrv4CmE .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNctrv4CmE .dropdown-menu,
.cid-tNctrv4CmE .navbar.opened {
  background: #000000 !important;
}
.cid-tNctrv4CmE .nav-item:focus,
.cid-tNctrv4CmE .nav-link:focus {
  outline: none;
}
.cid-tNctrv4CmE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNctrv4CmE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNctrv4CmE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNctrv4CmE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNctrv4CmE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNctrv4CmE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNctrv4CmE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNctrv4CmE .navbar.opened {
  transition: all 0.3s;
}
.cid-tNctrv4CmE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNctrv4CmE .navbar .navbar-logo img {
  width: auto;
}
.cid-tNctrv4CmE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNctrv4CmE .navbar.collapsed {
  justify-content: center;
}
.cid-tNctrv4CmE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNctrv4CmE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNctrv4CmE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNctrv4CmE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNctrv4CmE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNctrv4CmE .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-tNctrv4CmE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNctrv4CmE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNctrv4CmE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNctrv4CmE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNctrv4CmE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNctrv4CmE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNctrv4CmE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNctrv4CmE .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-tNctrv4CmE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNctrv4CmE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNctrv4CmE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNctrv4CmE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNctrv4CmE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNctrv4CmE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNctrv4CmE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNctrv4CmE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNctrv4CmE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNctrv4CmE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNctrv4CmE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNctrv4CmE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNctrv4CmE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNctrv4CmE .dropdown-item.active,
.cid-tNctrv4CmE .dropdown-item:active {
  background-color: transparent;
}
.cid-tNctrv4CmE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNctrv4CmE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNctrv4CmE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNctrv4CmE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNctrv4CmE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNctrv4CmE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNctrv4CmE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNctrv4CmE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNctrv4CmE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNctrv4CmE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNctrv4CmE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNctrv4CmE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNctrv4CmE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNctrv4CmE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNctrv4CmE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNctrv4CmE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNctrv4CmE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNctrv4CmE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNctrv4CmE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNctrv4CmE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNctrv4CmE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNctrv4CmE .navbar {
    height: 70px;
  }
  .cid-tNctrv4CmE .navbar.opened {
    height: auto;
  }
  .cid-tNctrv4CmE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yH6XsBeP {
  background-image: url("../../../assets/images/fuses-on-pcb.webp");
}
.cid-u2yH6XsBeP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yH6XsBeP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yH6XsBeP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yH6XsBeP .mbr-text,
.cid-u2yH6XsBeP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yH6XsBeP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNctrvOgqG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tNctrvOgqG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNctrvOgqG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNctrvOgqG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNctrvOgqG .row {
  flex-direction: row-reverse;
}
.cid-tNctrvOgqG img {
  width: 100%;
}
.cid-tNctrwaLcL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNctrwaLcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNctrwaLcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNctrwaLcL .link {
  color: #4479d9;
  text-align: left;
}
.cid-tNctrwaLcL .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tNctrwaLcL .mbr-section-title {
  color: #ffffff;
}
.cid-tNctrwaLcL .card-title,
.cid-tNctrwaLcL .card-box {
  color: #ffffff;
}
.cid-uYNkw9xrRq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkw9xrRq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkw9xrRq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkw9xrRq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkw9xrRq .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkuXrAdr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkuXrAdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkuXrAdr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkuXrAdr .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkuXrAdr .number {
  color: #ffffff;
}
.cid-uYNkuXrAdr .period {
  display: block;
}
.cid-uYNkuXrAdr .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkuXrAdr .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkuXrAdr .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkuXrAdr .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkuXrAdr .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkuXrAdr .mbr-text {
  color: #ffffff;
}
.cid-uYNkuXrAdr .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkuXrAdr .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkuXrAdr .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkuXrAdr .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yH4j7jzI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yH4j7jzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yH4j7jzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yH4j7jzI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yH4j7jzI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yH4j7jzI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yH4j7jzI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yH4j7jzI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yH4j7jzI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yH4j7jzI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yH4j7jzI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yH4j7jzI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yH4j7jzI [class^="socicon-"]:before,
.cid-u2yH4j7jzI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yH4j7jzI .mbr-section-title,
.cid-u2yH4j7jzI .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mfqWGi8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mfqWGi8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mfqWGi8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mfqWGi8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mfqWGi8 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mfqWGi8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mfqWGi8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mfqWGi8 .mbr-text {
  color: #ffffff;
}
.cid-u39mfqWGi8 .card-title {
  color: #ffffff;
}
.cid-u39mfqWGi8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mfqWGi8 .mbr-section-title {
  color: #ffffff;
}
.cid-u39mfqWGi8 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNcQTYLKg8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNcQTYLKg8 nav.navbar {
  position: fixed;
}
.cid-tNcQTYLKg8 .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-tNcQTYLKg8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNcQTYLKg8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNcQTYLKg8 .dropdown-item:hover,
.cid-tNcQTYLKg8 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNcQTYLKg8 .dropdown-item:hover span {
  color: white;
}
.cid-tNcQTYLKg8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNcQTYLKg8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNcQTYLKg8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNcQTYLKg8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNcQTYLKg8 .nav-link {
  position: relative;
}
.cid-tNcQTYLKg8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcQTYLKg8 .container {
    flex-wrap: wrap;
  }
}
.cid-tNcQTYLKg8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcQTYLKg8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNcQTYLKg8 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNcQTYLKg8 .dropdown-menu,
.cid-tNcQTYLKg8 .navbar.opened {
  background: #000000 !important;
}
.cid-tNcQTYLKg8 .nav-item:focus,
.cid-tNcQTYLKg8 .nav-link:focus {
  outline: none;
}
.cid-tNcQTYLKg8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNcQTYLKg8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNcQTYLKg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNcQTYLKg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNcQTYLKg8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNcQTYLKg8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNcQTYLKg8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNcQTYLKg8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tNcQTYLKg8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNcQTYLKg8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tNcQTYLKg8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNcQTYLKg8 .navbar.collapsed {
  justify-content: center;
}
.cid-tNcQTYLKg8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNcQTYLKg8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNcQTYLKg8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNcQTYLKg8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNcQTYLKg8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNcQTYLKg8 .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-tNcQTYLKg8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNcQTYLKg8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNcQTYLKg8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNcQTYLKg8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNcQTYLKg8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNcQTYLKg8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNcQTYLKg8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNcQTYLKg8 .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-tNcQTYLKg8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNcQTYLKg8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNcQTYLKg8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNcQTYLKg8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNcQTYLKg8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNcQTYLKg8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNcQTYLKg8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNcQTYLKg8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNcQTYLKg8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNcQTYLKg8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNcQTYLKg8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNcQTYLKg8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNcQTYLKg8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNcQTYLKg8 .dropdown-item.active,
.cid-tNcQTYLKg8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tNcQTYLKg8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNcQTYLKg8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNcQTYLKg8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNcQTYLKg8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNcQTYLKg8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNcQTYLKg8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNcQTYLKg8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNcQTYLKg8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNcQTYLKg8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNcQTYLKg8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNcQTYLKg8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNcQTYLKg8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcQTYLKg8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcQTYLKg8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNcQTYLKg8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcQTYLKg8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNcQTYLKg8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNcQTYLKg8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcQTYLKg8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNcQTYLKg8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNcQTYLKg8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNcQTYLKg8 .navbar {
    height: 70px;
  }
  .cid-tNcQTYLKg8 .navbar.opened {
    height: auto;
  }
  .cid-tNcQTYLKg8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2wdZsAOiT {
  background-image: url("../../../assets/images/inductor-on-pcb.webp");
}
.cid-u2wdZsAOiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2wdZsAOiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2wdZsAOiT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2wdZsAOiT .mbr-text,
.cid-u2wdZsAOiT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2wdZsAOiT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNcQTZnyoe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tNcQTZnyoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcQTZnyoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNcQTZnyoe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNcQTZnyoe .row {
  flex-direction: row-reverse;
}
.cid-tNcQTZnyoe img {
  width: 100%;
}
.cid-tNcQTZRPJ8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNcQTZRPJ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcQTZRPJ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNcQTZRPJ8 .link {
  color: #4479d9;
  text-align: left;
}
.cid-tNcQTZRPJ8 .mbr-section-subtitle {
  color: #bed3f9;
}
.cid-tNcQTZRPJ8 .mbr-section-title {
  color: #ffffff;
}
.cid-tNcQTZRPJ8 .card-title,
.cid-tNcQTZRPJ8 .card-box {
  color: #ffffff;
}
.cid-uYNjGorSZl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNjGorSZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjGorSZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjGorSZl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjGorSZl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjFdajxb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNjFdajxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjFdajxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjFdajxb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNjFdajxb .number {
  color: #ffffff;
}
.cid-uYNjFdajxb .period {
  display: block;
}
.cid-uYNjFdajxb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNjFdajxb .period {
    font-size: 0.8rem;
  }
}
.cid-uYNjFdajxb .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNjFdajxb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNjFdajxb .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjFdajxb .mbr-text {
  color: #ffffff;
}
.cid-uYNjFdajxb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNjFdajxb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNjFdajxb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNjFdajxb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2we7PVg4f {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2we7PVg4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2we7PVg4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2we7PVg4f .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2we7PVg4f .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2we7PVg4f .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2we7PVg4f .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2we7PVg4f .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2we7PVg4f .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2we7PVg4f .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2we7PVg4f .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2we7PVg4f .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2we7PVg4f [class^="socicon-"]:before,
.cid-u2we7PVg4f [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2we7PVg4f .mbr-section-title,
.cid-u2we7PVg4f .mbr-social-likes {
  color: #ffffff;
}
.cid-u39maPsKI7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39maPsKI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39maPsKI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39maPsKI7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39maPsKI7 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39maPsKI7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39maPsKI7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39maPsKI7 .mbr-text {
  color: #ffffff;
}
.cid-u39maPsKI7 .card-title {
  color: #ffffff;
}
.cid-u39maPsKI7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39maPsKI7 .mbr-section-title {
  color: #ffffff;
}
.cid-u39maPsKI7 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNcTaW7a27 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNcTaW7a27 nav.navbar {
  position: fixed;
}
.cid-tNcTaW7a27 .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-tNcTaW7a27 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNcTaW7a27 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNcTaW7a27 .dropdown-item:hover,
.cid-tNcTaW7a27 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNcTaW7a27 .dropdown-item:hover span {
  color: white;
}
.cid-tNcTaW7a27 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNcTaW7a27 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNcTaW7a27 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNcTaW7a27 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNcTaW7a27 .nav-link {
  position: relative;
}
.cid-tNcTaW7a27 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcTaW7a27 .container {
    flex-wrap: wrap;
  }
}
.cid-tNcTaW7a27 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcTaW7a27 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNcTaW7a27 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNcTaW7a27 .dropdown-menu,
.cid-tNcTaW7a27 .navbar.opened {
  background: #000000 !important;
}
.cid-tNcTaW7a27 .nav-item:focus,
.cid-tNcTaW7a27 .nav-link:focus {
  outline: none;
}
.cid-tNcTaW7a27 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNcTaW7a27 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNcTaW7a27 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNcTaW7a27 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNcTaW7a27 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNcTaW7a27 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNcTaW7a27 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNcTaW7a27 .navbar.opened {
  transition: all 0.3s;
}
.cid-tNcTaW7a27 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNcTaW7a27 .navbar .navbar-logo img {
  width: auto;
}
.cid-tNcTaW7a27 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNcTaW7a27 .navbar.collapsed {
  justify-content: center;
}
.cid-tNcTaW7a27 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNcTaW7a27 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNcTaW7a27 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNcTaW7a27 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNcTaW7a27 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNcTaW7a27 .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-tNcTaW7a27 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNcTaW7a27 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNcTaW7a27 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNcTaW7a27 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNcTaW7a27 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNcTaW7a27 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNcTaW7a27 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNcTaW7a27 .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-tNcTaW7a27 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNcTaW7a27 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNcTaW7a27 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNcTaW7a27 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNcTaW7a27 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNcTaW7a27 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNcTaW7a27 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNcTaW7a27 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNcTaW7a27 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNcTaW7a27 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNcTaW7a27 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNcTaW7a27 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNcTaW7a27 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNcTaW7a27 .dropdown-item.active,
.cid-tNcTaW7a27 .dropdown-item:active {
  background-color: transparent;
}
.cid-tNcTaW7a27 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNcTaW7a27 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNcTaW7a27 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNcTaW7a27 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNcTaW7a27 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNcTaW7a27 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNcTaW7a27 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNcTaW7a27 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNcTaW7a27 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNcTaW7a27 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNcTaW7a27 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNcTaW7a27 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcTaW7a27 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcTaW7a27 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNcTaW7a27 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcTaW7a27 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNcTaW7a27 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNcTaW7a27 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcTaW7a27 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNcTaW7a27 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNcTaW7a27 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNcTaW7a27 .navbar {
    height: 70px;
  }
  .cid-tNcTaW7a27 .navbar.opened {
    height: auto;
  }
  .cid-tNcTaW7a27 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2waF5n3Sr {
  background-image: url("../../../assets/images/plastic-screws-for-standoffs.webp");
}
.cid-u2waF5n3Sr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2waF5n3Sr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2waF5n3Sr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2waF5n3Sr .mbr-text,
.cid-u2waF5n3Sr .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2waF5n3Sr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNcTaWTAmM {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tNcTaWTAmM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcTaWTAmM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNcTaWTAmM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNcTaWTAmM .row {
  flex-direction: row-reverse;
}
.cid-tNcTaWTAmM img {
  width: 100%;
}
.cid-tNcTaXnFxG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNcTaXnFxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcTaXnFxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNcTaXnFxG .link {
  color: #4479d9;
  text-align: left;
}
.cid-tNcTaXnFxG .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tNcTaXnFxG .mbr-section-title {
  color: #ffffff;
}
.cid-tNcTaXnFxG .card-title,
.cid-tNcTaXnFxG .card-box {
  color: #ffffff;
}
.cid-tNcTaXSyAr {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNcTaXSyAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcTaXSyAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNcTaXSyAr .link {
  color: #4479d9;
}
.cid-tNcTaXSyAr .card-title,
.cid-tNcTaXSyAr .card-box {
  color: #ffffff;
}
.cid-uYNiOkrIOH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNiOkrIOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiOkrIOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiOkrIOH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiOkrIOH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiN8aBYA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNiN8aBYA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiN8aBYA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiN8aBYA .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNiN8aBYA .number {
  color: #ffffff;
}
.cid-uYNiN8aBYA .period {
  display: block;
}
.cid-uYNiN8aBYA .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNiN8aBYA .period {
    font-size: 0.8rem;
  }
}
.cid-uYNiN8aBYA .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNiN8aBYA .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNiN8aBYA .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiN8aBYA .mbr-text {
  color: #ffffff;
}
.cid-uYNiN8aBYA .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNiN8aBYA .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNiN8aBYA .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNiN8aBYA .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2wavLYQEp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2wavLYQEp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2wavLYQEp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2wavLYQEp .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2wavLYQEp .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2wavLYQEp .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2wavLYQEp .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2wavLYQEp .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2wavLYQEp .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2wavLYQEp .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2wavLYQEp .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2wavLYQEp .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2wavLYQEp [class^="socicon-"]:before,
.cid-u2wavLYQEp [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2wavLYQEp .mbr-section-title,
.cid-u2wavLYQEp .mbr-social-likes {
  color: #ffffff;
}
.cid-u39luFa0it {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39luFa0it .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39luFa0it .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39luFa0it .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39luFa0it .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39luFa0it .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39luFa0it .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39luFa0it .mbr-text {
  color: #ffffff;
}
.cid-u39luFa0it .card-title {
  color: #ffffff;
}
.cid-u39luFa0it .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39luFa0it .mbr-section-title {
  color: #ffffff;
}
.cid-u39luFa0it .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNd5PX9Ofb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNd5PX9Ofb nav.navbar {
  position: fixed;
}
.cid-tNd5PX9Ofb .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-tNd5PX9Ofb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNd5PX9Ofb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNd5PX9Ofb .dropdown-item:hover,
.cid-tNd5PX9Ofb .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNd5PX9Ofb .dropdown-item:hover span {
  color: white;
}
.cid-tNd5PX9Ofb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNd5PX9Ofb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNd5PX9Ofb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNd5PX9Ofb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNd5PX9Ofb .nav-link {
  position: relative;
}
.cid-tNd5PX9Ofb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNd5PX9Ofb .container {
    flex-wrap: wrap;
  }
}
.cid-tNd5PX9Ofb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNd5PX9Ofb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNd5PX9Ofb .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNd5PX9Ofb .dropdown-menu,
.cid-tNd5PX9Ofb .navbar.opened {
  background: #000000 !important;
}
.cid-tNd5PX9Ofb .nav-item:focus,
.cid-tNd5PX9Ofb .nav-link:focus {
  outline: none;
}
.cid-tNd5PX9Ofb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNd5PX9Ofb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNd5PX9Ofb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNd5PX9Ofb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNd5PX9Ofb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNd5PX9Ofb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNd5PX9Ofb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNd5PX9Ofb .navbar.opened {
  transition: all 0.3s;
}
.cid-tNd5PX9Ofb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNd5PX9Ofb .navbar .navbar-logo img {
  width: auto;
}
.cid-tNd5PX9Ofb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNd5PX9Ofb .navbar.collapsed {
  justify-content: center;
}
.cid-tNd5PX9Ofb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNd5PX9Ofb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNd5PX9Ofb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNd5PX9Ofb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNd5PX9Ofb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNd5PX9Ofb .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-tNd5PX9Ofb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNd5PX9Ofb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNd5PX9Ofb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNd5PX9Ofb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNd5PX9Ofb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNd5PX9Ofb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNd5PX9Ofb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNd5PX9Ofb .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-tNd5PX9Ofb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNd5PX9Ofb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNd5PX9Ofb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNd5PX9Ofb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNd5PX9Ofb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNd5PX9Ofb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNd5PX9Ofb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNd5PX9Ofb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNd5PX9Ofb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNd5PX9Ofb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNd5PX9Ofb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNd5PX9Ofb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNd5PX9Ofb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNd5PX9Ofb .dropdown-item.active,
.cid-tNd5PX9Ofb .dropdown-item:active {
  background-color: transparent;
}
.cid-tNd5PX9Ofb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNd5PX9Ofb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNd5PX9Ofb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNd5PX9Ofb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNd5PX9Ofb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNd5PX9Ofb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNd5PX9Ofb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNd5PX9Ofb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNd5PX9Ofb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNd5PX9Ofb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNd5PX9Ofb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNd5PX9Ofb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNd5PX9Ofb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNd5PX9Ofb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNd5PX9Ofb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNd5PX9Ofb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNd5PX9Ofb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNd5PX9Ofb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNd5PX9Ofb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNd5PX9Ofb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNd5PX9Ofb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNd5PX9Ofb .navbar {
    height: 70px;
  }
  .cid-tNd5PX9Ofb .navbar.opened {
    height: auto;
  }
  .cid-tNd5PX9Ofb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yYKHBDfa {
  background-image: url("../../../assets/images/vegetables-5122819-1280-1280x850.webp");
}
.cid-u2yYKHBDfa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yYKHBDfa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yYKHBDfa .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yYKHBDfa .mbr-text,
.cid-u2yYKHBDfa .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yYKHBDfa .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNd5PXIVPV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNd5PXIVPV img,
.cid-tNd5PXIVPV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNd5PXIVPV .item:focus,
.cid-tNd5PXIVPV span:focus {
  outline: none;
}
.cid-tNd5PXIVPV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNd5PXIVPV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNd5PXIVPV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNd5PXIVPV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNd5PXIVPV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNd5PXIVPV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNd5PXIVPV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNd5PXIVPV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNd5PXIVPV .mbr-text,
.cid-tNd5PXIVPV .mbr-section-btn {
  text-align: left;
}
.cid-tNd5PXIVPV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNd5PXIVPV .item-subtitle {
  text-align: left;
}
.cid-tNd5PXIVPV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNd5PYhY4T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNd5PYhY4T img,
.cid-tNd5PYhY4T .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNd5PYhY4T .item:focus,
.cid-tNd5PYhY4T span:focus {
  outline: none;
}
.cid-tNd5PYhY4T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNd5PYhY4T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNd5PYhY4T .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNd5PYhY4T .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNd5PYhY4T .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNd5PYhY4T .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNd5PYhY4T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNd5PYhY4T .mbr-section-title {
  color: #232323;
}
.cid-tNd5PYhY4T .mbr-text,
.cid-tNd5PYhY4T .mbr-section-btn {
  text-align: left;
}
.cid-tNd5PYhY4T .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNd5PYhY4T .item-subtitle {
  text-align: left;
}
.cid-uYNxeavpjS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNxeavpjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNxeavpjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNxeavpjS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNxeavpjS .mbr-section-title {
  color: #ffffff;
}
.cid-uYNxcu1nLT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNxcu1nLT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNxcu1nLT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNxcu1nLT .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNxcu1nLT .number {
  color: #ffffff;
}
.cid-uYNxcu1nLT .period {
  display: block;
}
.cid-uYNxcu1nLT .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNxcu1nLT .period {
    font-size: 0.8rem;
  }
}
.cid-uYNxcu1nLT .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNxcu1nLT .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNxcu1nLT .mbr-section-title {
  color: #ffffff;
}
.cid-uYNxcu1nLT .mbr-text {
  color: #ffffff;
}
.cid-uYNxcu1nLT .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNxcu1nLT .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNxcu1nLT .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNxcu1nLT .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yYJmROjC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yYJmROjC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yYJmROjC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yYJmROjC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yYJmROjC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yYJmROjC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yYJmROjC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yYJmROjC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yYJmROjC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yYJmROjC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yYJmROjC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yYJmROjC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yYJmROjC [class^="socicon-"]:before,
.cid-u2yYJmROjC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yYJmROjC .mbr-section-title,
.cid-u2yYJmROjC .mbr-social-likes {
  color: #ffffff;
}
.cid-u39oqccRUO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39oqccRUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39oqccRUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39oqccRUO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39oqccRUO .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39oqccRUO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39oqccRUO .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39oqccRUO .mbr-text {
  color: #ffffff;
}
.cid-u39oqccRUO .card-title {
  color: #ffffff;
}
.cid-u39oqccRUO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39oqccRUO .mbr-section-title {
  color: #ffffff;
}
.cid-u39oqccRUO .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNHfwlxygZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNHfwlxygZ nav.navbar {
  position: fixed;
}
.cid-tNHfwlxygZ .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-tNHfwlxygZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNHfwlxygZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNHfwlxygZ .dropdown-item:hover,
.cid-tNHfwlxygZ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNHfwlxygZ .dropdown-item:hover span {
  color: white;
}
.cid-tNHfwlxygZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNHfwlxygZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNHfwlxygZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNHfwlxygZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNHfwlxygZ .nav-link {
  position: relative;
}
.cid-tNHfwlxygZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNHfwlxygZ .container {
    flex-wrap: wrap;
  }
}
.cid-tNHfwlxygZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNHfwlxygZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNHfwlxygZ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNHfwlxygZ .dropdown-menu,
.cid-tNHfwlxygZ .navbar.opened {
  background: #000000 !important;
}
.cid-tNHfwlxygZ .nav-item:focus,
.cid-tNHfwlxygZ .nav-link:focus {
  outline: none;
}
.cid-tNHfwlxygZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNHfwlxygZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNHfwlxygZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNHfwlxygZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNHfwlxygZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNHfwlxygZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNHfwlxygZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNHfwlxygZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tNHfwlxygZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNHfwlxygZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tNHfwlxygZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNHfwlxygZ .navbar.collapsed {
  justify-content: center;
}
.cid-tNHfwlxygZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNHfwlxygZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNHfwlxygZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNHfwlxygZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNHfwlxygZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNHfwlxygZ .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-tNHfwlxygZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNHfwlxygZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNHfwlxygZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNHfwlxygZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNHfwlxygZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNHfwlxygZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNHfwlxygZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNHfwlxygZ .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-tNHfwlxygZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNHfwlxygZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNHfwlxygZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNHfwlxygZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNHfwlxygZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNHfwlxygZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNHfwlxygZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNHfwlxygZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNHfwlxygZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNHfwlxygZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNHfwlxygZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNHfwlxygZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNHfwlxygZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNHfwlxygZ .dropdown-item.active,
.cid-tNHfwlxygZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tNHfwlxygZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNHfwlxygZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNHfwlxygZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNHfwlxygZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNHfwlxygZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNHfwlxygZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNHfwlxygZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNHfwlxygZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNHfwlxygZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNHfwlxygZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNHfwlxygZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNHfwlxygZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNHfwlxygZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNHfwlxygZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNHfwlxygZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNHfwlxygZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNHfwlxygZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNHfwlxygZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNHfwlxygZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNHfwlxygZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNHfwlxygZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNHfwlxygZ .navbar {
    height: 70px;
  }
  .cid-tNHfwlxygZ .navbar.opened {
    height: auto;
  }
  .cid-tNHfwlxygZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yO97Fulc {
  background-image: url("../../../assets/images/echinacea-flower-bumble-bee-banner.webp");
}
.cid-u2yO97Fulc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yO97Fulc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yO97Fulc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yO97Fulc .mbr-text,
.cid-u2yO97Fulc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yO97Fulc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNSrH2njHi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNSrH2njHi img,
.cid-tNSrH2njHi .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNSrH2njHi .item:focus,
.cid-tNSrH2njHi span:focus {
  outline: none;
}
.cid-tNSrH2njHi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNSrH2njHi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNSrH2njHi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNSrH2njHi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNSrH2njHi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNSrH2njHi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNSrH2njHi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNSrH2njHi .mbr-section-title {
  color: #ffffff;
}
.cid-tNSrH2njHi .mbr-text,
.cid-tNSrH2njHi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tNSrH2njHi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNSrH2njHi .item-subtitle {
  text-align: left;
}
.cid-tNSrH2njHi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uziKIBu7mI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uziKIBu7mI img,
.cid-uziKIBu7mI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uziKIBu7mI .item:focus,
.cid-uziKIBu7mI span:focus {
  outline: none;
}
.cid-uziKIBu7mI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uziKIBu7mI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uziKIBu7mI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uziKIBu7mI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uziKIBu7mI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uziKIBu7mI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uziKIBu7mI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uziKIBu7mI .mbr-section-title {
  color: #232323;
}
.cid-uziKIBu7mI .mbr-text,
.cid-uziKIBu7mI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uziKIBu7mI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uziKIBu7mI .item-subtitle {
  text-align: left;
}
.cid-v2QM6nF6lR {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2QM6nF6lR img,
.cid-v2QM6nF6lR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2QM6nF6lR .item:focus,
.cid-v2QM6nF6lR span:focus {
  outline: none;
}
.cid-v2QM6nF6lR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2QM6nF6lR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2QM6nF6lR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2QM6nF6lR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2QM6nF6lR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2QM6nF6lR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2QM6nF6lR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2QM6nF6lR .mbr-section-title {
  color: #ffffff;
}
.cid-v2QM6nF6lR .mbr-text,
.cid-v2QM6nF6lR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2QM6nF6lR .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2QM6nF6lR .item-subtitle {
  text-align: left;
}
.cid-v2QM6nF6lR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmfRQnh5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmfRQnh5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmfRQnh5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmfRQnh5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmfRQnh5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmeC31FM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmeC31FM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmeC31FM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmeC31FM .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmeC31FM .number {
  color: #ffffff;
}
.cid-uYNmeC31FM .period {
  display: block;
}
.cid-uYNmeC31FM .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmeC31FM .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmeC31FM .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmeC31FM .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmeC31FM .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmeC31FM .mbr-text {
  color: #ffffff;
}
.cid-uYNmeC31FM .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmeC31FM .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmeC31FM .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmeC31FM .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yO7PXqIf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yO7PXqIf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yO7PXqIf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yO7PXqIf .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yO7PXqIf .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yO7PXqIf .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yO7PXqIf .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yO7PXqIf .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yO7PXqIf .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yO7PXqIf .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yO7PXqIf .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yO7PXqIf .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yO7PXqIf [class^="socicon-"]:before,
.cid-u2yO7PXqIf [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yO7PXqIf .mbr-section-title,
.cid-u2yO7PXqIf .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mM3yw2S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mM3yw2S .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mM3yw2S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mM3yw2S .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mM3yw2S .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mM3yw2S .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mM3yw2S .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mM3yw2S .mbr-text {
  color: #ffffff;
}
.cid-u39mM3yw2S .card-title {
  color: #ffffff;
}
.cid-u39mM3yw2S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mM3yw2S .mbr-section-title {
  color: #ffffff;
}
.cid-u39mM3yw2S .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNHv6q1cFB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNHv6q1cFB nav.navbar {
  position: fixed;
}
.cid-tNHv6q1cFB .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-tNHv6q1cFB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNHv6q1cFB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNHv6q1cFB .dropdown-item:hover,
.cid-tNHv6q1cFB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNHv6q1cFB .dropdown-item:hover span {
  color: white;
}
.cid-tNHv6q1cFB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNHv6q1cFB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNHv6q1cFB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNHv6q1cFB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNHv6q1cFB .nav-link {
  position: relative;
}
.cid-tNHv6q1cFB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNHv6q1cFB .container {
    flex-wrap: wrap;
  }
}
.cid-tNHv6q1cFB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNHv6q1cFB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNHv6q1cFB .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNHv6q1cFB .dropdown-menu,
.cid-tNHv6q1cFB .navbar.opened {
  background: #000000 !important;
}
.cid-tNHv6q1cFB .nav-item:focus,
.cid-tNHv6q1cFB .nav-link:focus {
  outline: none;
}
.cid-tNHv6q1cFB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNHv6q1cFB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNHv6q1cFB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNHv6q1cFB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNHv6q1cFB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNHv6q1cFB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNHv6q1cFB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNHv6q1cFB .navbar.opened {
  transition: all 0.3s;
}
.cid-tNHv6q1cFB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNHv6q1cFB .navbar .navbar-logo img {
  width: auto;
}
.cid-tNHv6q1cFB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNHv6q1cFB .navbar.collapsed {
  justify-content: center;
}
.cid-tNHv6q1cFB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNHv6q1cFB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNHv6q1cFB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNHv6q1cFB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNHv6q1cFB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNHv6q1cFB .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-tNHv6q1cFB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNHv6q1cFB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNHv6q1cFB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNHv6q1cFB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNHv6q1cFB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNHv6q1cFB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNHv6q1cFB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNHv6q1cFB .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-tNHv6q1cFB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNHv6q1cFB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNHv6q1cFB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNHv6q1cFB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNHv6q1cFB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNHv6q1cFB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNHv6q1cFB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNHv6q1cFB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNHv6q1cFB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNHv6q1cFB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNHv6q1cFB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNHv6q1cFB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNHv6q1cFB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNHv6q1cFB .dropdown-item.active,
.cid-tNHv6q1cFB .dropdown-item:active {
  background-color: transparent;
}
.cid-tNHv6q1cFB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNHv6q1cFB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNHv6q1cFB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNHv6q1cFB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNHv6q1cFB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNHv6q1cFB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNHv6q1cFB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNHv6q1cFB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNHv6q1cFB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNHv6q1cFB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNHv6q1cFB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNHv6q1cFB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNHv6q1cFB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNHv6q1cFB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNHv6q1cFB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNHv6q1cFB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNHv6q1cFB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNHv6q1cFB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNHv6q1cFB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNHv6q1cFB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNHv6q1cFB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNHv6q1cFB .navbar {
    height: 70px;
  }
  .cid-tNHv6q1cFB .navbar.opened {
    height: auto;
  }
  .cid-tNHv6q1cFB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yPDgPdMc {
  background-image: url("../../../assets/images/hops-banner.webp");
}
.cid-u2yPDgPdMc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yPDgPdMc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yPDgPdMc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yPDgPdMc .mbr-text,
.cid-u2yPDgPdMc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yPDgPdMc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vfmAPyhDgj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vfmAPyhDgj img,
.cid-vfmAPyhDgj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vfmAPyhDgj .item:focus,
.cid-vfmAPyhDgj span:focus {
  outline: none;
}
.cid-vfmAPyhDgj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vfmAPyhDgj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vfmAPyhDgj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vfmAPyhDgj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vfmAPyhDgj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vfmAPyhDgj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vfmAPyhDgj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vfmAPyhDgj .mbr-section-title {
  color: #ffffff;
}
.cid-vfmAPyhDgj .mbr-text,
.cid-vfmAPyhDgj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vfmAPyhDgj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vfmAPyhDgj .item-subtitle {
  text-align: left;
}
.cid-vfmAPyhDgj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnxVrgkT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnxVrgkT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnxVrgkT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnxVrgkT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnxVrgkT .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnwCoLno {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnwCoLno .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnwCoLno .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnwCoLno .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnwCoLno .number {
  color: #ffffff;
}
.cid-uYNnwCoLno .period {
  display: block;
}
.cid-uYNnwCoLno .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnwCoLno .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnwCoLno .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnwCoLno .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnwCoLno .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnwCoLno .mbr-text {
  color: #ffffff;
}
.cid-uYNnwCoLno .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnwCoLno .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnwCoLno .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnwCoLno .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yPBUHU94 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yPBUHU94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yPBUHU94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yPBUHU94 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yPBUHU94 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yPBUHU94 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yPBUHU94 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yPBUHU94 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yPBUHU94 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yPBUHU94 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yPBUHU94 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yPBUHU94 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yPBUHU94 [class^="socicon-"]:before,
.cid-u2yPBUHU94 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yPBUHU94 .mbr-section-title,
.cid-u2yPBUHU94 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39n1PBZ3U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39n1PBZ3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39n1PBZ3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39n1PBZ3U .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39n1PBZ3U .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39n1PBZ3U .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39n1PBZ3U .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39n1PBZ3U .mbr-text {
  color: #ffffff;
}
.cid-u39n1PBZ3U .card-title {
  color: #ffffff;
}
.cid-u39n1PBZ3U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39n1PBZ3U .mbr-section-title {
  color: #ffffff;
}
.cid-u39n1PBZ3U .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNLlzX1A5k {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNLlzX1A5k nav.navbar {
  position: fixed;
}
.cid-tNLlzX1A5k .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-tNLlzX1A5k .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNLlzX1A5k .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNLlzX1A5k .dropdown-item:hover,
.cid-tNLlzX1A5k .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNLlzX1A5k .dropdown-item:hover span {
  color: white;
}
.cid-tNLlzX1A5k .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNLlzX1A5k .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNLlzX1A5k .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNLlzX1A5k .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNLlzX1A5k .nav-link {
  position: relative;
}
.cid-tNLlzX1A5k .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNLlzX1A5k .container {
    flex-wrap: wrap;
  }
}
.cid-tNLlzX1A5k .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNLlzX1A5k .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNLlzX1A5k .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNLlzX1A5k .dropdown-menu,
.cid-tNLlzX1A5k .navbar.opened {
  background: #000000 !important;
}
.cid-tNLlzX1A5k .nav-item:focus,
.cid-tNLlzX1A5k .nav-link:focus {
  outline: none;
}
.cid-tNLlzX1A5k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNLlzX1A5k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNLlzX1A5k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNLlzX1A5k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNLlzX1A5k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNLlzX1A5k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNLlzX1A5k .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNLlzX1A5k .navbar.opened {
  transition: all 0.3s;
}
.cid-tNLlzX1A5k .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNLlzX1A5k .navbar .navbar-logo img {
  width: auto;
}
.cid-tNLlzX1A5k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNLlzX1A5k .navbar.collapsed {
  justify-content: center;
}
.cid-tNLlzX1A5k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNLlzX1A5k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNLlzX1A5k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNLlzX1A5k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNLlzX1A5k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNLlzX1A5k .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-tNLlzX1A5k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNLlzX1A5k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNLlzX1A5k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNLlzX1A5k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNLlzX1A5k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNLlzX1A5k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNLlzX1A5k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNLlzX1A5k .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-tNLlzX1A5k .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNLlzX1A5k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNLlzX1A5k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNLlzX1A5k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNLlzX1A5k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNLlzX1A5k .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNLlzX1A5k .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNLlzX1A5k .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNLlzX1A5k .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNLlzX1A5k .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNLlzX1A5k .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNLlzX1A5k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNLlzX1A5k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNLlzX1A5k .dropdown-item.active,
.cid-tNLlzX1A5k .dropdown-item:active {
  background-color: transparent;
}
.cid-tNLlzX1A5k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNLlzX1A5k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNLlzX1A5k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNLlzX1A5k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNLlzX1A5k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNLlzX1A5k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNLlzX1A5k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNLlzX1A5k .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNLlzX1A5k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNLlzX1A5k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNLlzX1A5k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNLlzX1A5k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNLlzX1A5k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNLlzX1A5k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNLlzX1A5k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNLlzX1A5k nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNLlzX1A5k nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNLlzX1A5k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNLlzX1A5k .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNLlzX1A5k a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNLlzX1A5k .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNLlzX1A5k .navbar {
    height: 70px;
  }
  .cid-tNLlzX1A5k .navbar.opened {
    height: auto;
  }
  .cid-tNLlzX1A5k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yQih20VH {
  background-image: url("../../../assets/images/tobacco-plant.webp");
}
.cid-u2yQih20VH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yQih20VH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yQih20VH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yQih20VH .mbr-text,
.cid-u2yQih20VH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yQih20VH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNLlzXynTe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNLlzXynTe img,
.cid-tNLlzXynTe .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNLlzXynTe .item:focus,
.cid-tNLlzXynTe span:focus {
  outline: none;
}
.cid-tNLlzXynTe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNLlzXynTe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNLlzXynTe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNLlzXynTe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNLlzXynTe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNLlzXynTe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNLlzXynTe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNLlzXynTe .mbr-section-title {
  color: #ffffff;
}
.cid-tNLlzXynTe .mbr-text,
.cid-tNLlzXynTe .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tNLlzXynTe .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNLlzXynTe .item-subtitle {
  text-align: left;
}
.cid-tNLlzXynTe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNLF8i0n98 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tNLF8i0n98 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNLF8i0n98 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNLF8i0n98 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNLF8i0n98 .row {
  flex-direction: row-reverse;
}
.cid-tNLF8i0n98 img {
  width: 100%;
}
.cid-tNLF8i0n98 .mbr-description {
  color: #ffffff;
}
.cid-uYNnEGuX9F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnEGuX9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnEGuX9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnEGuX9F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnEGuX9F .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnDEMqNs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnDEMqNs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnDEMqNs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnDEMqNs .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnDEMqNs .number {
  color: #ffffff;
}
.cid-uYNnDEMqNs .period {
  display: block;
}
.cid-uYNnDEMqNs .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnDEMqNs .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnDEMqNs .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnDEMqNs .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnDEMqNs .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnDEMqNs .mbr-text {
  color: #ffffff;
}
.cid-uYNnDEMqNs .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnDEMqNs .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnDEMqNs .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnDEMqNs .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yQggzHVo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yQggzHVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yQggzHVo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yQggzHVo .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yQggzHVo .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yQggzHVo .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yQggzHVo .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yQggzHVo .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yQggzHVo .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yQggzHVo .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yQggzHVo .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yQggzHVo .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yQggzHVo [class^="socicon-"]:before,
.cid-u2yQggzHVo [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yQggzHVo .mbr-section-title,
.cid-u2yQggzHVo .mbr-social-likes {
  color: #ffffff;
}
.cid-u39n5nwdfz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39n5nwdfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39n5nwdfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39n5nwdfz .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39n5nwdfz .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39n5nwdfz .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39n5nwdfz .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39n5nwdfz .mbr-text {
  color: #ffffff;
}
.cid-u39n5nwdfz .card-title {
  color: #ffffff;
}
.cid-u39n5nwdfz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39n5nwdfz .mbr-section-title {
  color: #ffffff;
}
.cid-u39n5nwdfz .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNLR3aWaHW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNLR3aWaHW nav.navbar {
  position: fixed;
}
.cid-tNLR3aWaHW .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-tNLR3aWaHW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNLR3aWaHW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNLR3aWaHW .dropdown-item:hover,
.cid-tNLR3aWaHW .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNLR3aWaHW .dropdown-item:hover span {
  color: white;
}
.cid-tNLR3aWaHW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNLR3aWaHW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNLR3aWaHW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNLR3aWaHW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNLR3aWaHW .nav-link {
  position: relative;
}
.cid-tNLR3aWaHW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNLR3aWaHW .container {
    flex-wrap: wrap;
  }
}
.cid-tNLR3aWaHW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNLR3aWaHW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNLR3aWaHW .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNLR3aWaHW .dropdown-menu,
.cid-tNLR3aWaHW .navbar.opened {
  background: #000000 !important;
}
.cid-tNLR3aWaHW .nav-item:focus,
.cid-tNLR3aWaHW .nav-link:focus {
  outline: none;
}
.cid-tNLR3aWaHW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNLR3aWaHW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNLR3aWaHW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNLR3aWaHW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNLR3aWaHW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNLR3aWaHW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNLR3aWaHW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNLR3aWaHW .navbar.opened {
  transition: all 0.3s;
}
.cid-tNLR3aWaHW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNLR3aWaHW .navbar .navbar-logo img {
  width: auto;
}
.cid-tNLR3aWaHW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNLR3aWaHW .navbar.collapsed {
  justify-content: center;
}
.cid-tNLR3aWaHW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNLR3aWaHW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNLR3aWaHW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNLR3aWaHW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNLR3aWaHW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNLR3aWaHW .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-tNLR3aWaHW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNLR3aWaHW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNLR3aWaHW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNLR3aWaHW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNLR3aWaHW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNLR3aWaHW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNLR3aWaHW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNLR3aWaHW .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-tNLR3aWaHW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNLR3aWaHW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNLR3aWaHW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNLR3aWaHW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNLR3aWaHW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNLR3aWaHW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNLR3aWaHW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNLR3aWaHW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNLR3aWaHW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNLR3aWaHW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNLR3aWaHW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNLR3aWaHW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNLR3aWaHW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNLR3aWaHW .dropdown-item.active,
.cid-tNLR3aWaHW .dropdown-item:active {
  background-color: transparent;
}
.cid-tNLR3aWaHW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNLR3aWaHW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNLR3aWaHW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNLR3aWaHW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNLR3aWaHW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNLR3aWaHW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNLR3aWaHW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNLR3aWaHW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNLR3aWaHW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNLR3aWaHW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNLR3aWaHW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNLR3aWaHW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNLR3aWaHW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNLR3aWaHW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNLR3aWaHW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNLR3aWaHW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNLR3aWaHW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNLR3aWaHW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNLR3aWaHW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNLR3aWaHW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNLR3aWaHW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNLR3aWaHW .navbar {
    height: 70px;
  }
  .cid-tNLR3aWaHW .navbar.opened {
    height: auto;
  }
  .cid-tNLR3aWaHW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yP56Gyvq {
  background-image: url("../../../assets/images/sorghum-banner.webp");
}
.cid-u2yP56Gyvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yP56Gyvq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yP56Gyvq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yP56Gyvq .mbr-text,
.cid-u2yP56Gyvq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yP56Gyvq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNLR3bIqzE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNLR3bIqzE img,
.cid-tNLR3bIqzE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNLR3bIqzE .item:focus,
.cid-tNLR3bIqzE span:focus {
  outline: none;
}
.cid-tNLR3bIqzE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNLR3bIqzE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNLR3bIqzE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNLR3bIqzE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNLR3bIqzE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNLR3bIqzE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNLR3bIqzE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNLR3bIqzE .mbr-section-title {
  color: #ffffff;
}
.cid-tNLR3bIqzE .mbr-text,
.cid-tNLR3bIqzE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tNLR3bIqzE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNLR3bIqzE .item-subtitle {
  text-align: left;
}
.cid-tNLR3bIqzE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2OS2Jol3T {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2OS2Jol3T img,
.cid-v2OS2Jol3T .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2OS2Jol3T .item:focus,
.cid-v2OS2Jol3T span:focus {
  outline: none;
}
.cid-v2OS2Jol3T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2OS2Jol3T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2OS2Jol3T .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2OS2Jol3T .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2OS2Jol3T .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2OS2Jol3T .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2OS2Jol3T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2OS2Jol3T .mbr-section-title {
  color: #ffffff;
}
.cid-v2OS2Jol3T .mbr-text,
.cid-v2OS2Jol3T .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2OS2Jol3T .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2OS2Jol3T .item-subtitle {
  text-align: left;
}
.cid-v2OS2Jol3T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50nHSzmU6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v50nHSzmU6 img,
.cid-v50nHSzmU6 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v50nHSzmU6 .item:focus,
.cid-v50nHSzmU6 span:focus {
  outline: none;
}
.cid-v50nHSzmU6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50nHSzmU6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50nHSzmU6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v50nHSzmU6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50nHSzmU6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v50nHSzmU6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v50nHSzmU6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50nHSzmU6 .mbr-section-title {
  color: #ffffff;
}
.cid-v50nHSzmU6 .mbr-text,
.cid-v50nHSzmU6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v50nHSzmU6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v50nHSzmU6 .item-subtitle {
  text-align: left;
}
.cid-v50nHSzmU6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNng8ZuVX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNng8ZuVX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNng8ZuVX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNng8ZuVX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNng8ZuVX .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnf4vCJK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnf4vCJK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnf4vCJK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnf4vCJK .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnf4vCJK .number {
  color: #ffffff;
}
.cid-uYNnf4vCJK .period {
  display: block;
}
.cid-uYNnf4vCJK .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnf4vCJK .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnf4vCJK .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnf4vCJK .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnf4vCJK .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnf4vCJK .mbr-text {
  color: #ffffff;
}
.cid-uYNnf4vCJK .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnf4vCJK .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnf4vCJK .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnf4vCJK .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yP3wCDcT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yP3wCDcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yP3wCDcT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yP3wCDcT .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yP3wCDcT .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yP3wCDcT .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yP3wCDcT .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yP3wCDcT .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yP3wCDcT .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yP3wCDcT .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yP3wCDcT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yP3wCDcT .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yP3wCDcT [class^="socicon-"]:before,
.cid-u2yP3wCDcT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yP3wCDcT .mbr-section-title,
.cid-u2yP3wCDcT .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mRTMDGJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mRTMDGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mRTMDGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mRTMDGJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mRTMDGJ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mRTMDGJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mRTMDGJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mRTMDGJ .mbr-text {
  color: #ffffff;
}
.cid-u39mRTMDGJ .card-title {
  color: #ffffff;
}
.cid-u39mRTMDGJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mRTMDGJ .mbr-section-title {
  color: #ffffff;
}
.cid-u39mRTMDGJ .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tO4777tS1K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tO4777tS1K nav.navbar {
  position: fixed;
}
.cid-tO4777tS1K .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-tO4777tS1K .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tO4777tS1K .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tO4777tS1K .dropdown-item:hover,
.cid-tO4777tS1K .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tO4777tS1K .dropdown-item:hover span {
  color: white;
}
.cid-tO4777tS1K .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tO4777tS1K .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tO4777tS1K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tO4777tS1K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tO4777tS1K .nav-link {
  position: relative;
}
.cid-tO4777tS1K .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tO4777tS1K .container {
    flex-wrap: wrap;
  }
}
.cid-tO4777tS1K .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tO4777tS1K .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tO4777tS1K .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tO4777tS1K .dropdown-menu,
.cid-tO4777tS1K .navbar.opened {
  background: #000000 !important;
}
.cid-tO4777tS1K .nav-item:focus,
.cid-tO4777tS1K .nav-link:focus {
  outline: none;
}
.cid-tO4777tS1K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tO4777tS1K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tO4777tS1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tO4777tS1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tO4777tS1K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tO4777tS1K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tO4777tS1K .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tO4777tS1K .navbar.opened {
  transition: all 0.3s;
}
.cid-tO4777tS1K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tO4777tS1K .navbar .navbar-logo img {
  width: auto;
}
.cid-tO4777tS1K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tO4777tS1K .navbar.collapsed {
  justify-content: center;
}
.cid-tO4777tS1K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tO4777tS1K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tO4777tS1K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tO4777tS1K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tO4777tS1K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tO4777tS1K .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-tO4777tS1K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tO4777tS1K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tO4777tS1K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tO4777tS1K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tO4777tS1K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tO4777tS1K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tO4777tS1K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tO4777tS1K .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-tO4777tS1K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tO4777tS1K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tO4777tS1K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tO4777tS1K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tO4777tS1K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tO4777tS1K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tO4777tS1K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tO4777tS1K .navbar.navbar-short {
  min-height: 60px;
}
.cid-tO4777tS1K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tO4777tS1K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tO4777tS1K .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tO4777tS1K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tO4777tS1K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tO4777tS1K .dropdown-item.active,
.cid-tO4777tS1K .dropdown-item:active {
  background-color: transparent;
}
.cid-tO4777tS1K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tO4777tS1K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tO4777tS1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tO4777tS1K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tO4777tS1K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tO4777tS1K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tO4777tS1K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tO4777tS1K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tO4777tS1K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tO4777tS1K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tO4777tS1K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tO4777tS1K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO4777tS1K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tO4777tS1K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tO4777tS1K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO4777tS1K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tO4777tS1K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tO4777tS1K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tO4777tS1K .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tO4777tS1K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tO4777tS1K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tO4777tS1K .navbar {
    height: 70px;
  }
  .cid-tO4777tS1K .navbar.opened {
    height: auto;
  }
  .cid-tO4777tS1K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2ySFatQgN {
  background-image: url("../../../assets/images/natural-spices-banner.webp");
}
.cid-u2ySFatQgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ySFatQgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ySFatQgN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2ySFatQgN .mbr-text,
.cid-u2ySFatQgN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2ySFatQgN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tO47788JNf {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tO47788JNf img,
.cid-tO47788JNf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tO47788JNf .item:focus,
.cid-tO47788JNf span:focus {
  outline: none;
}
.cid-tO47788JNf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tO47788JNf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tO47788JNf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tO47788JNf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tO47788JNf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tO47788JNf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tO47788JNf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tO47788JNf .mbr-section-title {
  color: #ffffff;
}
.cid-tO47788JNf .mbr-text,
.cid-tO47788JNf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tO47788JNf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tO47788JNf .item-subtitle {
  text-align: left;
}
.cid-tO47788JNf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tO4778PmQX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tO4778PmQX img,
.cid-tO4778PmQX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tO4778PmQX .item:focus,
.cid-tO4778PmQX span:focus {
  outline: none;
}
.cid-tO4778PmQX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tO4778PmQX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tO4778PmQX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tO4778PmQX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tO4778PmQX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tO4778PmQX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tO4778PmQX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tO4778PmQX .mbr-section-title {
  color: #232323;
}
.cid-tO4778PmQX .mbr-text,
.cid-tO4778PmQX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tO4778PmQX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tO4778PmQX .item-subtitle {
  text-align: left;
}
.cid-tO4779jYVS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tO4779jYVS img,
.cid-tO4779jYVS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tO4779jYVS .item:focus,
.cid-tO4779jYVS span:focus {
  outline: none;
}
.cid-tO4779jYVS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tO4779jYVS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tO4779jYVS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tO4779jYVS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tO4779jYVS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tO4779jYVS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tO4779jYVS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tO4779jYVS .mbr-section-title {
  color: #232323;
}
.cid-tO4779jYVS .mbr-text,
.cid-tO4779jYVS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tO4779jYVS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tO4779jYVS .item-subtitle {
  text-align: left;
}
.cid-tO4779PMoy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tO4779PMoy img,
.cid-tO4779PMoy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tO4779PMoy .item:focus,
.cid-tO4779PMoy span:focus {
  outline: none;
}
.cid-tO4779PMoy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tO4779PMoy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tO4779PMoy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tO4779PMoy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tO4779PMoy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tO4779PMoy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tO4779PMoy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tO4779PMoy .mbr-section-title {
  color: #232323;
}
.cid-tO4779PMoy .mbr-text,
.cid-tO4779PMoy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tO4779PMoy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tO4779PMoy .item-subtitle {
  text-align: left;
}
.cid-uYNs2W0tah {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNs2W0tah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNs2W0tah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNs2W0tah .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNs2W0tah .mbr-section-title {
  color: #ffffff;
}
.cid-uYNs212tU6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNs212tU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNs212tU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNs212tU6 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNs212tU6 .number {
  color: #ffffff;
}
.cid-uYNs212tU6 .period {
  display: block;
}
.cid-uYNs212tU6 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNs212tU6 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNs212tU6 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNs212tU6 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNs212tU6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNs212tU6 .mbr-text {
  color: #ffffff;
}
.cid-uYNs212tU6 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNs212tU6 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNs212tU6 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNs212tU6 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2ySDdfj0b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2ySDdfj0b .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ySDdfj0b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ySDdfj0b .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2ySDdfj0b .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2ySDdfj0b .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2ySDdfj0b .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2ySDdfj0b .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2ySDdfj0b .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2ySDdfj0b .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2ySDdfj0b .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2ySDdfj0b .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2ySDdfj0b [class^="socicon-"]:before,
.cid-u2ySDdfj0b [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2ySDdfj0b .mbr-section-title,
.cid-u2ySDdfj0b .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nyG6OSu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nyG6OSu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nyG6OSu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nyG6OSu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nyG6OSu .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nyG6OSu .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nyG6OSu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nyG6OSu .mbr-text {
  color: #ffffff;
}
.cid-u39nyG6OSu .card-title {
  color: #ffffff;
}
.cid-u39nyG6OSu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nyG6OSu .mbr-section-title {
  color: #ffffff;
}
.cid-u39nyG6OSu .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOr8IarAEQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOr8IarAEQ nav.navbar {
  position: fixed;
}
.cid-tOr8IarAEQ .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-tOr8IarAEQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOr8IarAEQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOr8IarAEQ .dropdown-item:hover,
.cid-tOr8IarAEQ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOr8IarAEQ .dropdown-item:hover span {
  color: white;
}
.cid-tOr8IarAEQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOr8IarAEQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOr8IarAEQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOr8IarAEQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOr8IarAEQ .nav-link {
  position: relative;
}
.cid-tOr8IarAEQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOr8IarAEQ .container {
    flex-wrap: wrap;
  }
}
.cid-tOr8IarAEQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOr8IarAEQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOr8IarAEQ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOr8IarAEQ .dropdown-menu,
.cid-tOr8IarAEQ .navbar.opened {
  background: #000000 !important;
}
.cid-tOr8IarAEQ .nav-item:focus,
.cid-tOr8IarAEQ .nav-link:focus {
  outline: none;
}
.cid-tOr8IarAEQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOr8IarAEQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOr8IarAEQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOr8IarAEQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOr8IarAEQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOr8IarAEQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOr8IarAEQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOr8IarAEQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tOr8IarAEQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOr8IarAEQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tOr8IarAEQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOr8IarAEQ .navbar.collapsed {
  justify-content: center;
}
.cid-tOr8IarAEQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOr8IarAEQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOr8IarAEQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOr8IarAEQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOr8IarAEQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOr8IarAEQ .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-tOr8IarAEQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOr8IarAEQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOr8IarAEQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOr8IarAEQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOr8IarAEQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOr8IarAEQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOr8IarAEQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOr8IarAEQ .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-tOr8IarAEQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOr8IarAEQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOr8IarAEQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOr8IarAEQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOr8IarAEQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOr8IarAEQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOr8IarAEQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOr8IarAEQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOr8IarAEQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOr8IarAEQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOr8IarAEQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOr8IarAEQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOr8IarAEQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOr8IarAEQ .dropdown-item.active,
.cid-tOr8IarAEQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tOr8IarAEQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOr8IarAEQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOr8IarAEQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOr8IarAEQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOr8IarAEQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOr8IarAEQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOr8IarAEQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOr8IarAEQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOr8IarAEQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOr8IarAEQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOr8IarAEQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOr8IarAEQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOr8IarAEQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOr8IarAEQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOr8IarAEQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOr8IarAEQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOr8IarAEQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOr8IarAEQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOr8IarAEQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOr8IarAEQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOr8IarAEQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOr8IarAEQ .navbar {
    height: 70px;
  }
  .cid-tOr8IarAEQ .navbar.opened {
    height: auto;
  }
  .cid-tOr8IarAEQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vJnzCwx5 {
  background-image: url("../../../assets/images/photo-20200602-213643-696x392.webp");
}
.cid-u2vJnzCwx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vJnzCwx5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vJnzCwx5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vJnzCwx5 .mbr-text,
.cid-u2vJnzCwx5 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vJnzCwx5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOSXWyXO5D {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tOSXWyXO5D img,
.cid-tOSXWyXO5D .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tOSXWyXO5D .item:focus,
.cid-tOSXWyXO5D span:focus {
  outline: none;
}
.cid-tOSXWyXO5D .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOSXWyXO5D .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOSXWyXO5D .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tOSXWyXO5D .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOSXWyXO5D .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tOSXWyXO5D .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tOSXWyXO5D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOSXWyXO5D .mbr-section-title {
  color: #ffffff;
}
.cid-tOSXWyXO5D .mbr-text,
.cid-tOSXWyXO5D .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tOSXWyXO5D .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tOSXWyXO5D .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tOSXWyXO5D .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSeatV8kaL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSeatV8kaL img,
.cid-tSeatV8kaL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSeatV8kaL .item:focus,
.cid-tSeatV8kaL span:focus {
  outline: none;
}
.cid-tSeatV8kaL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSeatV8kaL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSeatV8kaL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSeatV8kaL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSeatV8kaL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSeatV8kaL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSeatV8kaL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSeatV8kaL .mbr-section-title {
  color: #232323;
}
.cid-tSeatV8kaL .mbr-text,
.cid-tSeatV8kaL .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSeatV8kaL .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSeatV8kaL .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSebVAAOAE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSebVAAOAE img,
.cid-tSebVAAOAE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSebVAAOAE .item:focus,
.cid-tSebVAAOAE span:focus {
  outline: none;
}
.cid-tSebVAAOAE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSebVAAOAE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSebVAAOAE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSebVAAOAE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSebVAAOAE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSebVAAOAE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSebVAAOAE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSebVAAOAE .mbr-section-title {
  color: #232323;
}
.cid-tSebVAAOAE .mbr-text,
.cid-tSebVAAOAE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSebVAAOAE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSebVAAOAE .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSebWhidp8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSebWhidp8 img,
.cid-tSebWhidp8 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSebWhidp8 .item:focus,
.cid-tSebWhidp8 span:focus {
  outline: none;
}
.cid-tSebWhidp8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSebWhidp8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSebWhidp8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSebWhidp8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSebWhidp8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSebWhidp8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSebWhidp8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSebWhidp8 .mbr-section-title {
  color: #232323;
}
.cid-tSebWhidp8 .mbr-text,
.cid-tSebWhidp8 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSebWhidp8 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSebWhidp8 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSebXkEI15 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSebXkEI15 img,
.cid-tSebXkEI15 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSebXkEI15 .item:focus,
.cid-tSebXkEI15 span:focus {
  outline: none;
}
.cid-tSebXkEI15 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSebXkEI15 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSebXkEI15 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSebXkEI15 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSebXkEI15 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSebXkEI15 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSebXkEI15 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSebXkEI15 .mbr-section-title {
  color: #232323;
}
.cid-tSebXkEI15 .mbr-text,
.cid-tSebXkEI15 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSebXkEI15 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSebXkEI15 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSebYcxAMf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSebYcxAMf img,
.cid-tSebYcxAMf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSebYcxAMf .item:focus,
.cid-tSebYcxAMf span:focus {
  outline: none;
}
.cid-tSebYcxAMf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSebYcxAMf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSebYcxAMf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSebYcxAMf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSebYcxAMf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSebYcxAMf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSebYcxAMf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSebYcxAMf .mbr-section-title {
  color: #232323;
}
.cid-tSebYcxAMf .mbr-text,
.cid-tSebYcxAMf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSebYcxAMf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSebYcxAMf .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSebZ14QyV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSebZ14QyV img,
.cid-tSebZ14QyV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSebZ14QyV .item:focus,
.cid-tSebZ14QyV span:focus {
  outline: none;
}
.cid-tSebZ14QyV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSebZ14QyV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSebZ14QyV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSebZ14QyV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSebZ14QyV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSebZ14QyV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSebZ14QyV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSebZ14QyV .mbr-section-title {
  color: #232323;
}
.cid-tSebZ14QyV .mbr-text,
.cid-tSebZ14QyV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSebZ14QyV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSebZ14QyV .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSiSVnw4Sc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSiSVnw4Sc img,
.cid-tSiSVnw4Sc .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSiSVnw4Sc .item:focus,
.cid-tSiSVnw4Sc span:focus {
  outline: none;
}
.cid-tSiSVnw4Sc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSiSVnw4Sc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSiSVnw4Sc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSiSVnw4Sc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSiSVnw4Sc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSiSVnw4Sc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSiSVnw4Sc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSiSVnw4Sc .mbr-section-title {
  color: #ffffff;
}
.cid-tSiSVnw4Sc .mbr-text,
.cid-tSiSVnw4Sc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSiSVnw4Sc .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSiSVnw4Sc .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tSiSVnw4Sc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSiSZjElAO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSiSZjElAO img,
.cid-tSiSZjElAO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSiSZjElAO .item:focus,
.cid-tSiSZjElAO span:focus {
  outline: none;
}
.cid-tSiSZjElAO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSiSZjElAO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSiSZjElAO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSiSZjElAO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSiSZjElAO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSiSZjElAO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSiSZjElAO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSiSZjElAO .mbr-section-title {
  color: #232323;
}
.cid-tSiSZjElAO .mbr-text,
.cid-tSiSZjElAO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSiSZjElAO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSiSZjElAO .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uYNaX4TxNM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNaX4TxNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaX4TxNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaX4TxNM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNaX4TxNM .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaVKByIx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNaVKByIx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaVKByIx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaVKByIx .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNaVKByIx .number {
  color: #ffffff;
}
.cid-uYNaVKByIx .period {
  display: block;
}
.cid-uYNaVKByIx .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNaVKByIx .period {
    font-size: 0.8rem;
  }
}
.cid-uYNaVKByIx .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNaVKByIx .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNaVKByIx .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaVKByIx .mbr-text {
  color: #ffffff;
}
.cid-uYNaVKByIx .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNaVKByIx .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNaVKByIx .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNaVKByIx .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w2hwmXVI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w2hwmXVI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w2hwmXVI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w2hwmXVI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w2hwmXVI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w2hwmXVI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w2hwmXVI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w2hwmXVI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w2hwmXVI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w2hwmXVI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w2hwmXVI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w2hwmXVI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w2hwmXVI [class^="socicon-"]:before,
.cid-u2w2hwmXVI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w2hwmXVI .mbr-section-title,
.cid-u2w2hwmXVI .mbr-social-likes {
  color: #ffffff;
}
.cid-u39eh39QD1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39eh39QD1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39eh39QD1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39eh39QD1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39eh39QD1 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39eh39QD1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39eh39QD1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39eh39QD1 .mbr-text {
  color: #ffffff;
}
.cid-u39eh39QD1 .card-title {
  color: #ffffff;
}
.cid-u39eh39QD1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39eh39QD1 .mbr-section-title {
  color: #ffffff;
}
.cid-u39eh39QD1 .link {
  color: #4479d9;
}
.cid-tOr8Ic72Ek {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOr8Ic72Ek .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOr8Ic72Ek .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOr8Ic72Ek .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOr8Ic72Ek .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOr8Ic72Ek .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOr8Ic72Ek .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOr8Ic72Ek div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOr8Ic72Ek .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOl0PJygla {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOl0PJygla nav.navbar {
  position: fixed;
}
.cid-tOl0PJygla .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-tOl0PJygla .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOl0PJygla .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOl0PJygla .dropdown-item:hover,
.cid-tOl0PJygla .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOl0PJygla .dropdown-item:hover span {
  color: white;
}
.cid-tOl0PJygla .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOl0PJygla .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOl0PJygla .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOl0PJygla .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOl0PJygla .nav-link {
  position: relative;
}
.cid-tOl0PJygla .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOl0PJygla .container {
    flex-wrap: wrap;
  }
}
.cid-tOl0PJygla .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOl0PJygla .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOl0PJygla .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOl0PJygla .dropdown-menu,
.cid-tOl0PJygla .navbar.opened {
  background: #000000 !important;
}
.cid-tOl0PJygla .nav-item:focus,
.cid-tOl0PJygla .nav-link:focus {
  outline: none;
}
.cid-tOl0PJygla .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOl0PJygla .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOl0PJygla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOl0PJygla .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOl0PJygla .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOl0PJygla .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOl0PJygla .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOl0PJygla .navbar.opened {
  transition: all 0.3s;
}
.cid-tOl0PJygla .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOl0PJygla .navbar .navbar-logo img {
  width: auto;
}
.cid-tOl0PJygla .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOl0PJygla .navbar.collapsed {
  justify-content: center;
}
.cid-tOl0PJygla .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOl0PJygla .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOl0PJygla .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOl0PJygla .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOl0PJygla .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOl0PJygla .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-tOl0PJygla .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOl0PJygla .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOl0PJygla .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOl0PJygla .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOl0PJygla .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOl0PJygla .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOl0PJygla .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOl0PJygla .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-tOl0PJygla .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOl0PJygla .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOl0PJygla .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOl0PJygla .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOl0PJygla .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOl0PJygla .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOl0PJygla .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOl0PJygla .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOl0PJygla .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOl0PJygla .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOl0PJygla .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOl0PJygla .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOl0PJygla .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOl0PJygla .dropdown-item.active,
.cid-tOl0PJygla .dropdown-item:active {
  background-color: transparent;
}
.cid-tOl0PJygla .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOl0PJygla .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOl0PJygla .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOl0PJygla .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOl0PJygla .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOl0PJygla .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOl0PJygla ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOl0PJygla .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOl0PJygla button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOl0PJygla button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOl0PJygla button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOl0PJygla button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOl0PJygla button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOl0PJygla button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOl0PJygla nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOl0PJygla nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOl0PJygla nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOl0PJygla nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOl0PJygla .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOl0PJygla a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOl0PJygla .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOl0PJygla .navbar {
    height: 70px;
  }
  .cid-tOl0PJygla .navbar.opened {
    height: auto;
  }
  .cid-tOl0PJygla .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vL4vgXg7 {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vL4vgXg7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vL4vgXg7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vL4vgXg7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vL4vgXg7 .mbr-text,
.cid-u2vL4vgXg7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vL4vgXg7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZtjhTslpt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tZtjhTslpt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZtjhTslpt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZtjhTslpt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZtjhTslpt .mbr-section-title {
  color: #ffffff;
}
.cid-uYNb6pRXlc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNb6pRXlc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNb6pRXlc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNb6pRXlc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNb6pRXlc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNb4SeGj3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNb4SeGj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNb4SeGj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNb4SeGj3 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNb4SeGj3 .number {
  color: #ffffff;
}
.cid-uYNb4SeGj3 .period {
  display: block;
}
.cid-uYNb4SeGj3 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNb4SeGj3 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNb4SeGj3 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNb4SeGj3 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNb4SeGj3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNb4SeGj3 .mbr-text {
  color: #ffffff;
}
.cid-uYNb4SeGj3 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNb4SeGj3 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNb4SeGj3 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNb4SeGj3 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w2ooG3w3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w2ooG3w3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w2ooG3w3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w2ooG3w3 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w2ooG3w3 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w2ooG3w3 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w2ooG3w3 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w2ooG3w3 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w2ooG3w3 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w2ooG3w3 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w2ooG3w3 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w2ooG3w3 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w2ooG3w3 [class^="socicon-"]:before,
.cid-u2w2ooG3w3 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w2ooG3w3 .mbr-section-title,
.cid-u2w2ooG3w3 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39esDZmhS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39esDZmhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39esDZmhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39esDZmhS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39esDZmhS .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39esDZmhS .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39esDZmhS .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39esDZmhS .mbr-text {
  color: #ffffff;
}
.cid-u39esDZmhS .card-title {
  color: #ffffff;
}
.cid-u39esDZmhS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39esDZmhS .mbr-section-title {
  color: #ffffff;
}
.cid-u39esDZmhS .link {
  color: #4479d9;
}
.cid-tOl0PKWKKp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOl0PKWKKp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOl0PKWKKp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOl0PKWKKp .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOl0PKWKKp .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOl0PKWKKp .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOl0PKWKKp .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOl0PKWKKp div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOl0PKWKKp .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOkY4iQ864 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOkY4iQ864 nav.navbar {
  position: fixed;
}
.cid-tOkY4iQ864 .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-tOkY4iQ864 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOkY4iQ864 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOkY4iQ864 .dropdown-item:hover,
.cid-tOkY4iQ864 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOkY4iQ864 .dropdown-item:hover span {
  color: white;
}
.cid-tOkY4iQ864 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOkY4iQ864 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOkY4iQ864 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOkY4iQ864 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOkY4iQ864 .nav-link {
  position: relative;
}
.cid-tOkY4iQ864 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOkY4iQ864 .container {
    flex-wrap: wrap;
  }
}
.cid-tOkY4iQ864 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOkY4iQ864 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOkY4iQ864 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOkY4iQ864 .dropdown-menu,
.cid-tOkY4iQ864 .navbar.opened {
  background: #000000 !important;
}
.cid-tOkY4iQ864 .nav-item:focus,
.cid-tOkY4iQ864 .nav-link:focus {
  outline: none;
}
.cid-tOkY4iQ864 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOkY4iQ864 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOkY4iQ864 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOkY4iQ864 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOkY4iQ864 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOkY4iQ864 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOkY4iQ864 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOkY4iQ864 .navbar.opened {
  transition: all 0.3s;
}
.cid-tOkY4iQ864 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOkY4iQ864 .navbar .navbar-logo img {
  width: auto;
}
.cid-tOkY4iQ864 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOkY4iQ864 .navbar.collapsed {
  justify-content: center;
}
.cid-tOkY4iQ864 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOkY4iQ864 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOkY4iQ864 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOkY4iQ864 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOkY4iQ864 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOkY4iQ864 .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-tOkY4iQ864 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOkY4iQ864 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOkY4iQ864 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOkY4iQ864 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOkY4iQ864 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOkY4iQ864 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOkY4iQ864 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOkY4iQ864 .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-tOkY4iQ864 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOkY4iQ864 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOkY4iQ864 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOkY4iQ864 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOkY4iQ864 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOkY4iQ864 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOkY4iQ864 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOkY4iQ864 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOkY4iQ864 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOkY4iQ864 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOkY4iQ864 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOkY4iQ864 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOkY4iQ864 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOkY4iQ864 .dropdown-item.active,
.cid-tOkY4iQ864 .dropdown-item:active {
  background-color: transparent;
}
.cid-tOkY4iQ864 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOkY4iQ864 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOkY4iQ864 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOkY4iQ864 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOkY4iQ864 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOkY4iQ864 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOkY4iQ864 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOkY4iQ864 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOkY4iQ864 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOkY4iQ864 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOkY4iQ864 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOkY4iQ864 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOkY4iQ864 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOkY4iQ864 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOkY4iQ864 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOkY4iQ864 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOkY4iQ864 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOkY4iQ864 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOkY4iQ864 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOkY4iQ864 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOkY4iQ864 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOkY4iQ864 .navbar {
    height: 70px;
  }
  .cid-tOkY4iQ864 .navbar.opened {
    height: auto;
  }
  .cid-tOkY4iQ864 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vLtzJYHL {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vLtzJYHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vLtzJYHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vLtzJYHL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vLtzJYHL .mbr-text,
.cid-u2vLtzJYHL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vLtzJYHL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZtjPIvy6H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tZtjPIvy6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZtjPIvy6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZtjPIvy6H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZtjPIvy6H .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbrNABFQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbrNABFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbrNABFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbrNABFQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbrNABFQ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbqWsP05 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbqWsP05 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbqWsP05 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbqWsP05 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbqWsP05 .number {
  color: #ffffff;
}
.cid-uYNbqWsP05 .period {
  display: block;
}
.cid-uYNbqWsP05 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbqWsP05 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbqWsP05 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbqWsP05 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbqWsP05 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbqWsP05 .mbr-text {
  color: #ffffff;
}
.cid-uYNbqWsP05 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbqWsP05 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbqWsP05 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbqWsP05 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w2tOSDPq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w2tOSDPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w2tOSDPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w2tOSDPq .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w2tOSDPq .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w2tOSDPq .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w2tOSDPq .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w2tOSDPq .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w2tOSDPq .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w2tOSDPq .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w2tOSDPq .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w2tOSDPq .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w2tOSDPq [class^="socicon-"]:before,
.cid-u2w2tOSDPq [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w2tOSDPq .mbr-section-title,
.cid-u2w2tOSDPq .mbr-social-likes {
  color: #ffffff;
}
.cid-u39ewE4rbH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39ewE4rbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39ewE4rbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39ewE4rbH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39ewE4rbH .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39ewE4rbH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39ewE4rbH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39ewE4rbH .mbr-text {
  color: #ffffff;
}
.cid-u39ewE4rbH .card-title {
  color: #ffffff;
}
.cid-u39ewE4rbH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39ewE4rbH .mbr-section-title {
  color: #ffffff;
}
.cid-u39ewE4rbH .link {
  color: #4479d9;
}
.cid-tOkY4k0qFh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOkY4k0qFh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOkY4k0qFh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOkY4k0qFh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOkY4k0qFh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOkY4k0qFh .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOkY4k0qFh .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOkY4k0qFh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOkY4k0qFh .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOkUFp9BYC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOkUFp9BYC nav.navbar {
  position: fixed;
}
.cid-tOkUFp9BYC .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-tOkUFp9BYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOkUFp9BYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOkUFp9BYC .dropdown-item:hover,
.cid-tOkUFp9BYC .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOkUFp9BYC .dropdown-item:hover span {
  color: white;
}
.cid-tOkUFp9BYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOkUFp9BYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOkUFp9BYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOkUFp9BYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOkUFp9BYC .nav-link {
  position: relative;
}
.cid-tOkUFp9BYC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOkUFp9BYC .container {
    flex-wrap: wrap;
  }
}
.cid-tOkUFp9BYC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOkUFp9BYC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOkUFp9BYC .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOkUFp9BYC .dropdown-menu,
.cid-tOkUFp9BYC .navbar.opened {
  background: #000000 !important;
}
.cid-tOkUFp9BYC .nav-item:focus,
.cid-tOkUFp9BYC .nav-link:focus {
  outline: none;
}
.cid-tOkUFp9BYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOkUFp9BYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOkUFp9BYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOkUFp9BYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOkUFp9BYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOkUFp9BYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOkUFp9BYC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOkUFp9BYC .navbar.opened {
  transition: all 0.3s;
}
.cid-tOkUFp9BYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOkUFp9BYC .navbar .navbar-logo img {
  width: auto;
}
.cid-tOkUFp9BYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOkUFp9BYC .navbar.collapsed {
  justify-content: center;
}
.cid-tOkUFp9BYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOkUFp9BYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOkUFp9BYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOkUFp9BYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOkUFp9BYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOkUFp9BYC .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-tOkUFp9BYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOkUFp9BYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOkUFp9BYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOkUFp9BYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOkUFp9BYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOkUFp9BYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOkUFp9BYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOkUFp9BYC .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-tOkUFp9BYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOkUFp9BYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOkUFp9BYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOkUFp9BYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOkUFp9BYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOkUFp9BYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOkUFp9BYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOkUFp9BYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOkUFp9BYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOkUFp9BYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOkUFp9BYC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOkUFp9BYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOkUFp9BYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOkUFp9BYC .dropdown-item.active,
.cid-tOkUFp9BYC .dropdown-item:active {
  background-color: transparent;
}
.cid-tOkUFp9BYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOkUFp9BYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOkUFp9BYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOkUFp9BYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOkUFp9BYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOkUFp9BYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOkUFp9BYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOkUFp9BYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOkUFp9BYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOkUFp9BYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOkUFp9BYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOkUFp9BYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOkUFp9BYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOkUFp9BYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOkUFp9BYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOkUFp9BYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOkUFp9BYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOkUFp9BYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOkUFp9BYC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOkUFp9BYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOkUFp9BYC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOkUFp9BYC .navbar {
    height: 70px;
  }
  .cid-tOkUFp9BYC .navbar.opened {
    height: auto;
  }
  .cid-tOkUFp9BYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vM08z67a {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vM08z67a .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vM08z67a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vM08z67a .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vM08z67a .mbr-text,
.cid-u2vM08z67a .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vM08z67a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZtl93Qr5a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tZtl93Qr5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZtl93Qr5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZtl93Qr5a .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZtl93Qr5a .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbypOr0u {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbypOr0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbypOr0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbypOr0u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbypOr0u .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbxlkzUL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbxlkzUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbxlkzUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbxlkzUL .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbxlkzUL .number {
  color: #ffffff;
}
.cid-uYNbxlkzUL .period {
  display: block;
}
.cid-uYNbxlkzUL .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbxlkzUL .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbxlkzUL .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbxlkzUL .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbxlkzUL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbxlkzUL .mbr-text {
  color: #ffffff;
}
.cid-uYNbxlkzUL .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbxlkzUL .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbxlkzUL .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbxlkzUL .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w2AWowII {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w2AWowII .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w2AWowII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w2AWowII .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w2AWowII .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w2AWowII .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w2AWowII .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w2AWowII .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w2AWowII .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w2AWowII .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w2AWowII .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w2AWowII .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w2AWowII [class^="socicon-"]:before,
.cid-u2w2AWowII [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w2AWowII .mbr-section-title,
.cid-u2w2AWowII .mbr-social-likes {
  color: #ffffff;
}
.cid-u39eBqfv3H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39eBqfv3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39eBqfv3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39eBqfv3H .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39eBqfv3H .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39eBqfv3H .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39eBqfv3H .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39eBqfv3H .mbr-text {
  color: #ffffff;
}
.cid-u39eBqfv3H .card-title {
  color: #ffffff;
}
.cid-u39eBqfv3H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39eBqfv3H .mbr-section-title {
  color: #ffffff;
}
.cid-u39eBqfv3H .link {
  color: #4479d9;
}
.cid-tOkUFqkdEV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOkUFqkdEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOkUFqkdEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOkUFqkdEV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOkUFqkdEV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOkUFqkdEV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOkUFqkdEV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOkUFqkdEV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOkUFqkdEV .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOg6KRtkDm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOg6KRtkDm nav.navbar {
  position: fixed;
}
.cid-tOg6KRtkDm .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-tOg6KRtkDm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOg6KRtkDm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOg6KRtkDm .dropdown-item:hover,
.cid-tOg6KRtkDm .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOg6KRtkDm .dropdown-item:hover span {
  color: white;
}
.cid-tOg6KRtkDm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOg6KRtkDm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOg6KRtkDm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOg6KRtkDm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOg6KRtkDm .nav-link {
  position: relative;
}
.cid-tOg6KRtkDm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOg6KRtkDm .container {
    flex-wrap: wrap;
  }
}
.cid-tOg6KRtkDm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOg6KRtkDm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOg6KRtkDm .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOg6KRtkDm .dropdown-menu,
.cid-tOg6KRtkDm .navbar.opened {
  background: #000000 !important;
}
.cid-tOg6KRtkDm .nav-item:focus,
.cid-tOg6KRtkDm .nav-link:focus {
  outline: none;
}
.cid-tOg6KRtkDm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOg6KRtkDm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOg6KRtkDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOg6KRtkDm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOg6KRtkDm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOg6KRtkDm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOg6KRtkDm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOg6KRtkDm .navbar.opened {
  transition: all 0.3s;
}
.cid-tOg6KRtkDm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOg6KRtkDm .navbar .navbar-logo img {
  width: auto;
}
.cid-tOg6KRtkDm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOg6KRtkDm .navbar.collapsed {
  justify-content: center;
}
.cid-tOg6KRtkDm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOg6KRtkDm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOg6KRtkDm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOg6KRtkDm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOg6KRtkDm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOg6KRtkDm .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-tOg6KRtkDm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOg6KRtkDm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOg6KRtkDm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOg6KRtkDm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOg6KRtkDm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOg6KRtkDm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOg6KRtkDm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOg6KRtkDm .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-tOg6KRtkDm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOg6KRtkDm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOg6KRtkDm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOg6KRtkDm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOg6KRtkDm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOg6KRtkDm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOg6KRtkDm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOg6KRtkDm .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOg6KRtkDm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOg6KRtkDm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOg6KRtkDm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOg6KRtkDm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOg6KRtkDm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOg6KRtkDm .dropdown-item.active,
.cid-tOg6KRtkDm .dropdown-item:active {
  background-color: transparent;
}
.cid-tOg6KRtkDm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOg6KRtkDm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOg6KRtkDm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOg6KRtkDm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOg6KRtkDm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOg6KRtkDm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOg6KRtkDm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOg6KRtkDm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOg6KRtkDm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOg6KRtkDm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOg6KRtkDm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOg6KRtkDm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOg6KRtkDm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOg6KRtkDm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOg6KRtkDm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOg6KRtkDm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOg6KRtkDm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOg6KRtkDm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOg6KRtkDm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOg6KRtkDm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOg6KRtkDm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOg6KRtkDm .navbar {
    height: 70px;
  }
  .cid-tOg6KRtkDm .navbar.opened {
    height: auto;
  }
  .cid-tOg6KRtkDm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vPSPx6jM {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vPSPx6jM .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vPSPx6jM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vPSPx6jM .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vPSPx6jM .mbr-text,
.cid-u2vPSPx6jM .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vPSPx6jM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZtkAIwxRi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tZtkAIwxRi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZtkAIwxRi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tZtkAIwxRi .mbr-section-title {
  color: #ffffff;
}
.cid-tZtkAIwxRi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbFE6ZAL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbFE6ZAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbFE6ZAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbFE6ZAL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbFE6ZAL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbEIgile {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbEIgile .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbEIgile .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbEIgile .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbEIgile .number {
  color: #ffffff;
}
.cid-uYNbEIgile .period {
  display: block;
}
.cid-uYNbEIgile .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbEIgile .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbEIgile .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbEIgile .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbEIgile .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbEIgile .mbr-text {
  color: #ffffff;
}
.cid-uYNbEIgile .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbEIgile .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbEIgile .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbEIgile .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w2O1Qrnf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w2O1Qrnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w2O1Qrnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w2O1Qrnf .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w2O1Qrnf .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w2O1Qrnf .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w2O1Qrnf .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w2O1Qrnf .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w2O1Qrnf .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w2O1Qrnf .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w2O1Qrnf .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w2O1Qrnf .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w2O1Qrnf [class^="socicon-"]:before,
.cid-u2w2O1Qrnf [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w2O1Qrnf .mbr-section-title,
.cid-u2w2O1Qrnf .mbr-social-likes {
  color: #ffffff;
}
.cid-u39eFPqCUZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39eFPqCUZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39eFPqCUZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39eFPqCUZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39eFPqCUZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39eFPqCUZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39eFPqCUZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39eFPqCUZ .mbr-text {
  color: #ffffff;
}
.cid-u39eFPqCUZ .card-title {
  color: #ffffff;
}
.cid-u39eFPqCUZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39eFPqCUZ .mbr-section-title {
  color: #ffffff;
}
.cid-u39eFPqCUZ .link {
  color: #4479d9;
}
.cid-tOg6KTjxFa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOg6KTjxFa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOg6KTjxFa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOg6KTjxFa .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOg6KTjxFa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOg6KTjxFa .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOg6KTjxFa .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOg6KTjxFa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOg6KTjxFa .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tN7PRnWSzY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tN7PRnWSzY nav.navbar {
  position: fixed;
}
.cid-tN7PRnWSzY .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-tN7PRnWSzY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tN7PRnWSzY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tN7PRnWSzY .dropdown-item:hover,
.cid-tN7PRnWSzY .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tN7PRnWSzY .dropdown-item:hover span {
  color: white;
}
.cid-tN7PRnWSzY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tN7PRnWSzY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tN7PRnWSzY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tN7PRnWSzY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tN7PRnWSzY .nav-link {
  position: relative;
}
.cid-tN7PRnWSzY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tN7PRnWSzY .container {
    flex-wrap: wrap;
  }
}
.cid-tN7PRnWSzY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tN7PRnWSzY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tN7PRnWSzY .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tN7PRnWSzY .dropdown-menu,
.cid-tN7PRnWSzY .navbar.opened {
  background: #000000 !important;
}
.cid-tN7PRnWSzY .nav-item:focus,
.cid-tN7PRnWSzY .nav-link:focus {
  outline: none;
}
.cid-tN7PRnWSzY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tN7PRnWSzY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tN7PRnWSzY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tN7PRnWSzY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tN7PRnWSzY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tN7PRnWSzY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tN7PRnWSzY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tN7PRnWSzY .navbar.opened {
  transition: all 0.3s;
}
.cid-tN7PRnWSzY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tN7PRnWSzY .navbar .navbar-logo img {
  width: auto;
}
.cid-tN7PRnWSzY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tN7PRnWSzY .navbar.collapsed {
  justify-content: center;
}
.cid-tN7PRnWSzY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tN7PRnWSzY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tN7PRnWSzY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tN7PRnWSzY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tN7PRnWSzY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tN7PRnWSzY .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-tN7PRnWSzY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tN7PRnWSzY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tN7PRnWSzY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tN7PRnWSzY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tN7PRnWSzY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tN7PRnWSzY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tN7PRnWSzY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tN7PRnWSzY .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-tN7PRnWSzY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tN7PRnWSzY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tN7PRnWSzY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tN7PRnWSzY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tN7PRnWSzY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tN7PRnWSzY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tN7PRnWSzY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tN7PRnWSzY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tN7PRnWSzY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tN7PRnWSzY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tN7PRnWSzY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tN7PRnWSzY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tN7PRnWSzY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tN7PRnWSzY .dropdown-item.active,
.cid-tN7PRnWSzY .dropdown-item:active {
  background-color: transparent;
}
.cid-tN7PRnWSzY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tN7PRnWSzY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tN7PRnWSzY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tN7PRnWSzY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tN7PRnWSzY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tN7PRnWSzY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tN7PRnWSzY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tN7PRnWSzY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tN7PRnWSzY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tN7PRnWSzY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tN7PRnWSzY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tN7PRnWSzY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tN7PRnWSzY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tN7PRnWSzY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tN7PRnWSzY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tN7PRnWSzY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tN7PRnWSzY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tN7PRnWSzY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tN7PRnWSzY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tN7PRnWSzY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tN7PRnWSzY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tN7PRnWSzY .navbar {
    height: 70px;
  }
  .cid-tN7PRnWSzY .navbar.opened {
    height: auto;
  }
  .cid-tN7PRnWSzY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vWTk2BoT {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vWTk2BoT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vWTk2BoT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vWTk2BoT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vWTk2BoT .mbr-text,
.cid-u2vWTk2BoT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vWTk2BoT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u39eNHe50V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39eNHe50V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39eNHe50V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39eNHe50V .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39eNHe50V .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39eNHe50V .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39eNHe50V .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39eNHe50V .mbr-text {
  color: #ffffff;
}
.cid-u39eNHe50V .card-title {
  color: #ffffff;
}
.cid-u39eNHe50V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39eNHe50V .mbr-section-title {
  color: #ffffff;
}
.cid-u39eNHe50V .link {
  color: #4479d9;
}
.cid-uYNbOQidYc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbOQidYc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbOQidYc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbOQidYc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbOQidYc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbNY0rlx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbNY0rlx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbNY0rlx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbNY0rlx .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbNY0rlx .number {
  color: #ffffff;
}
.cid-uYNbNY0rlx .period {
  display: block;
}
.cid-uYNbNY0rlx .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbNY0rlx .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbNY0rlx .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbNY0rlx .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbNY0rlx .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbNY0rlx .mbr-text {
  color: #ffffff;
}
.cid-uYNbNY0rlx .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbNY0rlx .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbNY0rlx .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbNY0rlx .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w3I7P3yQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w3I7P3yQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w3I7P3yQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w3I7P3yQ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w3I7P3yQ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w3I7P3yQ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w3I7P3yQ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w3I7P3yQ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w3I7P3yQ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w3I7P3yQ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w3I7P3yQ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w3I7P3yQ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w3I7P3yQ [class^="socicon-"]:before,
.cid-u2w3I7P3yQ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w3I7P3yQ .mbr-section-title,
.cid-u2w3I7P3yQ .mbr-social-likes {
  color: #ffffff;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tN7Cj3UkQB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tN7Cj3UkQB nav.navbar {
  position: fixed;
}
.cid-tN7Cj3UkQB .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-tN7Cj3UkQB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tN7Cj3UkQB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tN7Cj3UkQB .dropdown-item:hover,
.cid-tN7Cj3UkQB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tN7Cj3UkQB .dropdown-item:hover span {
  color: white;
}
.cid-tN7Cj3UkQB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tN7Cj3UkQB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tN7Cj3UkQB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tN7Cj3UkQB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tN7Cj3UkQB .nav-link {
  position: relative;
}
.cid-tN7Cj3UkQB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tN7Cj3UkQB .container {
    flex-wrap: wrap;
  }
}
.cid-tN7Cj3UkQB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tN7Cj3UkQB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tN7Cj3UkQB .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tN7Cj3UkQB .dropdown-menu,
.cid-tN7Cj3UkQB .navbar.opened {
  background: #000000 !important;
}
.cid-tN7Cj3UkQB .nav-item:focus,
.cid-tN7Cj3UkQB .nav-link:focus {
  outline: none;
}
.cid-tN7Cj3UkQB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tN7Cj3UkQB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tN7Cj3UkQB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tN7Cj3UkQB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tN7Cj3UkQB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tN7Cj3UkQB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tN7Cj3UkQB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tN7Cj3UkQB .navbar.opened {
  transition: all 0.3s;
}
.cid-tN7Cj3UkQB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tN7Cj3UkQB .navbar .navbar-logo img {
  width: auto;
}
.cid-tN7Cj3UkQB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tN7Cj3UkQB .navbar.collapsed {
  justify-content: center;
}
.cid-tN7Cj3UkQB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tN7Cj3UkQB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tN7Cj3UkQB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tN7Cj3UkQB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tN7Cj3UkQB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tN7Cj3UkQB .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-tN7Cj3UkQB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tN7Cj3UkQB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tN7Cj3UkQB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tN7Cj3UkQB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tN7Cj3UkQB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tN7Cj3UkQB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tN7Cj3UkQB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tN7Cj3UkQB .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-tN7Cj3UkQB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tN7Cj3UkQB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tN7Cj3UkQB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tN7Cj3UkQB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tN7Cj3UkQB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tN7Cj3UkQB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tN7Cj3UkQB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tN7Cj3UkQB .navbar.navbar-short {
  min-height: 60px;
}
.cid-tN7Cj3UkQB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tN7Cj3UkQB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tN7Cj3UkQB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tN7Cj3UkQB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tN7Cj3UkQB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tN7Cj3UkQB .dropdown-item.active,
.cid-tN7Cj3UkQB .dropdown-item:active {
  background-color: transparent;
}
.cid-tN7Cj3UkQB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tN7Cj3UkQB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tN7Cj3UkQB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tN7Cj3UkQB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tN7Cj3UkQB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tN7Cj3UkQB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tN7Cj3UkQB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tN7Cj3UkQB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tN7Cj3UkQB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tN7Cj3UkQB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tN7Cj3UkQB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tN7Cj3UkQB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tN7Cj3UkQB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tN7Cj3UkQB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tN7Cj3UkQB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tN7Cj3UkQB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tN7Cj3UkQB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tN7Cj3UkQB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tN7Cj3UkQB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tN7Cj3UkQB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tN7Cj3UkQB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tN7Cj3UkQB .navbar {
    height: 70px;
  }
  .cid-tN7Cj3UkQB .navbar.opened {
    height: auto;
  }
  .cid-tN7Cj3UkQB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vYSrd9gD {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u2vYSrd9gD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vYSrd9gD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vYSrd9gD .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vYSrd9gD .mbr-text,
.cid-u2vYSrd9gD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vYSrd9gD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tN7CLEDyn7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tN7CLEDyn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN7CLEDyn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN7CLEDyn7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tN7CLEDyn7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbTJFxta {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNbTJFxta .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbTJFxta .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbTJFxta .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNbTJFxta .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbSU8y74 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNbSU8y74 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNbSU8y74 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNbSU8y74 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNbSU8y74 .number {
  color: #ffffff;
}
.cid-uYNbSU8y74 .period {
  display: block;
}
.cid-uYNbSU8y74 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNbSU8y74 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNbSU8y74 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNbSU8y74 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNbSU8y74 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNbSU8y74 .mbr-text {
  color: #ffffff;
}
.cid-uYNbSU8y74 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNbSU8y74 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNbSU8y74 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNbSU8y74 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w3ZN6Vtt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w3ZN6Vtt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w3ZN6Vtt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w3ZN6Vtt .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w3ZN6Vtt .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w3ZN6Vtt .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w3ZN6Vtt .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w3ZN6Vtt .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w3ZN6Vtt .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w3ZN6Vtt .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w3ZN6Vtt .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w3ZN6Vtt .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w3ZN6Vtt [class^="socicon-"]:before,
.cid-u2w3ZN6Vtt [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w3ZN6Vtt .mbr-section-title,
.cid-u2w3ZN6Vtt .mbr-social-likes {
  color: #ffffff;
}
.cid-u39jRsSL0l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39jRsSL0l .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39jRsSL0l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39jRsSL0l .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39jRsSL0l .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39jRsSL0l .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39jRsSL0l .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39jRsSL0l .mbr-text {
  color: #ffffff;
}
.cid-u39jRsSL0l .card-title {
  color: #ffffff;
}
.cid-u39jRsSL0l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39jRsSL0l .mbr-section-title {
  color: #ffffff;
}
.cid-u39jRsSL0l .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNH6r19DrS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNH6r19DrS nav.navbar {
  position: fixed;
}
.cid-tNH6r19DrS .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-tNH6r19DrS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNH6r19DrS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNH6r19DrS .dropdown-item:hover,
.cid-tNH6r19DrS .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNH6r19DrS .dropdown-item:hover span {
  color: white;
}
.cid-tNH6r19DrS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNH6r19DrS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNH6r19DrS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNH6r19DrS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNH6r19DrS .nav-link {
  position: relative;
}
.cid-tNH6r19DrS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNH6r19DrS .container {
    flex-wrap: wrap;
  }
}
.cid-tNH6r19DrS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNH6r19DrS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNH6r19DrS .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNH6r19DrS .dropdown-menu,
.cid-tNH6r19DrS .navbar.opened {
  background: #000000 !important;
}
.cid-tNH6r19DrS .nav-item:focus,
.cid-tNH6r19DrS .nav-link:focus {
  outline: none;
}
.cid-tNH6r19DrS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNH6r19DrS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNH6r19DrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNH6r19DrS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNH6r19DrS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNH6r19DrS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNH6r19DrS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNH6r19DrS .navbar.opened {
  transition: all 0.3s;
}
.cid-tNH6r19DrS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNH6r19DrS .navbar .navbar-logo img {
  width: auto;
}
.cid-tNH6r19DrS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNH6r19DrS .navbar.collapsed {
  justify-content: center;
}
.cid-tNH6r19DrS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNH6r19DrS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNH6r19DrS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNH6r19DrS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNH6r19DrS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNH6r19DrS .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-tNH6r19DrS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNH6r19DrS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNH6r19DrS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNH6r19DrS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNH6r19DrS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNH6r19DrS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNH6r19DrS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNH6r19DrS .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-tNH6r19DrS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNH6r19DrS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNH6r19DrS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNH6r19DrS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNH6r19DrS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNH6r19DrS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNH6r19DrS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNH6r19DrS .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNH6r19DrS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNH6r19DrS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNH6r19DrS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNH6r19DrS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNH6r19DrS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNH6r19DrS .dropdown-item.active,
.cid-tNH6r19DrS .dropdown-item:active {
  background-color: transparent;
}
.cid-tNH6r19DrS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNH6r19DrS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNH6r19DrS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNH6r19DrS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNH6r19DrS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNH6r19DrS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNH6r19DrS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNH6r19DrS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNH6r19DrS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNH6r19DrS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNH6r19DrS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNH6r19DrS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNH6r19DrS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNH6r19DrS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNH6r19DrS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNH6r19DrS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNH6r19DrS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNH6r19DrS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNH6r19DrS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNH6r19DrS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNH6r19DrS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNH6r19DrS .navbar {
    height: 70px;
  }
  .cid-tNH6r19DrS .navbar.opened {
    height: auto;
  }
  .cid-tNH6r19DrS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2w86QjJb0 {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-u2w86QjJb0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w86QjJb0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w86QjJb0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2w86QjJb0 .mbr-text,
.cid-u2w86QjJb0 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2w86QjJb0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNH6r1FZ18 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tNH6r1FZ18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r1FZ18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNH6r1FZ18 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNH6r1FZ18 .row {
  flex-direction: row-reverse;
}
.cid-tNH6r1FZ18 img {
  width: 100%;
}
.cid-tNH6r200v5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNH6r200v5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r200v5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNH6r200v5 .link {
  color: #4479d9;
  text-align: center;
}
.cid-tNH6r200v5 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tNH6r200v5 .mbr-section-title {
  color: #ffffff;
}
.cid-tNH6r200v5 .mbr-text,
.cid-tNH6r200v5 .link {
  color: #ffffff;
}
.cid-tNH6r200v5 .card-title,
.cid-tNH6r200v5 .card-box {
  color: #ffffff;
}
.cid-tNH6r2wF0J {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNH6r2wF0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r2wF0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNH6r2wF0J .link {
  color: #4479d9;
}
.cid-tNH6r2wF0J .mbr-text,
.cid-tNH6r2wF0J .link {
  color: #ffffff;
}
.cid-tNH6r2wF0J .card-title,
.cid-tNH6r2wF0J .card-box {
  color: #ffffff;
}
.cid-tNH6r30Gk8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNH6r30Gk8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r30Gk8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNH6r30Gk8 .link {
  color: #4479d9;
}
.cid-tNH6r30Gk8 .mbr-text,
.cid-tNH6r30Gk8 .link {
  color: #ffffff;
}
.cid-tNH6r30Gk8 .card-title,
.cid-tNH6r30Gk8 .card-box {
  color: #ffffff;
}
.cid-tNH6r3wyzV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNH6r3wyzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r3wyzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNH6r3wyzV .link {
  color: #4479d9;
}
.cid-tNH6r3wyzV .card-title,
.cid-tNH6r3wyzV .card-box {
  color: #ffffff;
}
.cid-tNH6r41FCk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNH6r41FCk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNH6r41FCk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNH6r41FCk .link {
  color: #4479d9;
}
.cid-tNH6r41FCk .card-title,
.cid-tNH6r41FCk .card-box {
  color: #ffffff;
}
.cid-uYNgso6hSj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNgso6hSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgso6hSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgso6hSj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgso6hSj .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgrnjObZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNgrnjObZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgrnjObZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgrnjObZ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNgrnjObZ .number {
  color: #ffffff;
}
.cid-uYNgrnjObZ .period {
  display: block;
}
.cid-uYNgrnjObZ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNgrnjObZ .period {
    font-size: 0.8rem;
  }
}
.cid-uYNgrnjObZ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNgrnjObZ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNgrnjObZ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgrnjObZ .mbr-text {
  color: #ffffff;
}
.cid-uYNgrnjObZ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNgrnjObZ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNgrnjObZ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNgrnjObZ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w84Qdiji {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w84Qdiji .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w84Qdiji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w84Qdiji .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w84Qdiji .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w84Qdiji .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w84Qdiji .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w84Qdiji .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w84Qdiji .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w84Qdiji .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w84Qdiji .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w84Qdiji .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w84Qdiji [class^="socicon-"]:before,
.cid-u2w84Qdiji [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w84Qdiji .mbr-section-title,
.cid-u2w84Qdiji .mbr-social-likes {
  color: #ffffff;
}
.cid-u39llLMC1g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39llLMC1g .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39llLMC1g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39llLMC1g .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39llLMC1g .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39llLMC1g .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39llLMC1g .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39llLMC1g .mbr-text {
  color: #ffffff;
}
.cid-u39llLMC1g .card-title {
  color: #ffffff;
}
.cid-u39llLMC1g .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39llLMC1g .mbr-section-title {
  color: #ffffff;
}
.cid-u39llLMC1g .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNcxltrOef {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNcxltrOef nav.navbar {
  position: fixed;
}
.cid-tNcxltrOef .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-tNcxltrOef .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNcxltrOef .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNcxltrOef .dropdown-item:hover,
.cid-tNcxltrOef .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNcxltrOef .dropdown-item:hover span {
  color: white;
}
.cid-tNcxltrOef .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNcxltrOef .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNcxltrOef .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNcxltrOef .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNcxltrOef .nav-link {
  position: relative;
}
.cid-tNcxltrOef .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcxltrOef .container {
    flex-wrap: wrap;
  }
}
.cid-tNcxltrOef .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNcxltrOef .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNcxltrOef .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNcxltrOef .dropdown-menu,
.cid-tNcxltrOef .navbar.opened {
  background: #000000 !important;
}
.cid-tNcxltrOef .nav-item:focus,
.cid-tNcxltrOef .nav-link:focus {
  outline: none;
}
.cid-tNcxltrOef .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNcxltrOef .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNcxltrOef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNcxltrOef .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNcxltrOef .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNcxltrOef .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNcxltrOef .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNcxltrOef .navbar.opened {
  transition: all 0.3s;
}
.cid-tNcxltrOef .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNcxltrOef .navbar .navbar-logo img {
  width: auto;
}
.cid-tNcxltrOef .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNcxltrOef .navbar.collapsed {
  justify-content: center;
}
.cid-tNcxltrOef .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNcxltrOef .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNcxltrOef .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNcxltrOef .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNcxltrOef .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNcxltrOef .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-tNcxltrOef .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNcxltrOef .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNcxltrOef .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNcxltrOef .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNcxltrOef .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNcxltrOef .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNcxltrOef .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNcxltrOef .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-tNcxltrOef .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNcxltrOef .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNcxltrOef .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNcxltrOef .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNcxltrOef .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNcxltrOef .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNcxltrOef .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNcxltrOef .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNcxltrOef .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNcxltrOef .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNcxltrOef .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNcxltrOef .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNcxltrOef .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNcxltrOef .dropdown-item.active,
.cid-tNcxltrOef .dropdown-item:active {
  background-color: transparent;
}
.cid-tNcxltrOef .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNcxltrOef .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNcxltrOef .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNcxltrOef .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNcxltrOef .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNcxltrOef .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNcxltrOef ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNcxltrOef .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNcxltrOef button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNcxltrOef button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNcxltrOef button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNcxltrOef button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcxltrOef button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNcxltrOef button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNcxltrOef nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcxltrOef nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNcxltrOef nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNcxltrOef nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNcxltrOef .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNcxltrOef a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNcxltrOef .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNcxltrOef .navbar {
    height: 70px;
  }
  .cid-tNcxltrOef .navbar.opened {
    height: auto;
  }
  .cid-tNcxltrOef .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yG1gQmUO {
  background-image: url("../../../assets/images/heatsink-on-pcb.webp");
}
.cid-u2yG1gQmUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yG1gQmUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yG1gQmUO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yG1gQmUO .mbr-text,
.cid-u2yG1gQmUO .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yG1gQmUO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNcxlu7Vea {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tNcxlu7Vea .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcxlu7Vea .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tNcxlu7Vea .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tNcxlu7Vea .row {
  flex-direction: row-reverse;
}
.cid-tNcxlu7Vea img {
  width: 100%;
}
.cid-tNcxluBAR6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNcxluBAR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcxluBAR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNcxluBAR6 .link {
  color: #4479d9;
  text-align: left;
}
.cid-tNcxluBAR6 .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tNcxluBAR6 .mbr-section-title {
  color: #ffffff;
}
.cid-tNcxluBAR6 .card-title,
.cid-tNcxluBAR6 .card-box {
  color: #ffffff;
}
.cid-uYNkqAc892 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkqAc892 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkqAc892 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkqAc892 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkqAc892 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkpnLIxb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkpnLIxb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkpnLIxb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkpnLIxb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkpnLIxb .number {
  color: #ffffff;
}
.cid-uYNkpnLIxb .period {
  display: block;
}
.cid-uYNkpnLIxb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkpnLIxb .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkpnLIxb .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkpnLIxb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkpnLIxb .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkpnLIxb .mbr-text {
  color: #ffffff;
}
.cid-uYNkpnLIxb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkpnLIxb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkpnLIxb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkpnLIxb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yG7usWgj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yG7usWgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yG7usWgj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yG7usWgj .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yG7usWgj .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yG7usWgj .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yG7usWgj .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yG7usWgj .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yG7usWgj .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yG7usWgj .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yG7usWgj .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yG7usWgj .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yG7usWgj [class^="socicon-"]:before,
.cid-u2yG7usWgj [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yG7usWgj .mbr-section-title,
.cid-u2yG7usWgj .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mdtgNcO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mdtgNcO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mdtgNcO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mdtgNcO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mdtgNcO .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mdtgNcO .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mdtgNcO .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mdtgNcO .mbr-text {
  color: #ffffff;
}
.cid-u39mdtgNcO .card-title {
  color: #ffffff;
}
.cid-u39mdtgNcO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mdtgNcO .mbr-section-title {
  color: #ffffff;
}
.cid-u39mdtgNcO .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tMs5bI86pF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tMs5bI86pF nav.navbar {
  position: fixed;
}
.cid-tMs5bI86pF .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-tMs5bI86pF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tMs5bI86pF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tMs5bI86pF .dropdown-item:hover,
.cid-tMs5bI86pF .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tMs5bI86pF .dropdown-item:hover span {
  color: white;
}
.cid-tMs5bI86pF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMs5bI86pF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMs5bI86pF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMs5bI86pF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMs5bI86pF .nav-link {
  position: relative;
}
.cid-tMs5bI86pF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs5bI86pF .container {
    flex-wrap: wrap;
  }
}
.cid-tMs5bI86pF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tMs5bI86pF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tMs5bI86pF .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMs5bI86pF .dropdown-menu,
.cid-tMs5bI86pF .navbar.opened {
  background: #000000 !important;
}
.cid-tMs5bI86pF .nav-item:focus,
.cid-tMs5bI86pF .nav-link:focus {
  outline: none;
}
.cid-tMs5bI86pF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMs5bI86pF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMs5bI86pF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMs5bI86pF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMs5bI86pF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMs5bI86pF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMs5bI86pF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tMs5bI86pF .navbar.opened {
  transition: all 0.3s;
}
.cid-tMs5bI86pF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tMs5bI86pF .navbar .navbar-logo img {
  width: auto;
}
.cid-tMs5bI86pF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMs5bI86pF .navbar.collapsed {
  justify-content: center;
}
.cid-tMs5bI86pF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMs5bI86pF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMs5bI86pF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tMs5bI86pF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMs5bI86pF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMs5bI86pF .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-tMs5bI86pF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMs5bI86pF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMs5bI86pF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMs5bI86pF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMs5bI86pF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMs5bI86pF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMs5bI86pF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMs5bI86pF .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-tMs5bI86pF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMs5bI86pF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMs5bI86pF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMs5bI86pF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMs5bI86pF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMs5bI86pF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMs5bI86pF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMs5bI86pF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMs5bI86pF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMs5bI86pF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMs5bI86pF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMs5bI86pF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMs5bI86pF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMs5bI86pF .dropdown-item.active,
.cid-tMs5bI86pF .dropdown-item:active {
  background-color: transparent;
}
.cid-tMs5bI86pF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMs5bI86pF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMs5bI86pF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMs5bI86pF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tMs5bI86pF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMs5bI86pF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMs5bI86pF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMs5bI86pF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMs5bI86pF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMs5bI86pF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tMs5bI86pF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMs5bI86pF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs5bI86pF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMs5bI86pF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMs5bI86pF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs5bI86pF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMs5bI86pF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMs5bI86pF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMs5bI86pF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMs5bI86pF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMs5bI86pF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMs5bI86pF .navbar {
    height: 70px;
  }
  .cid-tMs5bI86pF .navbar.opened {
    height: auto;
  }
  .cid-tMs5bI86pF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yIZlIqoy {
  background-image: url("../../../assets/images/motherboard.webp");
}
.cid-u2yIZlIqoy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yIZlIqoy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yIZlIqoy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yIZlIqoy .mbr-text,
.cid-u2yIZlIqoy .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yIZlIqoy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tMs5bIIeSj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tMs5bIIeSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs5bIIeSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tMs5bIIeSj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tMs5bIIeSj .row {
  flex-direction: row-reverse;
}
.cid-tMs5bIIeSj img {
  width: 100%;
}
.cid-tMs5bJbmxC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tMs5bJbmxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMs5bJbmxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMs5bJbmxC .link {
  color: #4479d9;
  text-align: left;
}
.cid-tMs5bJbmxC .mbr-section-subtitle {
  color: #4479d9;
}
.cid-tMs5bJbmxC .mbr-section-title {
  color: #ffffff;
}
.cid-tMs5bJbmxC .card-title,
.cid-tMs5bJbmxC .card-box {
  color: #ffffff;
}
.cid-uYNkM30PNm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkM30PNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkM30PNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkM30PNm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkM30PNm .number {
  color: #ffffff;
}
.cid-uYNkM30PNm .period {
  display: block;
}
.cid-uYNkM30PNm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkM30PNm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkM30PNm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkM30PNm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkM30PNm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkM30PNm .mbr-text {
  color: #ffffff;
}
.cid-uYNkM30PNm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkM30PNm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkM30PNm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkM30PNm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYNkNlBZgP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkNlBZgP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkNlBZgP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkNlBZgP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkNlBZgP .mbr-section-title {
  color: #ffffff;
}
.cid-u2yIXvqPVY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yIXvqPVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yIXvqPVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yIXvqPVY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yIXvqPVY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yIXvqPVY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yIXvqPVY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yIXvqPVY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yIXvqPVY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yIXvqPVY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yIXvqPVY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yIXvqPVY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yIXvqPVY [class^="socicon-"]:before,
.cid-u2yIXvqPVY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yIXvqPVY .mbr-section-title,
.cid-u2yIXvqPVY .mbr-social-likes {
  color: #ffffff;
}
.cid-u39mn9YQzt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39mn9YQzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39mn9YQzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39mn9YQzt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39mn9YQzt .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39mn9YQzt .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39mn9YQzt .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39mn9YQzt .mbr-text {
  color: #ffffff;
}
.cid-u39mn9YQzt .card-title {
  color: #ffffff;
}
.cid-u39mn9YQzt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39mn9YQzt .mbr-section-title {
  color: #ffffff;
}
.cid-u39mn9YQzt .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tNNart5JMo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tNNart5JMo nav.navbar {
  position: fixed;
}
.cid-tNNart5JMo .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-tNNart5JMo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tNNart5JMo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tNNart5JMo .dropdown-item:hover,
.cid-tNNart5JMo .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tNNart5JMo .dropdown-item:hover span {
  color: white;
}
.cid-tNNart5JMo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tNNart5JMo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tNNart5JMo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tNNart5JMo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tNNart5JMo .nav-link {
  position: relative;
}
.cid-tNNart5JMo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNNart5JMo .container {
    flex-wrap: wrap;
  }
}
.cid-tNNart5JMo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tNNart5JMo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tNNart5JMo .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tNNart5JMo .dropdown-menu,
.cid-tNNart5JMo .navbar.opened {
  background: #000000 !important;
}
.cid-tNNart5JMo .nav-item:focus,
.cid-tNNart5JMo .nav-link:focus {
  outline: none;
}
.cid-tNNart5JMo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tNNart5JMo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tNNart5JMo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tNNart5JMo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tNNart5JMo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tNNart5JMo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tNNart5JMo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tNNart5JMo .navbar.opened {
  transition: all 0.3s;
}
.cid-tNNart5JMo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tNNart5JMo .navbar .navbar-logo img {
  width: auto;
}
.cid-tNNart5JMo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tNNart5JMo .navbar.collapsed {
  justify-content: center;
}
.cid-tNNart5JMo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tNNart5JMo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tNNart5JMo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tNNart5JMo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tNNart5JMo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tNNart5JMo .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-tNNart5JMo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tNNart5JMo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tNNart5JMo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tNNart5JMo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tNNart5JMo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tNNart5JMo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tNNart5JMo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tNNart5JMo .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-tNNart5JMo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tNNart5JMo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tNNart5JMo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tNNart5JMo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tNNart5JMo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tNNart5JMo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tNNart5JMo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tNNart5JMo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tNNart5JMo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tNNart5JMo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tNNart5JMo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tNNart5JMo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tNNart5JMo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tNNart5JMo .dropdown-item.active,
.cid-tNNart5JMo .dropdown-item:active {
  background-color: transparent;
}
.cid-tNNart5JMo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tNNart5JMo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tNNart5JMo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tNNart5JMo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tNNart5JMo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tNNart5JMo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tNNart5JMo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tNNart5JMo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tNNart5JMo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tNNart5JMo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tNNart5JMo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tNNart5JMo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNNart5JMo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tNNart5JMo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tNNart5JMo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNNart5JMo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tNNart5JMo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tNNart5JMo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tNNart5JMo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tNNart5JMo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tNNart5JMo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tNNart5JMo .navbar {
    height: 70px;
  }
  .cid-tNNart5JMo .navbar.opened {
    height: auto;
  }
  .cid-tNNart5JMo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yTcSWRWn {
  background-image: url("../../../assets/images/elderberry-banner.webp");
}
.cid-u2yTcSWRWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yTcSWRWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yTcSWRWn .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yTcSWRWn .mbr-text,
.cid-u2yTcSWRWn .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yTcSWRWn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tNNartAnUm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tNNartAnUm img,
.cid-tNNartAnUm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tNNartAnUm .item:focus,
.cid-tNNartAnUm span:focus {
  outline: none;
}
.cid-tNNartAnUm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNNartAnUm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNNartAnUm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tNNartAnUm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNNartAnUm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tNNartAnUm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tNNartAnUm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNNartAnUm .mbr-section-title {
  color: #ffffff;
}
.cid-tNNartAnUm .mbr-text,
.cid-tNNartAnUm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tNNartAnUm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tNNartAnUm .item-subtitle {
  text-align: left;
}
.cid-tNNartAnUm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsbxzNwH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsbxzNwH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsbxzNwH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsbxzNwH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsbxzNwH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsau3wXY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsau3wXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsau3wXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsau3wXY .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsau3wXY .number {
  color: #ffffff;
}
.cid-uYNsau3wXY .period {
  display: block;
}
.cid-uYNsau3wXY .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsau3wXY .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsau3wXY .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsau3wXY .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsau3wXY .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsau3wXY .mbr-text {
  color: #ffffff;
}
.cid-uYNsau3wXY .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsau3wXY .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsau3wXY .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsau3wXY .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yTbb8wBI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yTbb8wBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yTbb8wBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yTbb8wBI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yTbb8wBI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yTbb8wBI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yTbb8wBI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yTbb8wBI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yTbb8wBI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yTbb8wBI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yTbb8wBI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yTbb8wBI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yTbb8wBI [class^="socicon-"]:before,
.cid-u2yTbb8wBI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yTbb8wBI .mbr-section-title,
.cid-u2yTbb8wBI .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nBnVHih {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nBnVHih .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nBnVHih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nBnVHih .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nBnVHih .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nBnVHih .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nBnVHih .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nBnVHih .mbr-text {
  color: #ffffff;
}
.cid-u39nBnVHih .card-title {
  color: #ffffff;
}
.cid-u39nBnVHih .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nBnVHih .mbr-section-title {
  color: #ffffff;
}
.cid-u39nBnVHih .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLlnmTzOwY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLlnmTzOwY nav.navbar {
  position: fixed;
}
.cid-tLlnmTzOwY .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-tLlnmTzOwY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLlnmTzOwY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLlnmTzOwY .dropdown-item:hover,
.cid-tLlnmTzOwY .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLlnmTzOwY .dropdown-item:hover span {
  color: white;
}
.cid-tLlnmTzOwY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLlnmTzOwY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLlnmTzOwY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLlnmTzOwY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLlnmTzOwY .nav-link {
  position: relative;
}
.cid-tLlnmTzOwY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlnmTzOwY .container {
    flex-wrap: wrap;
  }
}
.cid-tLlnmTzOwY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlnmTzOwY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLlnmTzOwY .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLlnmTzOwY .dropdown-menu,
.cid-tLlnmTzOwY .navbar.opened {
  background: #000000 !important;
}
.cid-tLlnmTzOwY .nav-item:focus,
.cid-tLlnmTzOwY .nav-link:focus {
  outline: none;
}
.cid-tLlnmTzOwY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLlnmTzOwY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLlnmTzOwY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLlnmTzOwY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLlnmTzOwY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLlnmTzOwY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLlnmTzOwY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLlnmTzOwY .navbar.opened {
  transition: all 0.3s;
}
.cid-tLlnmTzOwY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLlnmTzOwY .navbar .navbar-logo img {
  width: auto;
}
.cid-tLlnmTzOwY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLlnmTzOwY .navbar.collapsed {
  justify-content: center;
}
.cid-tLlnmTzOwY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLlnmTzOwY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLlnmTzOwY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLlnmTzOwY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLlnmTzOwY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLlnmTzOwY .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-tLlnmTzOwY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLlnmTzOwY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLlnmTzOwY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLlnmTzOwY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLlnmTzOwY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLlnmTzOwY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLlnmTzOwY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLlnmTzOwY .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-tLlnmTzOwY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLlnmTzOwY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLlnmTzOwY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLlnmTzOwY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLlnmTzOwY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLlnmTzOwY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLlnmTzOwY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLlnmTzOwY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLlnmTzOwY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLlnmTzOwY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLlnmTzOwY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLlnmTzOwY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLlnmTzOwY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLlnmTzOwY .dropdown-item.active,
.cid-tLlnmTzOwY .dropdown-item:active {
  background-color: transparent;
}
.cid-tLlnmTzOwY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLlnmTzOwY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLlnmTzOwY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLlnmTzOwY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLlnmTzOwY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLlnmTzOwY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLlnmTzOwY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLlnmTzOwY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLlnmTzOwY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLlnmTzOwY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLlnmTzOwY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLlnmTzOwY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlnmTzOwY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlnmTzOwY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLlnmTzOwY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlnmTzOwY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLlnmTzOwY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLlnmTzOwY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlnmTzOwY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLlnmTzOwY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLlnmTzOwY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLlnmTzOwY .navbar {
    height: 70px;
  }
  .cid-tLlnmTzOwY .navbar.opened {
    height: auto;
  }
  .cid-tLlnmTzOwY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yTOSRIjJ {
  background-image: url("../../../assets/images/sweet-peas-banner.webp");
}
.cid-u2yTOSRIjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yTOSRIjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yTOSRIjJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yTOSRIjJ .mbr-text,
.cid-u2yTOSRIjJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yTOSRIjJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLlnE6RuAW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLlnE6RuAW img,
.cid-tLlnE6RuAW .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLlnE6RuAW .item:focus,
.cid-tLlnE6RuAW span:focus {
  outline: none;
}
.cid-tLlnE6RuAW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLlnE6RuAW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLlnE6RuAW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLlnE6RuAW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLlnE6RuAW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLlnE6RuAW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLlnE6RuAW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLlnE6RuAW .mbr-section-title {
  color: #ffffff;
}
.cid-tLlnE6RuAW .mbr-text,
.cid-tLlnE6RuAW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLlnE6RuAW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLlnE6RuAW .item-subtitle {
  text-align: left;
}
.cid-tLlnE6RuAW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYi2yvcrY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYi2yvcrY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYi2yvcrY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYi2yvcrY .mbr-section-title {
  color: #ffffff;
}
.cid-uZYi2yvcrY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsEkx6Ez {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsEkx6Ez .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsEkx6Ez .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsEkx6Ez .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsEkx6Ez .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsCRGgYU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsCRGgYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsCRGgYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsCRGgYU .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsCRGgYU .number {
  color: #ffffff;
}
.cid-uYNsCRGgYU .period {
  display: block;
}
.cid-uYNsCRGgYU .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsCRGgYU .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsCRGgYU .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsCRGgYU .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsCRGgYU .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsCRGgYU .mbr-text {
  color: #ffffff;
}
.cid-uYNsCRGgYU .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsCRGgYU .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsCRGgYU .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsCRGgYU .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yTNIFE15 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yTNIFE15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yTNIFE15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yTNIFE15 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yTNIFE15 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yTNIFE15 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yTNIFE15 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yTNIFE15 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yTNIFE15 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yTNIFE15 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yTNIFE15 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yTNIFE15 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yTNIFE15 [class^="socicon-"]:before,
.cid-u2yTNIFE15 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yTNIFE15 .mbr-section-title,
.cid-u2yTNIFE15 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nE0rzYr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nE0rzYr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nE0rzYr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nE0rzYr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nE0rzYr .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nE0rzYr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nE0rzYr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nE0rzYr .mbr-text {
  color: #ffffff;
}
.cid-u39nE0rzYr .card-title {
  color: #ffffff;
}
.cid-u39nE0rzYr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nE0rzYr .mbr-section-title {
  color: #ffffff;
}
.cid-u39nE0rzYr .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tJ9A46WKNC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tJ9A46WKNC nav.navbar {
  position: fixed;
}
.cid-tJ9A46WKNC .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-tJ9A46WKNC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tJ9A46WKNC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tJ9A46WKNC .dropdown-item:hover,
.cid-tJ9A46WKNC .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tJ9A46WKNC .dropdown-item:hover span {
  color: white;
}
.cid-tJ9A46WKNC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tJ9A46WKNC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tJ9A46WKNC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tJ9A46WKNC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tJ9A46WKNC .nav-link {
  position: relative;
}
.cid-tJ9A46WKNC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJ9A46WKNC .container {
    flex-wrap: wrap;
  }
}
.cid-tJ9A46WKNC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tJ9A46WKNC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tJ9A46WKNC .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tJ9A46WKNC .dropdown-menu,
.cid-tJ9A46WKNC .navbar.opened {
  background: #000000 !important;
}
.cid-tJ9A46WKNC .nav-item:focus,
.cid-tJ9A46WKNC .nav-link:focus {
  outline: none;
}
.cid-tJ9A46WKNC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tJ9A46WKNC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJ9A46WKNC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tJ9A46WKNC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tJ9A46WKNC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tJ9A46WKNC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tJ9A46WKNC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tJ9A46WKNC .navbar.opened {
  transition: all 0.3s;
}
.cid-tJ9A46WKNC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tJ9A46WKNC .navbar .navbar-logo img {
  width: auto;
}
.cid-tJ9A46WKNC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tJ9A46WKNC .navbar.collapsed {
  justify-content: center;
}
.cid-tJ9A46WKNC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tJ9A46WKNC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tJ9A46WKNC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tJ9A46WKNC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tJ9A46WKNC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tJ9A46WKNC .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-tJ9A46WKNC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tJ9A46WKNC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tJ9A46WKNC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tJ9A46WKNC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tJ9A46WKNC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tJ9A46WKNC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tJ9A46WKNC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tJ9A46WKNC .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-tJ9A46WKNC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tJ9A46WKNC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tJ9A46WKNC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tJ9A46WKNC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tJ9A46WKNC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tJ9A46WKNC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tJ9A46WKNC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tJ9A46WKNC .navbar.navbar-short {
  min-height: 60px;
}
.cid-tJ9A46WKNC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tJ9A46WKNC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tJ9A46WKNC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tJ9A46WKNC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tJ9A46WKNC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tJ9A46WKNC .dropdown-item.active,
.cid-tJ9A46WKNC .dropdown-item:active {
  background-color: transparent;
}
.cid-tJ9A46WKNC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tJ9A46WKNC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tJ9A46WKNC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tJ9A46WKNC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tJ9A46WKNC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tJ9A46WKNC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJ9A46WKNC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tJ9A46WKNC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tJ9A46WKNC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tJ9A46WKNC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tJ9A46WKNC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tJ9A46WKNC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ9A46WKNC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tJ9A46WKNC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tJ9A46WKNC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ9A46WKNC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tJ9A46WKNC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tJ9A46WKNC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tJ9A46WKNC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tJ9A46WKNC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tJ9A46WKNC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tJ9A46WKNC .navbar {
    height: 70px;
  }
  .cid-tJ9A46WKNC .navbar.opened {
    height: auto;
  }
  .cid-tJ9A46WKNC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yYnEqLTf {
  background-image: url("../../../assets/images/white-cabbage-2521700.webp");
}
.cid-u2yYnEqLTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yYnEqLTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yYnEqLTf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yYnEqLTf .mbr-text,
.cid-u2yYnEqLTf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yYnEqLTf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u6fKB6VXYA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-u6fKB6VXYA img,
.cid-u6fKB6VXYA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u6fKB6VXYA .item:focus,
.cid-u6fKB6VXYA span:focus {
  outline: none;
}
.cid-u6fKB6VXYA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6fKB6VXYA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6fKB6VXYA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6fKB6VXYA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6fKB6VXYA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6fKB6VXYA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6fKB6VXYA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6fKB6VXYA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u6fKB6VXYA .mbr-text,
.cid-u6fKB6VXYA .mbr-section-btn {
  text-align: left;
}
.cid-u6fKB6VXYA .item-title {
  text-align: left;
}
.cid-u6fKB6VXYA .item-subtitle {
  text-align: left;
}
.cid-u6fKB6VXYA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tJYPj6TCpj {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tJYPj6TCpj img,
.cid-tJYPj6TCpj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tJYPj6TCpj .item:focus,
.cid-tJYPj6TCpj span:focus {
  outline: none;
}
.cid-tJYPj6TCpj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJYPj6TCpj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJYPj6TCpj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tJYPj6TCpj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJYPj6TCpj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tJYPj6TCpj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tJYPj6TCpj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJYPj6TCpj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tJYPj6TCpj .mbr-text,
.cid-tJYPj6TCpj .mbr-section-btn {
  text-align: left;
}
.cid-tJYPj6TCpj .item-title {
  text-align: left;
}
.cid-tJYPj6TCpj .item-subtitle {
  text-align: left;
}
.cid-tJYPj6TCpj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1acqTtQwt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1acqTtQwt img,
.cid-v1acqTtQwt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1acqTtQwt .item:focus,
.cid-v1acqTtQwt span:focus {
  outline: none;
}
.cid-v1acqTtQwt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1acqTtQwt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1acqTtQwt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v1acqTtQwt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1acqTtQwt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v1acqTtQwt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v1acqTtQwt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1acqTtQwt .mbr-section-title {
  color: #232323;
}
.cid-v1acqTtQwt .mbr-text,
.cid-v1acqTtQwt .mbr-section-btn {
  text-align: left;
}
.cid-v1acqTtQwt .item-title {
  text-align: left;
}
.cid-v1acqTtQwt .item-subtitle {
  text-align: left;
}
.cid-tJYPkmy1Z3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tJYPkmy1Z3 img,
.cid-tJYPkmy1Z3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tJYPkmy1Z3 .item:focus,
.cid-tJYPkmy1Z3 span:focus {
  outline: none;
}
.cid-tJYPkmy1Z3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJYPkmy1Z3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJYPkmy1Z3 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tJYPkmy1Z3 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJYPkmy1Z3 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tJYPkmy1Z3 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tJYPkmy1Z3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJYPkmy1Z3 .mbr-section-title {
  color: #232323;
}
.cid-tJYPkmy1Z3 .mbr-text,
.cid-tJYPkmy1Z3 .mbr-section-btn {
  text-align: left;
}
.cid-tJYPkmy1Z3 .item-title {
  text-align: left;
}
.cid-tJYPkmy1Z3 .item-subtitle {
  text-align: left;
}
.cid-tKMOvI29TK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tKMOvI29TK img,
.cid-tKMOvI29TK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tKMOvI29TK .item:focus,
.cid-tKMOvI29TK span:focus {
  outline: none;
}
.cid-tKMOvI29TK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKMOvI29TK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKMOvI29TK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKMOvI29TK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKMOvI29TK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKMOvI29TK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKMOvI29TK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKMOvI29TK .mbr-section-title {
  color: #ffffff;
}
.cid-tKMOvI29TK .mbr-text,
.cid-tKMOvI29TK .mbr-section-btn {
  text-align: left;
}
.cid-tKMOvI29TK .item-title {
  text-align: left;
}
.cid-tKMOvI29TK .item-subtitle {
  text-align: left;
}
.cid-tKMOvI29TK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tKMOUztrQ5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tKMOUztrQ5 img,
.cid-tKMOUztrQ5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tKMOUztrQ5 .item:focus,
.cid-tKMOUztrQ5 span:focus {
  outline: none;
}
.cid-tKMOUztrQ5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKMOUztrQ5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKMOUztrQ5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKMOUztrQ5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKMOUztrQ5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKMOUztrQ5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKMOUztrQ5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKMOUztrQ5 .mbr-section-title {
  color: #232323;
}
.cid-tKMOUztrQ5 .mbr-text,
.cid-tKMOUztrQ5 .mbr-section-btn {
  text-align: left;
}
.cid-tKMOUztrQ5 .item-title {
  text-align: left;
}
.cid-tKMOUztrQ5 .item-subtitle {
  text-align: left;
}
.cid-tKMPC8UmDG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tKMPC8UmDG img,
.cid-tKMPC8UmDG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tKMPC8UmDG .item:focus,
.cid-tKMPC8UmDG span:focus {
  outline: none;
}
.cid-tKMPC8UmDG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKMPC8UmDG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKMPC8UmDG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKMPC8UmDG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKMPC8UmDG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKMPC8UmDG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKMPC8UmDG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKMPC8UmDG .mbr-section-title {
  color: #232323;
}
.cid-tKMPC8UmDG .mbr-text,
.cid-tKMPC8UmDG .mbr-section-btn {
  text-align: left;
}
.cid-tKMPC8UmDG .item-title {
  text-align: left;
}
.cid-tKMPC8UmDG .item-subtitle {
  text-align: left;
}
.cid-tKMPXfxu5C {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tKMPXfxu5C img,
.cid-tKMPXfxu5C .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tKMPXfxu5C .item:focus,
.cid-tKMPXfxu5C span:focus {
  outline: none;
}
.cid-tKMPXfxu5C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tKMPXfxu5C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKMPXfxu5C .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tKMPXfxu5C .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKMPXfxu5C .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tKMPXfxu5C .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tKMPXfxu5C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKMPXfxu5C .mbr-section-title {
  color: #232323;
}
.cid-tKMPXfxu5C .mbr-text,
.cid-tKMPXfxu5C .mbr-section-btn {
  text-align: left;
}
.cid-tKMPXfxu5C .item-title {
  text-align: left;
}
.cid-tKMPXfxu5C .item-subtitle {
  text-align: left;
}
.cid-tL3lblWzgQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tL3lblWzgQ img,
.cid-tL3lblWzgQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tL3lblWzgQ .item:focus,
.cid-tL3lblWzgQ span:focus {
  outline: none;
}
.cid-tL3lblWzgQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tL3lblWzgQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tL3lblWzgQ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tL3lblWzgQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tL3lblWzgQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tL3lblWzgQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tL3lblWzgQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tL3lblWzgQ .mbr-section-title {
  color: #232323;
}
.cid-tL3lblWzgQ .mbr-text,
.cid-tL3lblWzgQ .mbr-section-btn {
  text-align: left;
}
.cid-tL3lblWzgQ .item-title {
  text-align: left;
}
.cid-tL3lblWzgQ .item-subtitle {
  text-align: left;
}
.cid-uYNwY3vig8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwY3vig8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwY3vig8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwY3vig8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwY3vig8 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwWdMYN1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwWdMYN1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwWdMYN1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwWdMYN1 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwWdMYN1 .number {
  color: #ffffff;
}
.cid-uYNwWdMYN1 .period {
  display: block;
}
.cid-uYNwWdMYN1 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwWdMYN1 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwWdMYN1 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwWdMYN1 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwWdMYN1 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwWdMYN1 .mbr-text {
  color: #ffffff;
}
.cid-uYNwWdMYN1 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwWdMYN1 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwWdMYN1 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwWdMYN1 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yYlv9LbJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yYlv9LbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yYlv9LbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yYlv9LbJ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yYlv9LbJ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yYlv9LbJ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yYlv9LbJ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yYlv9LbJ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yYlv9LbJ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yYlv9LbJ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yYlv9LbJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yYlv9LbJ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yYlv9LbJ [class^="socicon-"]:before,
.cid-u2yYlv9LbJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yYlv9LbJ .mbr-section-title,
.cid-u2yYlv9LbJ .mbr-social-likes {
  color: #ffffff;
}
.cid-u39onPXgZ6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39onPXgZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39onPXgZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39onPXgZ6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39onPXgZ6 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39onPXgZ6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39onPXgZ6 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39onPXgZ6 .mbr-text {
  color: #ffffff;
}
.cid-u39onPXgZ6 .card-title {
  color: #ffffff;
}
.cid-u39onPXgZ6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39onPXgZ6 .mbr-section-title {
  color: #ffffff;
}
.cid-u39onPXgZ6 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOrf1r2wWi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOrf1r2wWi nav.navbar {
  position: fixed;
}
.cid-tOrf1r2wWi .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-tOrf1r2wWi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOrf1r2wWi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOrf1r2wWi .dropdown-item:hover,
.cid-tOrf1r2wWi .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOrf1r2wWi .dropdown-item:hover span {
  color: white;
}
.cid-tOrf1r2wWi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOrf1r2wWi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOrf1r2wWi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOrf1r2wWi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOrf1r2wWi .nav-link {
  position: relative;
}
.cid-tOrf1r2wWi .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOrf1r2wWi .container {
    flex-wrap: wrap;
  }
}
.cid-tOrf1r2wWi .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOrf1r2wWi .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOrf1r2wWi .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOrf1r2wWi .dropdown-menu,
.cid-tOrf1r2wWi .navbar.opened {
  background: #000000 !important;
}
.cid-tOrf1r2wWi .nav-item:focus,
.cid-tOrf1r2wWi .nav-link:focus {
  outline: none;
}
.cid-tOrf1r2wWi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOrf1r2wWi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOrf1r2wWi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOrf1r2wWi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOrf1r2wWi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOrf1r2wWi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOrf1r2wWi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOrf1r2wWi .navbar.opened {
  transition: all 0.3s;
}
.cid-tOrf1r2wWi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOrf1r2wWi .navbar .navbar-logo img {
  width: auto;
}
.cid-tOrf1r2wWi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOrf1r2wWi .navbar.collapsed {
  justify-content: center;
}
.cid-tOrf1r2wWi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOrf1r2wWi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOrf1r2wWi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOrf1r2wWi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOrf1r2wWi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOrf1r2wWi .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-tOrf1r2wWi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOrf1r2wWi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOrf1r2wWi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOrf1r2wWi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOrf1r2wWi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOrf1r2wWi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOrf1r2wWi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOrf1r2wWi .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-tOrf1r2wWi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOrf1r2wWi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOrf1r2wWi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOrf1r2wWi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOrf1r2wWi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOrf1r2wWi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOrf1r2wWi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOrf1r2wWi .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOrf1r2wWi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOrf1r2wWi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOrf1r2wWi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOrf1r2wWi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOrf1r2wWi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOrf1r2wWi .dropdown-item.active,
.cid-tOrf1r2wWi .dropdown-item:active {
  background-color: transparent;
}
.cid-tOrf1r2wWi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOrf1r2wWi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOrf1r2wWi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOrf1r2wWi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOrf1r2wWi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOrf1r2wWi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOrf1r2wWi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOrf1r2wWi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOrf1r2wWi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOrf1r2wWi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOrf1r2wWi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOrf1r2wWi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOrf1r2wWi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOrf1r2wWi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOrf1r2wWi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOrf1r2wWi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOrf1r2wWi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOrf1r2wWi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOrf1r2wWi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOrf1r2wWi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOrf1r2wWi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOrf1r2wWi .navbar {
    height: 70px;
  }
  .cid-tOrf1r2wWi .navbar.opened {
    height: auto;
  }
  .cid-tOrf1r2wWi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vIULDzmE {
  background-image: url("../../../assets/images/time-3270448-1280-1280x854.webp");
}
.cid-u2vIULDzmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vIULDzmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vIULDzmE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vIULDzmE .mbr-text,
.cid-u2vIULDzmE .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vIULDzmE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOSVdL6uyC {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tOSVdL6uyC img,
.cid-tOSVdL6uyC .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tOSVdL6uyC .item:focus,
.cid-tOSVdL6uyC span:focus {
  outline: none;
}
.cid-tOSVdL6uyC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOSVdL6uyC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOSVdL6uyC .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tOSVdL6uyC .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOSVdL6uyC .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tOSVdL6uyC .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tOSVdL6uyC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOSVdL6uyC .mbr-section-title {
  color: #ffffff;
}
.cid-tOSVdL6uyC .mbr-text,
.cid-tOSVdL6uyC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tOSVdL6uyC .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tOSVdL6uyC .item-subtitle {
  text-align: left;
}
.cid-tOSVdL6uyC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSd3FIrpjS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tSd3FIrpjS img,
.cid-tSd3FIrpjS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tSd3FIrpjS .item:focus,
.cid-tSd3FIrpjS span:focus {
  outline: none;
}
.cid-tSd3FIrpjS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tSd3FIrpjS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tSd3FIrpjS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tSd3FIrpjS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tSd3FIrpjS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tSd3FIrpjS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tSd3FIrpjS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tSd3FIrpjS .mbr-section-title {
  color: #232323;
}
.cid-tSd3FIrpjS .mbr-text,
.cid-tSd3FIrpjS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tSd3FIrpjS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tSd3FIrpjS .item-subtitle {
  text-align: left;
}
.cid-uYN9Zbld6K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN9Zbld6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9Zbld6K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9Zbld6K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9Zbld6K .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Yjzidf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN9Yjzidf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9Yjzidf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9Yjzidf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN9Yjzidf .number {
  color: #ffffff;
}
.cid-uYN9Yjzidf .period {
  display: block;
}
.cid-uYN9Yjzidf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN9Yjzidf .period {
    font-size: 0.8rem;
  }
}
.cid-uYN9Yjzidf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN9Yjzidf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN9Yjzidf .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Yjzidf .mbr-text {
  color: #ffffff;
}
.cid-uYN9Yjzidf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN9Yjzidf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN9Yjzidf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN9Yjzidf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w28I4YLd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w28I4YLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w28I4YLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w28I4YLd .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w28I4YLd .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w28I4YLd .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w28I4YLd .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w28I4YLd .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w28I4YLd .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w28I4YLd .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w28I4YLd .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w28I4YLd .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w28I4YLd [class^="socicon-"]:before,
.cid-u2w28I4YLd [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w28I4YLd .mbr-section-title,
.cid-u2w28I4YLd .mbr-social-likes {
  color: #ffffff;
}
.cid-u39ebdgNdx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39ebdgNdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39ebdgNdx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39ebdgNdx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39ebdgNdx .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39ebdgNdx .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39ebdgNdx .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39ebdgNdx .mbr-text {
  color: #ffffff;
}
.cid-u39ebdgNdx .card-title {
  color: #ffffff;
}
.cid-u39ebdgNdx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39ebdgNdx .mbr-section-title {
  color: #ffffff;
}
.cid-u39ebdgNdx .link {
  color: #4479d9;
}
.cid-tOrf1ss2m7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOrf1ss2m7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOrf1ss2m7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOrf1ss2m7 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOrf1ss2m7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOrf1ss2m7 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOrf1ss2m7 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOrf1ss2m7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOrf1ss2m7 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tOrffeRyG2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tOrffeRyG2 nav.navbar {
  position: fixed;
}
.cid-tOrffeRyG2 .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-tOrffeRyG2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOrffeRyG2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOrffeRyG2 .dropdown-item:hover,
.cid-tOrffeRyG2 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tOrffeRyG2 .dropdown-item:hover span {
  color: white;
}
.cid-tOrffeRyG2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOrffeRyG2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOrffeRyG2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOrffeRyG2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOrffeRyG2 .nav-link {
  position: relative;
}
.cid-tOrffeRyG2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOrffeRyG2 .container {
    flex-wrap: wrap;
  }
}
.cid-tOrffeRyG2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tOrffeRyG2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tOrffeRyG2 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOrffeRyG2 .dropdown-menu,
.cid-tOrffeRyG2 .navbar.opened {
  background: #000000 !important;
}
.cid-tOrffeRyG2 .nav-item:focus,
.cid-tOrffeRyG2 .nav-link:focus {
  outline: none;
}
.cid-tOrffeRyG2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOrffeRyG2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOrffeRyG2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOrffeRyG2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOrffeRyG2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOrffeRyG2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOrffeRyG2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tOrffeRyG2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tOrffeRyG2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOrffeRyG2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tOrffeRyG2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOrffeRyG2 .navbar.collapsed {
  justify-content: center;
}
.cid-tOrffeRyG2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOrffeRyG2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOrffeRyG2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOrffeRyG2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOrffeRyG2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOrffeRyG2 .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-tOrffeRyG2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOrffeRyG2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOrffeRyG2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOrffeRyG2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOrffeRyG2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOrffeRyG2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOrffeRyG2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOrffeRyG2 .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-tOrffeRyG2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOrffeRyG2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOrffeRyG2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOrffeRyG2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOrffeRyG2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOrffeRyG2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOrffeRyG2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOrffeRyG2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tOrffeRyG2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOrffeRyG2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOrffeRyG2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOrffeRyG2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOrffeRyG2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOrffeRyG2 .dropdown-item.active,
.cid-tOrffeRyG2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tOrffeRyG2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOrffeRyG2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOrffeRyG2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOrffeRyG2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tOrffeRyG2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOrffeRyG2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOrffeRyG2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOrffeRyG2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOrffeRyG2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOrffeRyG2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOrffeRyG2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOrffeRyG2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOrffeRyG2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOrffeRyG2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOrffeRyG2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOrffeRyG2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOrffeRyG2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOrffeRyG2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOrffeRyG2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOrffeRyG2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOrffeRyG2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOrffeRyG2 .navbar {
    height: 70px;
  }
  .cid-tOrffeRyG2 .navbar.opened {
    height: auto;
  }
  .cid-tOrffeRyG2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vImvQXis {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-u2vImvQXis .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vImvQXis .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vImvQXis .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vImvQXis .mbr-text,
.cid-u2vImvQXis .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vImvQXis .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tOSX7oMhCn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tOSX7oMhCn img,
.cid-tOSX7oMhCn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tOSX7oMhCn .item:focus,
.cid-tOSX7oMhCn span:focus {
  outline: none;
}
.cid-tOSX7oMhCn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tOSX7oMhCn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tOSX7oMhCn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tOSX7oMhCn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tOSX7oMhCn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tOSX7oMhCn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tOSX7oMhCn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tOSX7oMhCn .mbr-section-title {
  color: #ffffff;
}
.cid-tOSX7oMhCn .mbr-text,
.cid-tOSX7oMhCn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tOSX7oMhCn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tOSX7oMhCn .item-subtitle {
  text-align: left;
}
.cid-tOSX7oMhCn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPatuFSrbu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tPatuFSrbu img,
.cid-tPatuFSrbu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tPatuFSrbu .item:focus,
.cid-tPatuFSrbu span:focus {
  outline: none;
}
.cid-tPatuFSrbu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPatuFSrbu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPatuFSrbu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tPatuFSrbu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPatuFSrbu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tPatuFSrbu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tPatuFSrbu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPatuFSrbu .mbr-section-title {
  color: #232323;
}
.cid-tPatuFSrbu .mbr-text,
.cid-tPatuFSrbu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tPatuFSrbu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tPatuFSrbu .item-subtitle {
  text-align: left;
}
.cid-uYN7RitTf7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN7RitTf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN7RitTf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN7RitTf7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN7RitTf7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN7QmaiTe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN7QmaiTe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN7QmaiTe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN7QmaiTe .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN7QmaiTe .number {
  color: #ffffff;
}
.cid-uYN7QmaiTe .period {
  display: block;
}
.cid-uYN7QmaiTe .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN7QmaiTe .period {
    font-size: 0.8rem;
  }
}
.cid-uYN7QmaiTe .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN7QmaiTe .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN7QmaiTe .mbr-section-title {
  color: #ffffff;
}
.cid-uYN7QmaiTe .mbr-text {
  color: #ffffff;
}
.cid-uYN7QmaiTe .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN7QmaiTe .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN7QmaiTe .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN7QmaiTe .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w1ZQ7De2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w1ZQ7De2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w1ZQ7De2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w1ZQ7De2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w1ZQ7De2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w1ZQ7De2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w1ZQ7De2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w1ZQ7De2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w1ZQ7De2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w1ZQ7De2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w1ZQ7De2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w1ZQ7De2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w1ZQ7De2 [class^="socicon-"]:before,
.cid-u2w1ZQ7De2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w1ZQ7De2 .mbr-section-title,
.cid-u2w1ZQ7De2 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39e7ozrWr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39e7ozrWr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39e7ozrWr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39e7ozrWr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39e7ozrWr .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39e7ozrWr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39e7ozrWr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39e7ozrWr .mbr-text {
  color: #ffffff;
}
.cid-u39e7ozrWr .card-title {
  color: #ffffff;
}
.cid-u39e7ozrWr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39e7ozrWr .mbr-section-title {
  color: #ffffff;
}
.cid-u39e7ozrWr .link {
  color: #4479d9;
}
.cid-tOrffgMO1V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOrffgMO1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOrffgMO1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOrffgMO1V .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOrffgMO1V .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOrffgMO1V .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOrffgMO1V .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOrffgMO1V div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOrffgMO1V .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLfen39Y5W {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLfen39Y5W nav.navbar {
  position: fixed;
}
.cid-tLfen39Y5W .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-tLfen39Y5W .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLfen39Y5W .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLfen39Y5W .dropdown-item:hover,
.cid-tLfen39Y5W .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLfen39Y5W .dropdown-item:hover span {
  color: white;
}
.cid-tLfen39Y5W .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLfen39Y5W .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLfen39Y5W .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLfen39Y5W .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLfen39Y5W .nav-link {
  position: relative;
}
.cid-tLfen39Y5W .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfen39Y5W .container {
    flex-wrap: wrap;
  }
}
.cid-tLfen39Y5W .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLfen39Y5W .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLfen39Y5W .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLfen39Y5W .dropdown-menu,
.cid-tLfen39Y5W .navbar.opened {
  background: #000000 !important;
}
.cid-tLfen39Y5W .nav-item:focus,
.cid-tLfen39Y5W .nav-link:focus {
  outline: none;
}
.cid-tLfen39Y5W .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLfen39Y5W .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLfen39Y5W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLfen39Y5W .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLfen39Y5W .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLfen39Y5W .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLfen39Y5W .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLfen39Y5W .navbar.opened {
  transition: all 0.3s;
}
.cid-tLfen39Y5W .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLfen39Y5W .navbar .navbar-logo img {
  width: auto;
}
.cid-tLfen39Y5W .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLfen39Y5W .navbar.collapsed {
  justify-content: center;
}
.cid-tLfen39Y5W .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLfen39Y5W .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLfen39Y5W .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLfen39Y5W .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLfen39Y5W .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLfen39Y5W .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-tLfen39Y5W .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLfen39Y5W .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLfen39Y5W .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLfen39Y5W .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLfen39Y5W .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLfen39Y5W .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLfen39Y5W .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLfen39Y5W .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-tLfen39Y5W .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLfen39Y5W .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLfen39Y5W .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLfen39Y5W .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLfen39Y5W .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLfen39Y5W .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLfen39Y5W .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLfen39Y5W .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLfen39Y5W .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLfen39Y5W .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLfen39Y5W .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLfen39Y5W .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLfen39Y5W .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLfen39Y5W .dropdown-item.active,
.cid-tLfen39Y5W .dropdown-item:active {
  background-color: transparent;
}
.cid-tLfen39Y5W .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLfen39Y5W .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLfen39Y5W .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLfen39Y5W .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLfen39Y5W .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLfen39Y5W .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLfen39Y5W ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLfen39Y5W .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLfen39Y5W button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLfen39Y5W button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLfen39Y5W button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLfen39Y5W button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfen39Y5W button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLfen39Y5W button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLfen39Y5W nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfen39Y5W nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLfen39Y5W nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLfen39Y5W nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLfen39Y5W .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLfen39Y5W a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLfen39Y5W .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLfen39Y5W .navbar {
    height: 70px;
  }
  .cid-tLfen39Y5W .navbar.opened {
    height: auto;
  }
  .cid-tLfen39Y5W .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yWgOGSyB {
  background-image: url("../../../assets/images/leeks.webp");
}
.cid-u2yWgOGSyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWgOGSyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWgOGSyB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWgOGSyB .mbr-text,
.cid-u2yWgOGSyB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yWgOGSyB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLfeBNUDbn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLfeBNUDbn img,
.cid-tLfeBNUDbn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLfeBNUDbn .item:focus,
.cid-tLfeBNUDbn span:focus {
  outline: none;
}
.cid-tLfeBNUDbn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLfeBNUDbn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLfeBNUDbn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLfeBNUDbn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLfeBNUDbn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLfeBNUDbn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLfeBNUDbn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLfeBNUDbn .mbr-section-title {
  color: #ffffff;
}
.cid-tLfeBNUDbn .mbr-text,
.cid-tLfeBNUDbn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLfeBNUDbn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLfeBNUDbn .item-subtitle {
  text-align: left;
}
.cid-tLfeBNUDbn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYoMeQjfM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYoMeQjfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYoMeQjfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYoMeQjfM .mbr-section-title {
  color: #ffffff;
}
.cid-uZYoMeQjfM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuCKpB82 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNuCKpB82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuCKpB82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuCKpB82 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuCKpB82 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuBjHtcE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNuBjHtcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuBjHtcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuBjHtcE .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNuBjHtcE .number {
  color: #ffffff;
}
.cid-uYNuBjHtcE .period {
  display: block;
}
.cid-uYNuBjHtcE .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNuBjHtcE .period {
    font-size: 0.8rem;
  }
}
.cid-uYNuBjHtcE .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNuBjHtcE .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNuBjHtcE .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuBjHtcE .mbr-text {
  color: #ffffff;
}
.cid-uYNuBjHtcE .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNuBjHtcE .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNuBjHtcE .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNuBjHtcE .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yWfMdPdk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yWfMdPdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yWfMdPdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yWfMdPdk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yWfMdPdk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yWfMdPdk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yWfMdPdk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yWfMdPdk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yWfMdPdk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yWfMdPdk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yWfMdPdk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yWfMdPdk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yWfMdPdk [class^="socicon-"]:before,
.cid-u2yWfMdPdk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yWfMdPdk .mbr-section-title,
.cid-u2yWfMdPdk .mbr-social-likes {
  color: #ffffff;
}
.cid-u39o6gHX8w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39o6gHX8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39o6gHX8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39o6gHX8w .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39o6gHX8w .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39o6gHX8w .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39o6gHX8w .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39o6gHX8w .mbr-text {
  color: #ffffff;
}
.cid-u39o6gHX8w .card-title {
  color: #ffffff;
}
.cid-u39o6gHX8w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39o6gHX8w .mbr-section-title {
  color: #ffffff;
}
.cid-u39o6gHX8w .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tP7t4ylGSF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tP7t4ylGSF nav.navbar {
  position: fixed;
}
.cid-tP7t4ylGSF .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-tP7t4ylGSF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tP7t4ylGSF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tP7t4ylGSF .dropdown-item:hover,
.cid-tP7t4ylGSF .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tP7t4ylGSF .dropdown-item:hover span {
  color: white;
}
.cid-tP7t4ylGSF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tP7t4ylGSF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tP7t4ylGSF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tP7t4ylGSF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tP7t4ylGSF .nav-link {
  position: relative;
}
.cid-tP7t4ylGSF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tP7t4ylGSF .container {
    flex-wrap: wrap;
  }
}
.cid-tP7t4ylGSF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tP7t4ylGSF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tP7t4ylGSF .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tP7t4ylGSF .dropdown-menu,
.cid-tP7t4ylGSF .navbar.opened {
  background: #000000 !important;
}
.cid-tP7t4ylGSF .nav-item:focus,
.cid-tP7t4ylGSF .nav-link:focus {
  outline: none;
}
.cid-tP7t4ylGSF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tP7t4ylGSF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tP7t4ylGSF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tP7t4ylGSF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tP7t4ylGSF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tP7t4ylGSF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tP7t4ylGSF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tP7t4ylGSF .navbar.opened {
  transition: all 0.3s;
}
.cid-tP7t4ylGSF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tP7t4ylGSF .navbar .navbar-logo img {
  width: auto;
}
.cid-tP7t4ylGSF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tP7t4ylGSF .navbar.collapsed {
  justify-content: center;
}
.cid-tP7t4ylGSF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tP7t4ylGSF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tP7t4ylGSF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tP7t4ylGSF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tP7t4ylGSF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tP7t4ylGSF .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-tP7t4ylGSF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tP7t4ylGSF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tP7t4ylGSF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tP7t4ylGSF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tP7t4ylGSF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tP7t4ylGSF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tP7t4ylGSF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tP7t4ylGSF .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-tP7t4ylGSF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tP7t4ylGSF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tP7t4ylGSF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tP7t4ylGSF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tP7t4ylGSF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tP7t4ylGSF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tP7t4ylGSF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tP7t4ylGSF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tP7t4ylGSF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tP7t4ylGSF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tP7t4ylGSF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tP7t4ylGSF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tP7t4ylGSF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tP7t4ylGSF .dropdown-item.active,
.cid-tP7t4ylGSF .dropdown-item:active {
  background-color: transparent;
}
.cid-tP7t4ylGSF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tP7t4ylGSF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tP7t4ylGSF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tP7t4ylGSF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tP7t4ylGSF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tP7t4ylGSF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tP7t4ylGSF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tP7t4ylGSF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tP7t4ylGSF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tP7t4ylGSF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tP7t4ylGSF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tP7t4ylGSF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP7t4ylGSF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tP7t4ylGSF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tP7t4ylGSF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP7t4ylGSF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tP7t4ylGSF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tP7t4ylGSF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tP7t4ylGSF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tP7t4ylGSF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tP7t4ylGSF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tP7t4ylGSF .navbar {
    height: 70px;
  }
  .cid-tP7t4ylGSF .navbar.opened {
    height: auto;
  }
  .cid-tP7t4ylGSF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2vGQWBReK {
  background-image: url("../../../assets/images/img-20240105-74154748-2000x1500.webp");
}
.cid-u2vGQWBReK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2vGQWBReK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2vGQWBReK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2vGQWBReK .mbr-text,
.cid-u2vGQWBReK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2vGQWBReK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tRDRhkoFrh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDRhkoFrh img,
.cid-tRDRhkoFrh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tRDRhkoFrh .item:focus,
.cid-tRDRhkoFrh span:focus {
  outline: none;
}
.cid-tRDRhkoFrh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tRDRhkoFrh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tRDRhkoFrh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tRDRhkoFrh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tRDRhkoFrh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tRDRhkoFrh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tRDRhkoFrh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tRDRhkoFrh .mbr-section-title {
  color: #ffffff;
}
.cid-tRDRhkoFrh .mbr-text,
.cid-tRDRhkoFrh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tRDRhkoFrh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tRDRhkoFrh .item-subtitle {
  text-align: left;
}
.cid-tRDRhkoFrh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRDRmI7vJa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDRmI7vJa img,
.cid-tRDRmI7vJa .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tRDRmI7vJa .item:focus,
.cid-tRDRmI7vJa span:focus {
  outline: none;
}
.cid-tRDRmI7vJa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tRDRmI7vJa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tRDRmI7vJa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tRDRmI7vJa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tRDRmI7vJa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tRDRmI7vJa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tRDRmI7vJa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tRDRmI7vJa .mbr-section-title {
  color: #232323;
}
.cid-tRDRmI7vJa .mbr-text,
.cid-tRDRmI7vJa .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tRDRmI7vJa .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tRDRmI7vJa .item-subtitle {
  text-align: left;
}
.cid-uvUhuBdXun {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvUhuBdXun img,
.cid-uvUhuBdXun .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvUhuBdXun .item:focus,
.cid-uvUhuBdXun span:focus {
  outline: none;
}
.cid-uvUhuBdXun .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvUhuBdXun .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvUhuBdXun .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvUhuBdXun .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvUhuBdXun .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvUhuBdXun .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvUhuBdXun .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvUhuBdXun .mbr-section-title {
  color: #232323;
}
.cid-uvUhuBdXun .mbr-text,
.cid-uvUhuBdXun .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvUhuBdXun .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvUhuBdXun .item-subtitle {
  text-align: left;
}
.cid-uYN6pCzprf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN6pCzprf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6pCzprf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6pCzprf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6pCzprf .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6n1FBXm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN6n1FBXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6n1FBXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6n1FBXm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN6n1FBXm .number {
  color: #ffffff;
}
.cid-uYN6n1FBXm .period {
  display: block;
}
.cid-uYN6n1FBXm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN6n1FBXm .period {
    font-size: 0.8rem;
  }
}
.cid-uYN6n1FBXm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN6n1FBXm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN6n1FBXm .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6n1FBXm .mbr-text {
  color: #ffffff;
}
.cid-uYN6n1FBXm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN6n1FBXm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN6n1FBXm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN6n1FBXm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-tP7t4zsuCP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tP7t4zsuCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP7t4zsuCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP7t4zsuCP .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tP7t4zsuCP .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tP7t4zsuCP .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tP7t4zsuCP .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tP7t4zsuCP .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tP7t4zsuCP .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tP7t4zsuCP .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tP7t4zsuCP .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tP7t4zsuCP .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tP7t4zsuCP [class^="socicon-"]:before,
.cid-tP7t4zsuCP [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tP7t4zsuCP .mbr-section-title,
.cid-tP7t4zsuCP .mbr-social-likes {
  color: #ffffff;
}
.cid-u39dR0drxw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39dR0drxw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39dR0drxw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39dR0drxw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39dR0drxw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39dR0drxw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39dR0drxw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39dR0drxw .mbr-text {
  color: #ffffff;
}
.cid-u39dR0drxw .card-title {
  color: #ffffff;
}
.cid-u39dR0drxw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39dR0drxw .mbr-section-title {
  color: #ffffff;
}
.cid-u39dR0drxw .link {
  color: #4479d9;
}
.cid-tP7t4zMeLF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tP7t4zMeLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tP7t4zMeLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tP7t4zMeLF .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tP7t4zMeLF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tP7t4zMeLF .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tP7t4zMeLF .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tP7t4zMeLF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tP7t4zMeLF .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tQJ7Atn88l {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tQJ7Atn88l nav.navbar {
  position: fixed;
}
.cid-tQJ7Atn88l .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-tQJ7Atn88l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tQJ7Atn88l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tQJ7Atn88l .dropdown-item:hover,
.cid-tQJ7Atn88l .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tQJ7Atn88l .dropdown-item:hover span {
  color: white;
}
.cid-tQJ7Atn88l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tQJ7Atn88l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tQJ7Atn88l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tQJ7Atn88l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tQJ7Atn88l .nav-link {
  position: relative;
}
.cid-tQJ7Atn88l .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tQJ7Atn88l .container {
    flex-wrap: wrap;
  }
}
.cid-tQJ7Atn88l .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tQJ7Atn88l .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tQJ7Atn88l .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tQJ7Atn88l .dropdown-menu,
.cid-tQJ7Atn88l .navbar.opened {
  background: #000000 !important;
}
.cid-tQJ7Atn88l .nav-item:focus,
.cid-tQJ7Atn88l .nav-link:focus {
  outline: none;
}
.cid-tQJ7Atn88l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tQJ7Atn88l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tQJ7Atn88l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tQJ7Atn88l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tQJ7Atn88l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tQJ7Atn88l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tQJ7Atn88l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tQJ7Atn88l .navbar.opened {
  transition: all 0.3s;
}
.cid-tQJ7Atn88l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tQJ7Atn88l .navbar .navbar-logo img {
  width: auto;
}
.cid-tQJ7Atn88l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQJ7Atn88l .navbar.collapsed {
  justify-content: center;
}
.cid-tQJ7Atn88l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tQJ7Atn88l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tQJ7Atn88l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tQJ7Atn88l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQJ7Atn88l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQJ7Atn88l .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-tQJ7Atn88l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQJ7Atn88l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tQJ7Atn88l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tQJ7Atn88l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tQJ7Atn88l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQJ7Atn88l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQJ7Atn88l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQJ7Atn88l .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-tQJ7Atn88l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tQJ7Atn88l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQJ7Atn88l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tQJ7Atn88l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tQJ7Atn88l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tQJ7Atn88l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tQJ7Atn88l .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tQJ7Atn88l .navbar.navbar-short {
  min-height: 60px;
}
.cid-tQJ7Atn88l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tQJ7Atn88l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tQJ7Atn88l .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tQJ7Atn88l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQJ7Atn88l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQJ7Atn88l .dropdown-item.active,
.cid-tQJ7Atn88l .dropdown-item:active {
  background-color: transparent;
}
.cid-tQJ7Atn88l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tQJ7Atn88l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQJ7Atn88l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQJ7Atn88l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tQJ7Atn88l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tQJ7Atn88l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQJ7Atn88l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tQJ7Atn88l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tQJ7Atn88l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tQJ7Atn88l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tQJ7Atn88l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tQJ7Atn88l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQJ7Atn88l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tQJ7Atn88l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tQJ7Atn88l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQJ7Atn88l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tQJ7Atn88l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tQJ7Atn88l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tQJ7Atn88l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tQJ7Atn88l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tQJ7Atn88l .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tQJ7Atn88l .navbar {
    height: 70px;
  }
  .cid-tQJ7Atn88l .navbar.opened {
    height: auto;
  }
  .cid-tQJ7Atn88l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2w5hGTYaj {
  background-image: url("../../../assets/images/motherboard.webp");
}
.cid-u2w5hGTYaj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w5hGTYaj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w5hGTYaj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2w5hGTYaj .mbr-text,
.cid-u2w5hGTYaj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2w5hGTYaj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tZFEqANv3A {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZFEqANv3A img,
.cid-tZFEqANv3A .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZFEqANv3A .item:focus,
.cid-tZFEqANv3A span:focus {
  outline: none;
}
.cid-tZFEqANv3A .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZFEqANv3A .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZFEqANv3A .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZFEqANv3A .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZFEqANv3A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZFEqANv3A .mbr-section-title {
  color: #232323;
}
.cid-tZFEqANv3A .mbr-text,
.cid-tZFEqANv3A .mbr-section-btn {
  text-align: left;
}
.cid-tZFEqANv3A .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZFEqANv3A .item-subtitle {
  text-align: center;
}
.cid-tZFErmUIW1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZFErmUIW1 img,
.cid-tZFErmUIW1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZFErmUIW1 .item:focus,
.cid-tZFErmUIW1 span:focus {
  outline: none;
}
.cid-tZFErmUIW1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZFErmUIW1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZFErmUIW1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZFErmUIW1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZFErmUIW1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZFErmUIW1 .mbr-section-title {
  color: #232323;
}
.cid-tZFErmUIW1 .mbr-text,
.cid-tZFErmUIW1 .mbr-section-btn {
  text-align: left;
}
.cid-tZFErmUIW1 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZFErmUIW1 .item-subtitle {
  text-align: center;
}
.cid-tZFFx3me0E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tZFFx3me0E img,
.cid-tZFFx3me0E .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tZFFx3me0E .item:focus,
.cid-tZFFx3me0E span:focus {
  outline: none;
}
.cid-tZFFx3me0E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZFFx3me0E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZFFx3me0E .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZFFx3me0E .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZFFx3me0E .item-wrapper {
  background: transparent;
}
.cid-tZFFx3me0E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZFFx3me0E .mbr-section-title {
  color: #232323;
}
.cid-tZFFx3me0E .mbr-text,
.cid-tZFFx3me0E .mbr-section-btn {
  text-align: left;
}
.cid-tZFFx3me0E .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-tZFFx3me0E .item-subtitle {
  text-align: center;
}
.cid-uZRCbxAhWq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZRCbxAhWq img,
.cid-uZRCbxAhWq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uZRCbxAhWq .item:focus,
.cid-uZRCbxAhWq span:focus {
  outline: none;
}
.cid-uZRCbxAhWq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZRCbxAhWq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZRCbxAhWq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZRCbxAhWq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZRCbxAhWq .item-wrapper {
  background: transparent;
}
.cid-uZRCbxAhWq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZRCbxAhWq .mbr-section-title {
  color: #232323;
}
.cid-uZRCbxAhWq .mbr-text,
.cid-uZRCbxAhWq .mbr-section-btn {
  text-align: left;
}
.cid-uZRCbxAhWq .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-uZRCbxAhWq .item-subtitle {
  text-align: center;
}
.cid-uYNgmuF2EH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNgmuF2EH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgmuF2EH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgmuF2EH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgmuF2EH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNglrGZMB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNglrGZMB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNglrGZMB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNglrGZMB .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNglrGZMB .number {
  color: #ffffff;
}
.cid-uYNglrGZMB .period {
  display: block;
}
.cid-uYNglrGZMB .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNglrGZMB .period {
    font-size: 0.8rem;
  }
}
.cid-uYNglrGZMB .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNglrGZMB .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNglrGZMB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNglrGZMB .mbr-text {
  color: #ffffff;
}
.cid-uYNglrGZMB .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNglrGZMB .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNglrGZMB .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNglrGZMB .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w5ouobyg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w5ouobyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w5ouobyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w5ouobyg .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w5ouobyg .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w5ouobyg .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w5ouobyg .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w5ouobyg .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w5ouobyg .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w5ouobyg .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w5ouobyg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w5ouobyg .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w5ouobyg [class^="socicon-"]:before,
.cid-u2w5ouobyg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w5ouobyg .mbr-section-title,
.cid-u2w5ouobyg .mbr-social-likes {
  color: #ffffff;
}
.cid-u39ledEryP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39ledEryP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39ledEryP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39ledEryP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39ledEryP .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39ledEryP .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39ledEryP .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39ledEryP .mbr-text {
  color: #ffffff;
}
.cid-u39ledEryP .card-title {
  color: #ffffff;
}
.cid-u39ledEryP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39ledEryP .mbr-section-title {
  color: #ffffff;
}
.cid-u39ledEryP .link {
  color: #4479d9;
}
.cid-tQJ7AurH6z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tQJ7AurH6z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQJ7AurH6z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQJ7AurH6z .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tQJ7AurH6z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tQJ7AurH6z .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tQJ7AurH6z .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tQJ7AurH6z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tQJ7AurH6z .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tRDOyiPuvt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tRDOyiPuvt nav.navbar {
  position: fixed;
}
.cid-tRDOyiPuvt .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-tRDOyiPuvt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRDOyiPuvt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRDOyiPuvt .dropdown-item:hover,
.cid-tRDOyiPuvt .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tRDOyiPuvt .dropdown-item:hover span {
  color: white;
}
.cid-tRDOyiPuvt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRDOyiPuvt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRDOyiPuvt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRDOyiPuvt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRDOyiPuvt .nav-link {
  position: relative;
}
.cid-tRDOyiPuvt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRDOyiPuvt .container {
    flex-wrap: wrap;
  }
}
.cid-tRDOyiPuvt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRDOyiPuvt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tRDOyiPuvt .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRDOyiPuvt .dropdown-menu,
.cid-tRDOyiPuvt .navbar.opened {
  background: #000000 !important;
}
.cid-tRDOyiPuvt .nav-item:focus,
.cid-tRDOyiPuvt .nav-link:focus {
  outline: none;
}
.cid-tRDOyiPuvt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRDOyiPuvt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRDOyiPuvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRDOyiPuvt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRDOyiPuvt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRDOyiPuvt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRDOyiPuvt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tRDOyiPuvt .navbar.opened {
  transition: all 0.3s;
}
.cid-tRDOyiPuvt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRDOyiPuvt .navbar .navbar-logo img {
  width: auto;
}
.cid-tRDOyiPuvt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRDOyiPuvt .navbar.collapsed {
  justify-content: center;
}
.cid-tRDOyiPuvt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRDOyiPuvt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRDOyiPuvt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tRDOyiPuvt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRDOyiPuvt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRDOyiPuvt .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-tRDOyiPuvt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRDOyiPuvt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRDOyiPuvt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRDOyiPuvt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRDOyiPuvt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRDOyiPuvt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRDOyiPuvt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRDOyiPuvt .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-tRDOyiPuvt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRDOyiPuvt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRDOyiPuvt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRDOyiPuvt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRDOyiPuvt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRDOyiPuvt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRDOyiPuvt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRDOyiPuvt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRDOyiPuvt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRDOyiPuvt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRDOyiPuvt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRDOyiPuvt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRDOyiPuvt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRDOyiPuvt .dropdown-item.active,
.cid-tRDOyiPuvt .dropdown-item:active {
  background-color: transparent;
}
.cid-tRDOyiPuvt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRDOyiPuvt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRDOyiPuvt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRDOyiPuvt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tRDOyiPuvt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRDOyiPuvt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRDOyiPuvt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRDOyiPuvt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRDOyiPuvt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRDOyiPuvt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tRDOyiPuvt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRDOyiPuvt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRDOyiPuvt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRDOyiPuvt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRDOyiPuvt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRDOyiPuvt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRDOyiPuvt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRDOyiPuvt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRDOyiPuvt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRDOyiPuvt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRDOyiPuvt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tRDOyiPuvt .navbar {
    height: 70px;
  }
  .cid-tRDOyiPuvt .navbar.opened {
    height: auto;
  }
  .cid-tRDOyiPuvt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRDOQYJp7q {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOQYJp7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOQYJp7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOQYJp7q .mbr-section-title {
  color: #ffffff;
}
.cid-tRDOQYJp7q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1dTzYAxvQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTzYAxvQ img,
.cid-v1dTzYAxvQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTzYAxvQ .item:focus,
.cid-v1dTzYAxvQ span:focus {
  outline: none;
}
.cid-v1dTzYAxvQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTzYAxvQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTzYAxvQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTzYAxvQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTzYAxvQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTzYAxvQ .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTzYAxvQ .mbr-text,
.cid-v1dTzYAxvQ .mbr-section-btn {
  text-align: left;
}
.cid-v1dTzYAxvQ .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTzYAxvQ .item-subtitle {
  text-align: center;
}
.cid-v1dTzYAxvQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRDOylbyUq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOylbyUq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOylbyUq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOylbyUq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRDOylbyUq .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTAKKa4L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTAKKa4L img,
.cid-v1dTAKKa4L .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTAKKa4L .item:focus,
.cid-v1dTAKKa4L span:focus {
  outline: none;
}
.cid-v1dTAKKa4L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTAKKa4L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTAKKa4L .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTAKKa4L .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTAKKa4L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTAKKa4L .mbr-section-title {
  color: #232323;
}
.cid-v1dTAKKa4L .mbr-text,
.cid-v1dTAKKa4L .mbr-section-btn {
  text-align: left;
}
.cid-v1dTAKKa4L .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTAKKa4L .item-subtitle {
  text-align: center;
}
.cid-tRDOymmiCM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOymmiCM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOymmiCM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOymmiCM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRDOymmiCM .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTBwtYHA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTBwtYHA img,
.cid-v1dTBwtYHA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTBwtYHA .item:focus,
.cid-v1dTBwtYHA span:focus {
  outline: none;
}
.cid-v1dTBwtYHA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTBwtYHA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTBwtYHA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTBwtYHA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTBwtYHA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTBwtYHA .mbr-section-title {
  color: #232323;
}
.cid-v1dTBwtYHA .mbr-text,
.cid-v1dTBwtYHA .mbr-section-btn {
  text-align: left;
}
.cid-v1dTBwtYHA .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTBwtYHA .item-subtitle {
  text-align: center;
}
.cid-tRDOyntuT3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOyntuT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOyntuT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOyntuT3 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTCtGwYj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTCtGwYj img,
.cid-v1dTCtGwYj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTCtGwYj .item:focus,
.cid-v1dTCtGwYj span:focus {
  outline: none;
}
.cid-v1dTCtGwYj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTCtGwYj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTCtGwYj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTCtGwYj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTCtGwYj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTCtGwYj .mbr-section-title {
  color: #232323;
}
.cid-v1dTCtGwYj .mbr-text,
.cid-v1dTCtGwYj .mbr-section-btn {
  text-align: left;
}
.cid-v1dTCtGwYj .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTCtGwYj .item-subtitle {
  text-align: center;
}
.cid-tRDOyoCOb9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOyoCOb9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOyoCOb9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOyoCOb9 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTD8Oq6L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTD8Oq6L img,
.cid-v1dTD8Oq6L .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTD8Oq6L .item:focus,
.cid-v1dTD8Oq6L span:focus {
  outline: none;
}
.cid-v1dTD8Oq6L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTD8Oq6L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTD8Oq6L .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTD8Oq6L .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTD8Oq6L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTD8Oq6L .mbr-section-title {
  color: #232323;
}
.cid-v1dTD8Oq6L .mbr-text,
.cid-v1dTD8Oq6L .mbr-section-btn {
  text-align: left;
}
.cid-v1dTD8Oq6L .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTD8Oq6L .item-subtitle {
  text-align: center;
}
.cid-uYN5Ris6vv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN5Ris6vv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN5Ris6vv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN5Ris6vv .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN5Ris6vv .number {
  color: #ffffff;
}
.cid-uYN5Ris6vv .period {
  display: block;
}
.cid-uYN5Ris6vv .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN5Ris6vv .period {
    font-size: 0.8rem;
  }
}
.cid-uYN5Ris6vv .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN5Ris6vv .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN5Ris6vv .mbr-section-title {
  color: #ffffff;
}
.cid-uYN5Ris6vv .mbr-text {
  color: #ffffff;
}
.cid-uYN5Ris6vv .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN5Ris6vv .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN5Ris6vv .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN5Ris6vv .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-tRDOyq7C6Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-tRDOyq7C6Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOyq7C6Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOyq7C6Y .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tRDOyq7C6Y .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tRDOyq7C6Y .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tRDOyq7C6Y .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tRDOyq7C6Y .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tRDOyq7C6Y .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tRDOyq7C6Y .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tRDOyq7C6Y .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tRDOyq7C6Y .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tRDOyq7C6Y [class^="socicon-"]:before,
.cid-tRDOyq7C6Y [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tRDOyq7C6Y .mbr-section-title,
.cid-tRDOyq7C6Y .mbr-social-likes {
  color: #ffffff;
}
.cid-tRDOyqAL7b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tRDOyqAL7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOyqAL7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOyqAL7b .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-tRDOyqAL7b .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-tRDOyqAL7b .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tRDOyqAL7b .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-tRDOyqAL7b .mbr-text {
  color: #ffffff;
}
.cid-tRDOyqAL7b .card-title {
  color: #ffffff;
}
.cid-tRDOyqAL7b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRDOyqAL7b .mbr-section-title {
  color: #ffffff;
}
.cid-tRDOyr7jGO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tRDOyr7jGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRDOyr7jGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRDOyr7jGO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tRDOyr7jGO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRDOyr7jGO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tRDOyr7jGO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tRDOyr7jGO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tRDOyr7jGO .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tSLwzae50v {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tSLwzae50v nav.navbar {
  position: fixed;
}
.cid-tSLwzae50v .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-tSLwzae50v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSLwzae50v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSLwzae50v .dropdown-item:hover,
.cid-tSLwzae50v .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tSLwzae50v .dropdown-item:hover span {
  color: white;
}
.cid-tSLwzae50v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSLwzae50v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSLwzae50v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSLwzae50v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSLwzae50v .nav-link {
  position: relative;
}
.cid-tSLwzae50v .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSLwzae50v .container {
    flex-wrap: wrap;
  }
}
.cid-tSLwzae50v .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSLwzae50v .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSLwzae50v .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSLwzae50v .dropdown-menu,
.cid-tSLwzae50v .navbar.opened {
  background: #000000 !important;
}
.cid-tSLwzae50v .nav-item:focus,
.cid-tSLwzae50v .nav-link:focus {
  outline: none;
}
.cid-tSLwzae50v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSLwzae50v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSLwzae50v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSLwzae50v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSLwzae50v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSLwzae50v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSLwzae50v .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tSLwzae50v .navbar.opened {
  transition: all 0.3s;
}
.cid-tSLwzae50v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSLwzae50v .navbar .navbar-logo img {
  width: auto;
}
.cid-tSLwzae50v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSLwzae50v .navbar.collapsed {
  justify-content: center;
}
.cid-tSLwzae50v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSLwzae50v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSLwzae50v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tSLwzae50v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSLwzae50v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSLwzae50v .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-tSLwzae50v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSLwzae50v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSLwzae50v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSLwzae50v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSLwzae50v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSLwzae50v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSLwzae50v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSLwzae50v .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-tSLwzae50v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSLwzae50v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSLwzae50v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSLwzae50v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSLwzae50v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSLwzae50v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSLwzae50v .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSLwzae50v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSLwzae50v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSLwzae50v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSLwzae50v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSLwzae50v .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSLwzae50v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSLwzae50v .dropdown-item.active,
.cid-tSLwzae50v .dropdown-item:active {
  background-color: transparent;
}
.cid-tSLwzae50v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSLwzae50v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSLwzae50v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSLwzae50v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tSLwzae50v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSLwzae50v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSLwzae50v ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSLwzae50v .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSLwzae50v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSLwzae50v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tSLwzae50v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSLwzae50v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSLwzae50v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSLwzae50v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSLwzae50v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSLwzae50v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSLwzae50v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSLwzae50v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSLwzae50v .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSLwzae50v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSLwzae50v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSLwzae50v .navbar {
    height: 70px;
  }
  .cid-tSLwzae50v .navbar.opened {
    height: auto;
  }
  .cid-tSLwzae50v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3wo7ly8s3 {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-u3wo7ly8s3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3wo7ly8s3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3wo7ly8s3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u3wo7ly8s3 .mbr-text,
.cid-u3wo7ly8s3 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u3wo7ly8s3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZtyGlq39Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZtyGlq39Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZtyGlq39Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZtyGlq39Y .mbr-section-title {
  color: #ffffff;
}
.cid-uZtyGlq39Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSMQwrMKoX {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tSMQwrMKoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSMQwrMKoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSMQwrMKoX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSMQwrMKoX .mbr-section-title {
  color: #ffffff;
}
.cid-tSLxPfSe1u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tSLxPfSe1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSLxPfSe1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSLxPfSe1u .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tSLxPfSe1u .img-item {
  position: relative;
}
.cid-tSLxPfSe1u .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tSLxPfSe1u .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tSLxPfSe1u .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tSLxPfSe1u .text2 {
  color: #877834;
}
.cid-tSLxPfSe1u .text1 {
  color: #ffffff;
}
.cid-uYNghE3WDj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNghE3WDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNghE3WDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNghE3WDj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNghE3WDj .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgg8GSUH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNgg8GSUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgg8GSUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgg8GSUH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNgg8GSUH .number {
  color: #ffffff;
}
.cid-uYNgg8GSUH .period {
  display: block;
}
.cid-uYNgg8GSUH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNgg8GSUH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNgg8GSUH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNgg8GSUH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNgg8GSUH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgg8GSUH .mbr-text {
  color: #ffffff;
}
.cid-uYNgg8GSUH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNgg8GSUH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNgg8GSUH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNgg8GSUH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u39laIfiqb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39laIfiqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39laIfiqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39laIfiqb .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39laIfiqb .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39laIfiqb .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39laIfiqb .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39laIfiqb .mbr-text {
  color: #ffffff;
}
.cid-u39laIfiqb .card-title {
  color: #ffffff;
}
.cid-u39laIfiqb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39laIfiqb .mbr-section-title {
  color: #ffffff;
}
.cid-u39laIfiqb .link {
  color: #4479d9;
}
.cid-tSLwzbA45e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tSLwzbA45e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSLwzbA45e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSLwzbA45e .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tSLwzbA45e .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSLwzbA45e .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tSLwzbA45e .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tSLwzbA45e div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSLwzbA45e .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tSMV79R7Cj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tSMV79R7Cj nav.navbar {
  position: fixed;
}
.cid-tSMV79R7Cj .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-tSMV79R7Cj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSMV79R7Cj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSMV79R7Cj .dropdown-item:hover,
.cid-tSMV79R7Cj .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tSMV79R7Cj .dropdown-item:hover span {
  color: white;
}
.cid-tSMV79R7Cj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSMV79R7Cj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSMV79R7Cj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSMV79R7Cj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSMV79R7Cj .nav-link {
  position: relative;
}
.cid-tSMV79R7Cj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSMV79R7Cj .container {
    flex-wrap: wrap;
  }
}
.cid-tSMV79R7Cj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSMV79R7Cj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSMV79R7Cj .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSMV79R7Cj .dropdown-menu,
.cid-tSMV79R7Cj .navbar.opened {
  background: #000000 !important;
}
.cid-tSMV79R7Cj .nav-item:focus,
.cid-tSMV79R7Cj .nav-link:focus {
  outline: none;
}
.cid-tSMV79R7Cj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSMV79R7Cj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSMV79R7Cj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSMV79R7Cj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSMV79R7Cj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSMV79R7Cj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSMV79R7Cj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tSMV79R7Cj .navbar.opened {
  transition: all 0.3s;
}
.cid-tSMV79R7Cj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSMV79R7Cj .navbar .navbar-logo img {
  width: auto;
}
.cid-tSMV79R7Cj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSMV79R7Cj .navbar.collapsed {
  justify-content: center;
}
.cid-tSMV79R7Cj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSMV79R7Cj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSMV79R7Cj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tSMV79R7Cj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSMV79R7Cj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSMV79R7Cj .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-tSMV79R7Cj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSMV79R7Cj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSMV79R7Cj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSMV79R7Cj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSMV79R7Cj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSMV79R7Cj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSMV79R7Cj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSMV79R7Cj .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-tSMV79R7Cj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSMV79R7Cj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSMV79R7Cj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSMV79R7Cj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSMV79R7Cj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSMV79R7Cj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSMV79R7Cj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSMV79R7Cj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSMV79R7Cj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSMV79R7Cj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSMV79R7Cj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSMV79R7Cj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSMV79R7Cj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSMV79R7Cj .dropdown-item.active,
.cid-tSMV79R7Cj .dropdown-item:active {
  background-color: transparent;
}
.cid-tSMV79R7Cj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSMV79R7Cj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSMV79R7Cj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSMV79R7Cj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tSMV79R7Cj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSMV79R7Cj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSMV79R7Cj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSMV79R7Cj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSMV79R7Cj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSMV79R7Cj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tSMV79R7Cj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSMV79R7Cj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSMV79R7Cj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSMV79R7Cj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSMV79R7Cj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSMV79R7Cj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSMV79R7Cj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSMV79R7Cj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSMV79R7Cj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSMV79R7Cj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSMV79R7Cj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSMV79R7Cj .navbar {
    height: 70px;
  }
  .cid-tSMV79R7Cj .navbar.opened {
    height: auto;
  }
  .cid-tSMV79R7Cj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3wmEk2M4t {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-u3wmEk2M4t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3wmEk2M4t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3wmEk2M4t .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u3wmEk2M4t .mbr-text,
.cid-u3wmEk2M4t .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u3wmEk2M4t .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uZtyqGkvx5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZtyqGkvx5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZtyqGkvx5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZtyqGkvx5 .mbr-section-title {
  color: #ffffff;
}
.cid-uZtyqGkvx5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSMWk0OCLC {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tSMWk0OCLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSMWk0OCLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSMWk0OCLC .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-tSMWk0OCLC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tSMWk0OCLC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tSMWk0OCLC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSMWk0OCLC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tSMWk0OCLC .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tSMWk0OCLC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tSMWk0OCLC .mbr-text,
.cid-tSMWk0OCLC .mbr-section-btn {
  color: #ffffff;
}
.cid-tSMWk0OCLC .card-title {
  color: #ffffff;
}
.cid-uYNg7PGqSl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNg7PGqSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNg7PGqSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNg7PGqSl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNg7PGqSl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNg6p9Pvy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNg6p9Pvy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNg6p9Pvy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNg6p9Pvy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNg6p9Pvy .number {
  color: #ffffff;
}
.cid-uYNg6p9Pvy .period {
  display: block;
}
.cid-uYNg6p9Pvy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNg6p9Pvy .period {
    font-size: 0.8rem;
  }
}
.cid-uYNg6p9Pvy .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNg6p9Pvy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNg6p9Pvy .mbr-section-title {
  color: #ffffff;
}
.cid-uYNg6p9Pvy .mbr-text {
  color: #ffffff;
}
.cid-uYNg6p9Pvy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNg6p9Pvy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNg6p9Pvy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNg6p9Pvy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u39l6N3OkL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39l6N3OkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39l6N3OkL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39l6N3OkL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39l6N3OkL .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39l6N3OkL .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39l6N3OkL .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39l6N3OkL .mbr-text {
  color: #ffffff;
}
.cid-u39l6N3OkL .card-title {
  color: #ffffff;
}
.cid-u39l6N3OkL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39l6N3OkL .mbr-section-title {
  color: #ffffff;
}
.cid-u39l6N3OkL .link {
  color: #4479d9;
}
.cid-tSMV7bbSou {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tSMV7bbSou .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSMV7bbSou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSMV7bbSou .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tSMV7bbSou .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSMV7bbSou .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tSMV7bbSou .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tSMV7bbSou div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSMV7bbSou .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tSXYHzkbNo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tSXYHzkbNo nav.navbar {
  position: fixed;
}
.cid-tSXYHzkbNo .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-tSXYHzkbNo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSXYHzkbNo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSXYHzkbNo .dropdown-item:hover,
.cid-tSXYHzkbNo .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tSXYHzkbNo .dropdown-item:hover span {
  color: white;
}
.cid-tSXYHzkbNo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSXYHzkbNo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSXYHzkbNo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSXYHzkbNo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSXYHzkbNo .nav-link {
  position: relative;
}
.cid-tSXYHzkbNo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSXYHzkbNo .container {
    flex-wrap: wrap;
  }
}
.cid-tSXYHzkbNo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSXYHzkbNo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSXYHzkbNo .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSXYHzkbNo .dropdown-menu,
.cid-tSXYHzkbNo .navbar.opened {
  background: #000000 !important;
}
.cid-tSXYHzkbNo .nav-item:focus,
.cid-tSXYHzkbNo .nav-link:focus {
  outline: none;
}
.cid-tSXYHzkbNo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSXYHzkbNo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSXYHzkbNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSXYHzkbNo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSXYHzkbNo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSXYHzkbNo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSXYHzkbNo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tSXYHzkbNo .navbar.opened {
  transition: all 0.3s;
}
.cid-tSXYHzkbNo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSXYHzkbNo .navbar .navbar-logo img {
  width: auto;
}
.cid-tSXYHzkbNo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSXYHzkbNo .navbar.collapsed {
  justify-content: center;
}
.cid-tSXYHzkbNo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSXYHzkbNo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSXYHzkbNo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tSXYHzkbNo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSXYHzkbNo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSXYHzkbNo .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-tSXYHzkbNo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSXYHzkbNo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSXYHzkbNo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSXYHzkbNo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSXYHzkbNo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSXYHzkbNo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSXYHzkbNo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSXYHzkbNo .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-tSXYHzkbNo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSXYHzkbNo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSXYHzkbNo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSXYHzkbNo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSXYHzkbNo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSXYHzkbNo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSXYHzkbNo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSXYHzkbNo .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSXYHzkbNo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSXYHzkbNo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSXYHzkbNo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSXYHzkbNo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSXYHzkbNo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSXYHzkbNo .dropdown-item.active,
.cid-tSXYHzkbNo .dropdown-item:active {
  background-color: transparent;
}
.cid-tSXYHzkbNo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSXYHzkbNo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSXYHzkbNo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSXYHzkbNo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tSXYHzkbNo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSXYHzkbNo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSXYHzkbNo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSXYHzkbNo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSXYHzkbNo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSXYHzkbNo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tSXYHzkbNo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSXYHzkbNo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSXYHzkbNo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSXYHzkbNo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSXYHzkbNo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSXYHzkbNo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSXYHzkbNo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSXYHzkbNo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSXYHzkbNo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSXYHzkbNo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSXYHzkbNo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSXYHzkbNo .navbar {
    height: 70px;
  }
  .cid-tSXYHzkbNo .navbar.opened {
    height: auto;
  }
  .cid-tSXYHzkbNo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3wlYHF569 {
  background-image: url("../../../assets/images/hamlin-made-jpeg-black-background-1190x1125.webp");
}
.cid-u3wlYHF569 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3wlYHF569 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3wlYHF569 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u3wlYHF569 .mbr-text,
.cid-u3wlYHF569 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u3wlYHF569 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tT3NgsOoys {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-tT3NgsOoys .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3NgsOoys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3DefGbXX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffe161;
}
.cid-tT3DefGbXX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3DefGbXX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tT3DefGbXX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tT3DefGbXX .row {
  flex-direction: row-reverse;
}
.cid-tT3DefGbXX img {
  width: 100%;
}
.cid-tT3DefGbXX .mbr-description {
  color: #000000;
}
.cid-tT3PFGgefb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tT3PFGgefb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3PFGgefb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3PFGgefb .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tT3PFGgefb .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tT3PFGgefb .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tT3PFGgefb .wrapper {
  padding: 30px 0;
}
.cid-tT3PFGgefb .mbr-section-title {
  color: #fafafa;
}
.cid-tT3PFGgefb .mbr-text,
.cid-tT3PFGgefb .mbr-section-btn {
  color: #ffffff;
}
.cid-uYNfWRZkTL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNfWRZkTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNfWRZkTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNfWRZkTL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNfWRZkTL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNfVVrl1d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNfVVrl1d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNfVVrl1d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNfVVrl1d .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNfVVrl1d .number {
  color: #ffffff;
}
.cid-uYNfVVrl1d .period {
  display: block;
}
.cid-uYNfVVrl1d .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNfVVrl1d .period {
    font-size: 0.8rem;
  }
}
.cid-uYNfVVrl1d .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNfVVrl1d .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNfVVrl1d .mbr-section-title {
  color: #ffffff;
}
.cid-uYNfVVrl1d .mbr-text {
  color: #ffffff;
}
.cid-uYNfVVrl1d .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNfVVrl1d .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNfVVrl1d .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNfVVrl1d .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u39kYscPug {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39kYscPug .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39kYscPug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39kYscPug .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39kYscPug .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39kYscPug .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39kYscPug .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39kYscPug .mbr-text {
  color: #ffffff;
}
.cid-u39kYscPug .card-title {
  color: #ffffff;
}
.cid-u39kYscPug .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39kYscPug .mbr-section-title {
  color: #ffffff;
}
.cid-u39kYscPug .link {
  color: #4479d9;
}
.cid-tSXYHA7rpE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tSXYHA7rpE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSXYHA7rpE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSXYHA7rpE .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tSXYHA7rpE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSXYHA7rpE .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tSXYHA7rpE .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tSXYHA7rpE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tSXYHA7rpE .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u14qswqX1w {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u14qswqX1w nav.navbar {
  position: fixed;
}
.cid-u14qswqX1w .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-u14qswqX1w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u14qswqX1w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u14qswqX1w .dropdown-item:hover,
.cid-u14qswqX1w .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u14qswqX1w .dropdown-item:hover span {
  color: white;
}
.cid-u14qswqX1w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u14qswqX1w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u14qswqX1w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u14qswqX1w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u14qswqX1w .nav-link {
  position: relative;
}
.cid-u14qswqX1w .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u14qswqX1w .container {
    flex-wrap: wrap;
  }
}
.cid-u14qswqX1w .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u14qswqX1w .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u14qswqX1w .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u14qswqX1w .dropdown-menu,
.cid-u14qswqX1w .navbar.opened {
  background: #000000 !important;
}
.cid-u14qswqX1w .nav-item:focus,
.cid-u14qswqX1w .nav-link:focus {
  outline: none;
}
.cid-u14qswqX1w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u14qswqX1w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u14qswqX1w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u14qswqX1w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u14qswqX1w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u14qswqX1w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u14qswqX1w .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u14qswqX1w .navbar.opened {
  transition: all 0.3s;
}
.cid-u14qswqX1w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u14qswqX1w .navbar .navbar-logo img {
  width: auto;
}
.cid-u14qswqX1w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u14qswqX1w .navbar.collapsed {
  justify-content: center;
}
.cid-u14qswqX1w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u14qswqX1w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u14qswqX1w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u14qswqX1w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u14qswqX1w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u14qswqX1w .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-u14qswqX1w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u14qswqX1w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u14qswqX1w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u14qswqX1w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u14qswqX1w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u14qswqX1w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u14qswqX1w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u14qswqX1w .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-u14qswqX1w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u14qswqX1w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u14qswqX1w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u14qswqX1w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u14qswqX1w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u14qswqX1w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u14qswqX1w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u14qswqX1w .navbar.navbar-short {
  min-height: 60px;
}
.cid-u14qswqX1w .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u14qswqX1w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u14qswqX1w .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u14qswqX1w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u14qswqX1w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u14qswqX1w .dropdown-item.active,
.cid-u14qswqX1w .dropdown-item:active {
  background-color: transparent;
}
.cid-u14qswqX1w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u14qswqX1w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u14qswqX1w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u14qswqX1w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u14qswqX1w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u14qswqX1w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u14qswqX1w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u14qswqX1w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u14qswqX1w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u14qswqX1w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u14qswqX1w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u14qswqX1w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u14qswqX1w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u14qswqX1w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u14qswqX1w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u14qswqX1w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u14qswqX1w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u14qswqX1w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u14qswqX1w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u14qswqX1w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u14qswqX1w .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u14qswqX1w .navbar {
    height: 70px;
  }
  .cid-u14qswqX1w .navbar.opened {
    height: auto;
  }
  .cid-u14qswqX1w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u14qsxMnv7 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qsxMnv7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsxMnv7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsxMnv7 .mbr-section-title {
  color: #ffffff;
}
.cid-u14qsxMnv7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1dUh6dbgJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dUh6dbgJ img,
.cid-v1dUh6dbgJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dUh6dbgJ .item:focus,
.cid-v1dUh6dbgJ span:focus {
  outline: none;
}
.cid-v1dUh6dbgJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dUh6dbgJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dUh6dbgJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dUh6dbgJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dUh6dbgJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dUh6dbgJ .mbr-section-title {
  color: #ffffff;
}
.cid-v1dUh6dbgJ .mbr-text,
.cid-v1dUh6dbgJ .mbr-section-btn {
  text-align: left;
}
.cid-v1dUh6dbgJ .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dUh6dbgJ .item-subtitle {
  text-align: center;
}
.cid-v1dUh6dbgJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u14qszdDXD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qszdDXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qszdDXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qszdDXD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u14qszdDXD .mbr-section-title {
  color: #ffffff;
}
.cid-v1dUhMpFoG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dUhMpFoG img,
.cid-v1dUhMpFoG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dUhMpFoG .item:focus,
.cid-v1dUhMpFoG span:focus {
  outline: none;
}
.cid-v1dUhMpFoG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dUhMpFoG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dUhMpFoG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dUhMpFoG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dUhMpFoG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dUhMpFoG .mbr-section-title {
  color: #232323;
}
.cid-v1dUhMpFoG .mbr-text,
.cid-v1dUhMpFoG .mbr-section-btn {
  text-align: left;
}
.cid-v1dUhMpFoG .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dUhMpFoG .item-subtitle {
  text-align: center;
}
.cid-u14qsADKdw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qsADKdw .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsADKdw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsADKdw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u14qsADKdw .mbr-section-title {
  color: #ffffff;
}
.cid-v1dUivvRm1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dUivvRm1 img,
.cid-v1dUivvRm1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dUivvRm1 .item:focus,
.cid-v1dUivvRm1 span:focus {
  outline: none;
}
.cid-v1dUivvRm1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dUivvRm1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dUivvRm1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dUivvRm1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dUivvRm1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dUivvRm1 .mbr-section-title {
  color: #232323;
}
.cid-v1dUivvRm1 .mbr-text,
.cid-v1dUivvRm1 .mbr-section-btn {
  text-align: left;
}
.cid-v1dUivvRm1 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dUivvRm1 .item-subtitle {
  text-align: center;
}
.cid-u14qsCa0mN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qsCa0mN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsCa0mN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsCa0mN .mbr-section-title {
  color: #ffffff;
}
.cid-v1dUjBt8zZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dUjBt8zZ img,
.cid-v1dUjBt8zZ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dUjBt8zZ .item:focus,
.cid-v1dUjBt8zZ span:focus {
  outline: none;
}
.cid-v1dUjBt8zZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dUjBt8zZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dUjBt8zZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dUjBt8zZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dUjBt8zZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dUjBt8zZ .mbr-section-title {
  color: #232323;
}
.cid-v1dUjBt8zZ .mbr-text,
.cid-v1dUjBt8zZ .mbr-section-btn {
  text-align: left;
}
.cid-v1dUjBt8zZ .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dUjBt8zZ .item-subtitle {
  text-align: center;
}
.cid-u14qsDMt7K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qsDMt7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsDMt7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsDMt7K .mbr-section-title {
  color: #ffffff;
}
.cid-v1dUkj8vdR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dUkj8vdR img,
.cid-v1dUkj8vdR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dUkj8vdR .item:focus,
.cid-v1dUkj8vdR span:focus {
  outline: none;
}
.cid-v1dUkj8vdR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dUkj8vdR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dUkj8vdR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dUkj8vdR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dUkj8vdR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dUkj8vdR .mbr-section-title {
  color: #232323;
}
.cid-v1dUkj8vdR .mbr-text,
.cid-v1dUkj8vdR .mbr-section-btn {
  text-align: left;
}
.cid-v1dUkj8vdR .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dUkj8vdR .item-subtitle {
  text-align: center;
}
.cid-uYN6bCp6mU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN6bCp6mU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6bCp6mU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6bCp6mU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6bCp6mU .mbr-section-title {
  color: #ffffff;
}
.cid-uYN661HSjV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN661HSjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN661HSjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN661HSjV .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN661HSjV .number {
  color: #ffffff;
}
.cid-uYN661HSjV .period {
  display: block;
}
.cid-uYN661HSjV .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN661HSjV .period {
    font-size: 0.8rem;
  }
}
.cid-uYN661HSjV .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN661HSjV .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN661HSjV .mbr-section-title {
  color: #ffffff;
}
.cid-uYN661HSjV .mbr-text {
  color: #ffffff;
}
.cid-uYN661HSjV .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN661HSjV .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN661HSjV .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN661HSjV .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u14qsG7MXW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u14qsG7MXW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsG7MXW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsG7MXW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u14qsG7MXW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u14qsG7MXW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u14qsG7MXW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u14qsG7MXW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u14qsG7MXW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u14qsG7MXW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u14qsG7MXW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u14qsG7MXW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u14qsG7MXW [class^="socicon-"]:before,
.cid-u14qsG7MXW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u14qsG7MXW .mbr-section-title,
.cid-u14qsG7MXW .mbr-social-likes {
  color: #ffffff;
}
.cid-u14qsGSkgx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u14qsGSkgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsGSkgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsGSkgx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u14qsGSkgx .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u14qsGSkgx .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u14qsGSkgx .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u14qsGSkgx .mbr-text {
  color: #ffffff;
}
.cid-u14qsGSkgx .card-title {
  color: #ffffff;
}
.cid-u14qsGSkgx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u14qsGSkgx .mbr-section-title {
  color: #ffffff;
}
.cid-u14qsHMrE6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u14qsHMrE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u14qsHMrE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u14qsHMrE6 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u14qsHMrE6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u14qsHMrE6 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u14qsHMrE6 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u14qsHMrE6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u14qsHMrE6 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u1PtCtIK5M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u1PtCtIK5M nav.navbar {
  position: fixed;
}
.cid-u1PtCtIK5M .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-u1PtCtIK5M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u1PtCtIK5M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1PtCtIK5M .dropdown-item:hover,
.cid-u1PtCtIK5M .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u1PtCtIK5M .dropdown-item:hover span {
  color: white;
}
.cid-u1PtCtIK5M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1PtCtIK5M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1PtCtIK5M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1PtCtIK5M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1PtCtIK5M .nav-link {
  position: relative;
}
.cid-u1PtCtIK5M .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u1PtCtIK5M .container {
    flex-wrap: wrap;
  }
}
.cid-u1PtCtIK5M .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u1PtCtIK5M .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u1PtCtIK5M .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1PtCtIK5M .dropdown-menu,
.cid-u1PtCtIK5M .navbar.opened {
  background: #000000 !important;
}
.cid-u1PtCtIK5M .nav-item:focus,
.cid-u1PtCtIK5M .nav-link:focus {
  outline: none;
}
.cid-u1PtCtIK5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1PtCtIK5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1PtCtIK5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1PtCtIK5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1PtCtIK5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1PtCtIK5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1PtCtIK5M .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u1PtCtIK5M .navbar.opened {
  transition: all 0.3s;
}
.cid-u1PtCtIK5M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1PtCtIK5M .navbar .navbar-logo img {
  width: auto;
}
.cid-u1PtCtIK5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1PtCtIK5M .navbar.collapsed {
  justify-content: center;
}
.cid-u1PtCtIK5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1PtCtIK5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u1PtCtIK5M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u1PtCtIK5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1PtCtIK5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1PtCtIK5M .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-u1PtCtIK5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1PtCtIK5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1PtCtIK5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1PtCtIK5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1PtCtIK5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1PtCtIK5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1PtCtIK5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1PtCtIK5M .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-u1PtCtIK5M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u1PtCtIK5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1PtCtIK5M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1PtCtIK5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u1PtCtIK5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1PtCtIK5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u1PtCtIK5M .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u1PtCtIK5M .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1PtCtIK5M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1PtCtIK5M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1PtCtIK5M .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1PtCtIK5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1PtCtIK5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u1PtCtIK5M .dropdown-item.active,
.cid-u1PtCtIK5M .dropdown-item:active {
  background-color: transparent;
}
.cid-u1PtCtIK5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1PtCtIK5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1PtCtIK5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1PtCtIK5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u1PtCtIK5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1PtCtIK5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1PtCtIK5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1PtCtIK5M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1PtCtIK5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1PtCtIK5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1PtCtIK5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1PtCtIK5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1PtCtIK5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1PtCtIK5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1PtCtIK5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1PtCtIK5M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1PtCtIK5M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1PtCtIK5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1PtCtIK5M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u1PtCtIK5M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1PtCtIK5M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u1PtCtIK5M .navbar {
    height: 70px;
  }
  .cid-u1PtCtIK5M .navbar.opened {
    height: auto;
  }
  .cid-u1PtCtIK5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2w0m7yRhQ {
  background-image: url("../../../assets/images/safe-seed-pledge.webp");
}
.cid-u2w0m7yRhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w0m7yRhQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w0m7yRhQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2w0m7yRhQ .mbr-text,
.cid-u2w0m7yRhQ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2w0m7yRhQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u1QTUbobcz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u1QTUbobcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1QTUbobcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1QTUbobcz .content-wrapper {
  background: #000000;
}
@media (max-width: 991px) {
  .cid-u1QTUbobcz .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u1QTUbobcz .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u1QTUbobcz .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u1QTUbobcz .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u1QTUbobcz .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u1QTUbobcz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u1QTUbobcz .mbr-text,
.cid-u1QTUbobcz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u1QTUbobcz .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYNcMLDsMU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNcMLDsMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNcMLDsMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNcMLDsMU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNcMLDsMU .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcLGDcRb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNcLGDcRb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNcLGDcRb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNcLGDcRb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNcLGDcRb .number {
  color: #ffffff;
}
.cid-uYNcLGDcRb .period {
  display: block;
}
.cid-uYNcLGDcRb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNcLGDcRb .period {
    font-size: 0.8rem;
  }
}
.cid-uYNcLGDcRb .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNcLGDcRb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNcLGDcRb .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcLGDcRb .mbr-text {
  color: #ffffff;
}
.cid-uYNcLGDcRb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNcLGDcRb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNcLGDcRb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNcLGDcRb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2w4hq3Oyg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2w4hq3Oyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2w4hq3Oyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2w4hq3Oyg .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2w4hq3Oyg .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2w4hq3Oyg .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2w4hq3Oyg .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2w4hq3Oyg .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2w4hq3Oyg .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2w4hq3Oyg .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2w4hq3Oyg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2w4hq3Oyg .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2w4hq3Oyg [class^="socicon-"]:before,
.cid-u2w4hq3Oyg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2w4hq3Oyg .mbr-section-title,
.cid-u2w4hq3Oyg .mbr-social-likes {
  color: #ffffff;
}
.cid-u39k65QCEa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39k65QCEa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39k65QCEa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39k65QCEa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39k65QCEa .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39k65QCEa .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39k65QCEa .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39k65QCEa .mbr-text {
  color: #ffffff;
}
.cid-u39k65QCEa .card-title {
  color: #ffffff;
}
.cid-u39k65QCEa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39k65QCEa .mbr-section-title {
  color: #ffffff;
}
.cid-u39k65QCEa .link {
  color: #4479d9;
}
.cid-u1PtCuHfB4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u1PtCuHfB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1PtCuHfB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1PtCuHfB4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1PtCuHfB4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u1PtCuHfB4 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u1PtCuHfB4 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u1PtCuHfB4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u1PtCuHfB4 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u4b6bBSGD6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4b6bBSGD6 nav.navbar {
  position: fixed;
}
.cid-u4b6bBSGD6 .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-u4b6bBSGD6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4b6bBSGD6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4b6bBSGD6 .dropdown-item:hover,
.cid-u4b6bBSGD6 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u4b6bBSGD6 .dropdown-item:hover span {
  color: white;
}
.cid-u4b6bBSGD6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4b6bBSGD6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4b6bBSGD6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4b6bBSGD6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4b6bBSGD6 .nav-link {
  position: relative;
}
.cid-u4b6bBSGD6 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4b6bBSGD6 .container {
    flex-wrap: wrap;
  }
}
.cid-u4b6bBSGD6 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u4b6bBSGD6 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u4b6bBSGD6 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4b6bBSGD6 .dropdown-menu,
.cid-u4b6bBSGD6 .navbar.opened {
  background: #000000 !important;
}
.cid-u4b6bBSGD6 .nav-item:focus,
.cid-u4b6bBSGD6 .nav-link:focus {
  outline: none;
}
.cid-u4b6bBSGD6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4b6bBSGD6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4b6bBSGD6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4b6bBSGD6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4b6bBSGD6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4b6bBSGD6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4b6bBSGD6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u4b6bBSGD6 .navbar.opened {
  transition: all 0.3s;
}
.cid-u4b6bBSGD6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4b6bBSGD6 .navbar .navbar-logo img {
  width: auto;
}
.cid-u4b6bBSGD6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4b6bBSGD6 .navbar.collapsed {
  justify-content: center;
}
.cid-u4b6bBSGD6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4b6bBSGD6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4b6bBSGD6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u4b6bBSGD6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4b6bBSGD6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4b6bBSGD6 .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-u4b6bBSGD6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4b6bBSGD6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4b6bBSGD6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4b6bBSGD6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4b6bBSGD6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4b6bBSGD6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4b6bBSGD6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4b6bBSGD6 .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-u4b6bBSGD6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4b6bBSGD6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4b6bBSGD6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4b6bBSGD6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4b6bBSGD6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4b6bBSGD6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u4b6bBSGD6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u4b6bBSGD6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4b6bBSGD6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4b6bBSGD6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4b6bBSGD6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4b6bBSGD6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4b6bBSGD6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4b6bBSGD6 .dropdown-item.active,
.cid-u4b6bBSGD6 .dropdown-item:active {
  background-color: transparent;
}
.cid-u4b6bBSGD6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4b6bBSGD6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4b6bBSGD6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4b6bBSGD6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u4b6bBSGD6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4b6bBSGD6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4b6bBSGD6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4b6bBSGD6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u4b6bBSGD6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4b6bBSGD6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u4b6bBSGD6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4b6bBSGD6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4b6bBSGD6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4b6bBSGD6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4b6bBSGD6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4b6bBSGD6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4b6bBSGD6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4b6bBSGD6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4b6bBSGD6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4b6bBSGD6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4b6bBSGD6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4b6bBSGD6 .navbar {
    height: 70px;
  }
  .cid-u4b6bBSGD6 .navbar.opened {
    height: auto;
  }
  .cid-u4b6bBSGD6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4b6bCEcWt {
  background-image: url("../../../assets/images/mississippi-foundation-for-renewable-energy-logo.webp");
}
.cid-u4b6bCEcWt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4b6bCEcWt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4b6bCEcWt .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u4b6bCEcWt .mbr-text,
.cid-u4b6bCEcWt .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u4b6bCEcWt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3RhAez0Dl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3RhAez0Dl img,
.cid-v3RhAez0Dl .item-img {
  width: 100%;
}
.cid-v3RhAez0Dl .item:focus,
.cid-v3RhAez0Dl span:focus {
  outline: none;
}
.cid-v3RhAez0Dl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3RhAez0Dl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3RhAez0Dl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3RhAez0Dl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3RhAez0Dl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3RhAez0Dl .mbr-section-title {
  color: #ffffff;
}
.cid-v3RhAez0Dl .mbr-text,
.cid-v3RhAez0Dl .mbr-section-btn {
  text-align: left;
}
.cid-v3RhAez0Dl .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3RhAez0Dl .item-subtitle {
  text-align: center;
}
.cid-v3RhAez0Dl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3RkrKJ7lJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3RkrKJ7lJ img,
.cid-v3RkrKJ7lJ .item-img {
  width: 100%;
}
.cid-v3RkrKJ7lJ .item:focus,
.cid-v3RkrKJ7lJ span:focus {
  outline: none;
}
.cid-v3RkrKJ7lJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3RkrKJ7lJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3RkrKJ7lJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3RkrKJ7lJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3RkrKJ7lJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3RkrKJ7lJ .mbr-section-title {
  color: #ffffff;
}
.cid-v3RkrKJ7lJ .mbr-text,
.cid-v3RkrKJ7lJ .mbr-section-btn {
  text-align: left;
}
.cid-v3RkrKJ7lJ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3RkrKJ7lJ .item-subtitle {
  text-align: center;
}
.cid-v3RkrKJ7lJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2UAPmrX59 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2UAPmrX59 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2UAPmrX59 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2UAPmrX59 .mbr-section-title {
  color: #ffffff;
}
.cid-v2UAPmrX59 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4sKSkSe54 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-u4sKSkSe54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4sKSkSe54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4sKSkSe54 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4sKSkSe54 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcFfqhih {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNcFfqhih .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNcFfqhih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNcFfqhih .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNcFfqhih .number {
  color: #ffffff;
}
.cid-uYNcFfqhih .period {
  display: block;
}
.cid-uYNcFfqhih .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNcFfqhih .period {
    font-size: 0.8rem;
  }
}
.cid-uYNcFfqhih .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNcFfqhih .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNcFfqhih .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcFfqhih .mbr-text {
  color: #ffffff;
}
.cid-uYNcFfqhih .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNcFfqhih .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNcFfqhih .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNcFfqhih .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u4b6bDRPmB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u4b6bDRPmB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4b6bDRPmB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4b6bDRPmB .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u4b6bDRPmB .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u4b6bDRPmB .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u4b6bDRPmB .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u4b6bDRPmB .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u4b6bDRPmB .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u4b6bDRPmB .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u4b6bDRPmB .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u4b6bDRPmB .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u4b6bDRPmB [class^="socicon-"]:before,
.cid-u4b6bDRPmB [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u4b6bDRPmB .mbr-section-title,
.cid-u4b6bDRPmB .mbr-social-likes {
  color: #ffffff;
}
.cid-u4b6bEltDe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u4b6bEltDe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4b6bEltDe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4b6bEltDe .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u4b6bEltDe .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u4b6bEltDe .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u4b6bEltDe .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u4b6bEltDe .mbr-text {
  color: #ffffff;
}
.cid-u4b6bEltDe .card-title {
  color: #ffffff;
}
.cid-u4b6bEltDe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4b6bEltDe .mbr-section-title {
  color: #ffffff;
}
.cid-u4b6bEltDe .link {
  color: #4479d9;
}
.cid-u4b6bEW42T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u4b6bEW42T .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4b6bEW42T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4b6bEW42T .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u4b6bEW42T .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u4b6bEW42T .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u4b6bEW42T .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u4b6bEW42T div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u4b6bEW42T .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u6fSJ80K82 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6fSJ80K82 nav.navbar {
  position: fixed;
}
.cid-u6fSJ80K82 .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-u6fSJ80K82 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6fSJ80K82 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6fSJ80K82 .dropdown-item:hover,
.cid-u6fSJ80K82 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u6fSJ80K82 .dropdown-item:hover span {
  color: white;
}
.cid-u6fSJ80K82 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6fSJ80K82 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6fSJ80K82 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6fSJ80K82 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6fSJ80K82 .nav-link {
  position: relative;
}
.cid-u6fSJ80K82 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6fSJ80K82 .container {
    flex-wrap: wrap;
  }
}
.cid-u6fSJ80K82 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6fSJ80K82 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u6fSJ80K82 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6fSJ80K82 .dropdown-menu,
.cid-u6fSJ80K82 .navbar.opened {
  background: #000000 !important;
}
.cid-u6fSJ80K82 .nav-item:focus,
.cid-u6fSJ80K82 .nav-link:focus {
  outline: none;
}
.cid-u6fSJ80K82 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6fSJ80K82 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6fSJ80K82 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6fSJ80K82 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6fSJ80K82 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6fSJ80K82 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6fSJ80K82 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u6fSJ80K82 .navbar.opened {
  transition: all 0.3s;
}
.cid-u6fSJ80K82 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6fSJ80K82 .navbar .navbar-logo img {
  width: auto;
}
.cid-u6fSJ80K82 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6fSJ80K82 .navbar.collapsed {
  justify-content: center;
}
.cid-u6fSJ80K82 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6fSJ80K82 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6fSJ80K82 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u6fSJ80K82 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6fSJ80K82 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6fSJ80K82 .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-u6fSJ80K82 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6fSJ80K82 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6fSJ80K82 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6fSJ80K82 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6fSJ80K82 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6fSJ80K82 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6fSJ80K82 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6fSJ80K82 .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-u6fSJ80K82 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6fSJ80K82 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6fSJ80K82 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6fSJ80K82 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6fSJ80K82 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6fSJ80K82 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6fSJ80K82 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6fSJ80K82 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6fSJ80K82 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6fSJ80K82 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6fSJ80K82 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6fSJ80K82 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6fSJ80K82 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6fSJ80K82 .dropdown-item.active,
.cid-u6fSJ80K82 .dropdown-item:active {
  background-color: transparent;
}
.cid-u6fSJ80K82 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6fSJ80K82 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6fSJ80K82 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6fSJ80K82 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u6fSJ80K82 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6fSJ80K82 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6fSJ80K82 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6fSJ80K82 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6fSJ80K82 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6fSJ80K82 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u6fSJ80K82 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6fSJ80K82 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6fSJ80K82 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6fSJ80K82 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6fSJ80K82 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6fSJ80K82 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6fSJ80K82 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6fSJ80K82 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6fSJ80K82 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6fSJ80K82 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6fSJ80K82 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6fSJ80K82 .navbar {
    height: 70px;
  }
  .cid-u6fSJ80K82 .navbar.opened {
    height: auto;
  }
  .cid-u6fSJ80K82 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6fSJ8QFOz {
  background-image: url("../../../assets/images/warm-season-vegetable-seed-kit-banner.webp");
}
.cid-u6fSJ8QFOz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fSJ8QFOz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fSJ8QFOz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u6fSJ8QFOz .mbr-text,
.cid-u6fSJ8QFOz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u6fSJ8QFOz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u6fUaTTc91 {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6fUaTTc91 img,
.cid-u6fUaTTc91 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u6fUaTTc91 .item:focus,
.cid-u6fUaTTc91 span:focus {
  outline: none;
}
.cid-u6fUaTTc91 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6fUaTTc91 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6fUaTTc91 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6fUaTTc91 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6fUaTTc91 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6fUaTTc91 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6fUaTTc91 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6fUaTTc91 .mbr-section-title {
  color: #ffffff;
}
.cid-u6fUaTTc91 .mbr-text,
.cid-u6fUaTTc91 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u6fUaTTc91 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u6fUaTTc91 .item-subtitle {
  text-align: left;
}
.cid-u6fUaTTc91 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNc3L7U2p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNc3L7U2p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNc3L7U2p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNc3L7U2p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNc3L7U2p .mbr-section-title {
  color: #ffffff;
}
.cid-uYNc2KYwIe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNc2KYwIe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNc2KYwIe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNc2KYwIe .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNc2KYwIe .number {
  color: #ffffff;
}
.cid-uYNc2KYwIe .period {
  display: block;
}
.cid-uYNc2KYwIe .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNc2KYwIe .period {
    font-size: 0.8rem;
  }
}
.cid-uYNc2KYwIe .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNc2KYwIe .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNc2KYwIe .mbr-section-title {
  color: #ffffff;
}
.cid-uYNc2KYwIe .mbr-text {
  color: #ffffff;
}
.cid-uYNc2KYwIe .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNc2KYwIe .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNc2KYwIe .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNc2KYwIe .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u6fSJ9U8Z2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u6fSJ9U8Z2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fSJ9U8Z2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fSJ9U8Z2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u6fSJ9U8Z2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u6fSJ9U8Z2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u6fSJ9U8Z2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u6fSJ9U8Z2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u6fSJ9U8Z2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u6fSJ9U8Z2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u6fSJ9U8Z2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u6fSJ9U8Z2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u6fSJ9U8Z2 [class^="socicon-"]:before,
.cid-u6fSJ9U8Z2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u6fSJ9U8Z2 .mbr-section-title,
.cid-u6fSJ9U8Z2 .mbr-social-likes {
  color: #ffffff;
}
.cid-u6fSJaohYF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6fSJaohYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fSJaohYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fSJaohYF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u6fSJaohYF .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u6fSJaohYF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6fSJaohYF .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u6fSJaohYF .mbr-text {
  color: #ffffff;
}
.cid-u6fSJaohYF .card-title {
  color: #ffffff;
}
.cid-u6fSJaohYF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6fSJaohYF .mbr-section-title {
  color: #ffffff;
}
.cid-u6fSJaohYF .link {
  color: #4479d9;
}
.cid-u6fSJaYYmq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u6fSJaYYmq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fSJaYYmq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fSJaYYmq .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6fSJaYYmq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6fSJaYYmq .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u6fSJaYYmq .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u6fSJaYYmq div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u6fSJaYYmq .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u6fYQgDhIU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6fYQgDhIU nav.navbar {
  position: fixed;
}
.cid-u6fYQgDhIU .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-u6fYQgDhIU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6fYQgDhIU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6fYQgDhIU .dropdown-item:hover,
.cid-u6fYQgDhIU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u6fYQgDhIU .dropdown-item:hover span {
  color: white;
}
.cid-u6fYQgDhIU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6fYQgDhIU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6fYQgDhIU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6fYQgDhIU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6fYQgDhIU .nav-link {
  position: relative;
}
.cid-u6fYQgDhIU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6fYQgDhIU .container {
    flex-wrap: wrap;
  }
}
.cid-u6fYQgDhIU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6fYQgDhIU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u6fYQgDhIU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6fYQgDhIU .dropdown-menu,
.cid-u6fYQgDhIU .navbar.opened {
  background: #000000 !important;
}
.cid-u6fYQgDhIU .nav-item:focus,
.cid-u6fYQgDhIU .nav-link:focus {
  outline: none;
}
.cid-u6fYQgDhIU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6fYQgDhIU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6fYQgDhIU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6fYQgDhIU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6fYQgDhIU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6fYQgDhIU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6fYQgDhIU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u6fYQgDhIU .navbar.opened {
  transition: all 0.3s;
}
.cid-u6fYQgDhIU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6fYQgDhIU .navbar .navbar-logo img {
  width: auto;
}
.cid-u6fYQgDhIU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6fYQgDhIU .navbar.collapsed {
  justify-content: center;
}
.cid-u6fYQgDhIU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6fYQgDhIU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6fYQgDhIU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u6fYQgDhIU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6fYQgDhIU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6fYQgDhIU .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-u6fYQgDhIU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6fYQgDhIU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6fYQgDhIU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6fYQgDhIU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6fYQgDhIU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6fYQgDhIU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6fYQgDhIU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6fYQgDhIU .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-u6fYQgDhIU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6fYQgDhIU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6fYQgDhIU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6fYQgDhIU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6fYQgDhIU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6fYQgDhIU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6fYQgDhIU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6fYQgDhIU .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6fYQgDhIU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6fYQgDhIU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6fYQgDhIU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6fYQgDhIU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6fYQgDhIU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6fYQgDhIU .dropdown-item.active,
.cid-u6fYQgDhIU .dropdown-item:active {
  background-color: transparent;
}
.cid-u6fYQgDhIU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6fYQgDhIU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6fYQgDhIU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6fYQgDhIU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u6fYQgDhIU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6fYQgDhIU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6fYQgDhIU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6fYQgDhIU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6fYQgDhIU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6fYQgDhIU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u6fYQgDhIU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6fYQgDhIU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6fYQgDhIU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6fYQgDhIU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6fYQgDhIU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6fYQgDhIU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6fYQgDhIU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6fYQgDhIU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6fYQgDhIU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6fYQgDhIU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6fYQgDhIU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6fYQgDhIU .navbar {
    height: 70px;
  }
  .cid-u6fYQgDhIU .navbar.opened {
    height: auto;
  }
  .cid-u6fYQgDhIU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6fYQhpHRH {
  background-image: url("../../../assets/images/cool-season-vegetable-kit-banner.webp");
}
.cid-u6fYQhpHRH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fYQhpHRH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fYQhpHRH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u6fYQhpHRH .mbr-text,
.cid-u6fYQhpHRH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u6fYQhpHRH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u6fYQi0ZoR {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6fYQi0ZoR img,
.cid-u6fYQi0ZoR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u6fYQi0ZoR .item:focus,
.cid-u6fYQi0ZoR span:focus {
  outline: none;
}
.cid-u6fYQi0ZoR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6fYQi0ZoR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6fYQi0ZoR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6fYQi0ZoR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6fYQi0ZoR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6fYQi0ZoR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6fYQi0ZoR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6fYQi0ZoR .mbr-section-title {
  color: #ffffff;
}
.cid-u6fYQi0ZoR .mbr-text,
.cid-u6fYQi0ZoR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u6fYQi0ZoR .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u6fYQi0ZoR .item-subtitle {
  text-align: left;
}
.cid-u6fYQi0ZoR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNclyguka {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNclyguka .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNclyguka .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNclyguka .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNclyguka .mbr-section-title {
  color: #ffffff;
}
.cid-uYNckvxlMV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNckvxlMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNckvxlMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNckvxlMV .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNckvxlMV .number {
  color: #ffffff;
}
.cid-uYNckvxlMV .period {
  display: block;
}
.cid-uYNckvxlMV .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNckvxlMV .period {
    font-size: 0.8rem;
  }
}
.cid-uYNckvxlMV .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNckvxlMV .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNckvxlMV .mbr-section-title {
  color: #ffffff;
}
.cid-uYNckvxlMV .mbr-text {
  color: #ffffff;
}
.cid-uYNckvxlMV .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNckvxlMV .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNckvxlMV .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNckvxlMV .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u6fYQjbXu7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u6fYQjbXu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fYQjbXu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fYQjbXu7 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u6fYQjbXu7 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u6fYQjbXu7 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u6fYQjbXu7 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u6fYQjbXu7 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u6fYQjbXu7 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u6fYQjbXu7 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u6fYQjbXu7 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u6fYQjbXu7 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u6fYQjbXu7 [class^="socicon-"]:before,
.cid-u6fYQjbXu7 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u6fYQjbXu7 .mbr-section-title,
.cid-u6fYQjbXu7 .mbr-social-likes {
  color: #ffffff;
}
.cid-u6fYQjKrRV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6fYQjKrRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fYQjKrRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fYQjKrRV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u6fYQjKrRV .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u6fYQjKrRV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6fYQjKrRV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u6fYQjKrRV .mbr-text {
  color: #ffffff;
}
.cid-u6fYQjKrRV .card-title {
  color: #ffffff;
}
.cid-u6fYQjKrRV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6fYQjKrRV .mbr-section-title {
  color: #ffffff;
}
.cid-u6fYQjKrRV .link {
  color: #4479d9;
}
.cid-u6fYQknGox {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u6fYQknGox .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6fYQknGox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6fYQknGox .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6fYQknGox .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6fYQknGox .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u6fYQknGox .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u6fYQknGox div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u6fYQknGox .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-u6g2DJ5Zqm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u6g2DJ5Zqm nav.navbar {
  position: fixed;
}
.cid-u6g2DJ5Zqm .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-u6g2DJ5Zqm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u6g2DJ5Zqm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u6g2DJ5Zqm .dropdown-item:hover,
.cid-u6g2DJ5Zqm .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-u6g2DJ5Zqm .dropdown-item:hover span {
  color: white;
}
.cid-u6g2DJ5Zqm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u6g2DJ5Zqm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u6g2DJ5Zqm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u6g2DJ5Zqm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u6g2DJ5Zqm .nav-link {
  position: relative;
}
.cid-u6g2DJ5Zqm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6g2DJ5Zqm .container {
    flex-wrap: wrap;
  }
}
.cid-u6g2DJ5Zqm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u6g2DJ5Zqm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u6g2DJ5Zqm .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u6g2DJ5Zqm .dropdown-menu,
.cid-u6g2DJ5Zqm .navbar.opened {
  background: #000000 !important;
}
.cid-u6g2DJ5Zqm .nav-item:focus,
.cid-u6g2DJ5Zqm .nav-link:focus {
  outline: none;
}
.cid-u6g2DJ5Zqm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u6g2DJ5Zqm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u6g2DJ5Zqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u6g2DJ5Zqm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u6g2DJ5Zqm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u6g2DJ5Zqm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u6g2DJ5Zqm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-u6g2DJ5Zqm .navbar.opened {
  transition: all 0.3s;
}
.cid-u6g2DJ5Zqm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u6g2DJ5Zqm .navbar .navbar-logo img {
  width: auto;
}
.cid-u6g2DJ5Zqm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u6g2DJ5Zqm .navbar.collapsed {
  justify-content: center;
}
.cid-u6g2DJ5Zqm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u6g2DJ5Zqm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u6g2DJ5Zqm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-u6g2DJ5Zqm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u6g2DJ5Zqm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u6g2DJ5Zqm .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-u6g2DJ5Zqm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u6g2DJ5Zqm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u6g2DJ5Zqm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u6g2DJ5Zqm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u6g2DJ5Zqm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u6g2DJ5Zqm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u6g2DJ5Zqm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u6g2DJ5Zqm .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-u6g2DJ5Zqm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u6g2DJ5Zqm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u6g2DJ5Zqm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u6g2DJ5Zqm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u6g2DJ5Zqm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u6g2DJ5Zqm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u6g2DJ5Zqm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u6g2DJ5Zqm .navbar.navbar-short {
  min-height: 60px;
}
.cid-u6g2DJ5Zqm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u6g2DJ5Zqm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u6g2DJ5Zqm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u6g2DJ5Zqm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u6g2DJ5Zqm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u6g2DJ5Zqm .dropdown-item.active,
.cid-u6g2DJ5Zqm .dropdown-item:active {
  background-color: transparent;
}
.cid-u6g2DJ5Zqm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u6g2DJ5Zqm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u6g2DJ5Zqm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u6g2DJ5Zqm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u6g2DJ5Zqm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u6g2DJ5Zqm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u6g2DJ5Zqm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u6g2DJ5Zqm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u6g2DJ5Zqm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u6g2DJ5Zqm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u6g2DJ5Zqm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u6g2DJ5Zqm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6g2DJ5Zqm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u6g2DJ5Zqm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u6g2DJ5Zqm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6g2DJ5Zqm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u6g2DJ5Zqm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u6g2DJ5Zqm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u6g2DJ5Zqm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u6g2DJ5Zqm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u6g2DJ5Zqm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u6g2DJ5Zqm .navbar {
    height: 70px;
  }
  .cid-u6g2DJ5Zqm .navbar.opened {
    height: auto;
  }
  .cid-u6g2DJ5Zqm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u6g2DK8TiJ {
  background-image: url("../../../assets/images/preppers-seed-kit-banner.webp");
}
.cid-u6g2DK8TiJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6g2DK8TiJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6g2DK8TiJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u6g2DK8TiJ .mbr-text,
.cid-u6g2DK8TiJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u6g2DK8TiJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u6g2DKRl4V {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6g2DKRl4V img,
.cid-u6g2DKRl4V .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-u6g2DKRl4V .item:focus,
.cid-u6g2DKRl4V span:focus {
  outline: none;
}
.cid-u6g2DKRl4V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u6g2DKRl4V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u6g2DKRl4V .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-u6g2DKRl4V .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6g2DKRl4V .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u6g2DKRl4V .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u6g2DKRl4V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u6g2DKRl4V .mbr-section-title {
  color: #ffffff;
}
.cid-u6g2DKRl4V .mbr-text,
.cid-u6g2DKRl4V .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-u6g2DKRl4V .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-u6g2DKRl4V .item-subtitle {
  text-align: left;
}
.cid-u6g2DKRl4V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNcweeZnM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNcweeZnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNcweeZnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNcweeZnM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNcweeZnM .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcvvTiG3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNcvvTiG3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNcvvTiG3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNcvvTiG3 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNcvvTiG3 .number {
  color: #ffffff;
}
.cid-uYNcvvTiG3 .period {
  display: block;
}
.cid-uYNcvvTiG3 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNcvvTiG3 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNcvvTiG3 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNcvvTiG3 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNcvvTiG3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNcvvTiG3 .mbr-text {
  color: #ffffff;
}
.cid-uYNcvvTiG3 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNcvvTiG3 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNcvvTiG3 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNcvvTiG3 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u6g2DMlFg8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u6g2DMlFg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6g2DMlFg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6g2DMlFg8 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u6g2DMlFg8 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u6g2DMlFg8 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u6g2DMlFg8 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u6g2DMlFg8 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u6g2DMlFg8 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u6g2DMlFg8 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u6g2DMlFg8 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u6g2DMlFg8 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u6g2DMlFg8 [class^="socicon-"]:before,
.cid-u6g2DMlFg8 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u6g2DMlFg8 .mbr-section-title,
.cid-u6g2DMlFg8 .mbr-social-likes {
  color: #ffffff;
}
.cid-u6g2DMYS2f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u6g2DMYS2f .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6g2DMYS2f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6g2DMYS2f .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u6g2DMYS2f .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u6g2DMYS2f .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u6g2DMYS2f .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u6g2DMYS2f .mbr-text {
  color: #ffffff;
}
.cid-u6g2DMYS2f .card-title {
  color: #ffffff;
}
.cid-u6g2DMYS2f .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6g2DMYS2f .mbr-section-title {
  color: #ffffff;
}
.cid-u6g2DMYS2f .link {
  color: #4479d9;
}
.cid-u6g2DNIzrt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u6g2DNIzrt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6g2DNIzrt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6g2DNIzrt .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6g2DNIzrt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u6g2DNIzrt .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-u6g2DNIzrt .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-u6g2DNIzrt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-u6g2DNIzrt .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-ualt1Y65zM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ualt1Y65zM nav.navbar {
  position: fixed;
}
.cid-ualt1Y65zM .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-ualt1Y65zM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ualt1Y65zM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ualt1Y65zM .dropdown-item:hover,
.cid-ualt1Y65zM .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-ualt1Y65zM .dropdown-item:hover span {
  color: white;
}
.cid-ualt1Y65zM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ualt1Y65zM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ualt1Y65zM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ualt1Y65zM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ualt1Y65zM .nav-link {
  position: relative;
}
.cid-ualt1Y65zM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ualt1Y65zM .container {
    flex-wrap: wrap;
  }
}
.cid-ualt1Y65zM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ualt1Y65zM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ualt1Y65zM .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ualt1Y65zM .dropdown-menu,
.cid-ualt1Y65zM .navbar.opened {
  background: #000000 !important;
}
.cid-ualt1Y65zM .nav-item:focus,
.cid-ualt1Y65zM .nav-link:focus {
  outline: none;
}
.cid-ualt1Y65zM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ualt1Y65zM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ualt1Y65zM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ualt1Y65zM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ualt1Y65zM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ualt1Y65zM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ualt1Y65zM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ualt1Y65zM .navbar.opened {
  transition: all 0.3s;
}
.cid-ualt1Y65zM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ualt1Y65zM .navbar .navbar-logo img {
  width: auto;
}
.cid-ualt1Y65zM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ualt1Y65zM .navbar.collapsed {
  justify-content: center;
}
.cid-ualt1Y65zM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ualt1Y65zM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ualt1Y65zM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ualt1Y65zM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ualt1Y65zM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ualt1Y65zM .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-ualt1Y65zM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ualt1Y65zM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ualt1Y65zM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ualt1Y65zM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ualt1Y65zM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ualt1Y65zM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ualt1Y65zM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ualt1Y65zM .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-ualt1Y65zM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ualt1Y65zM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ualt1Y65zM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ualt1Y65zM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ualt1Y65zM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ualt1Y65zM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ualt1Y65zM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ualt1Y65zM .navbar.navbar-short {
  min-height: 60px;
}
.cid-ualt1Y65zM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ualt1Y65zM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ualt1Y65zM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ualt1Y65zM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ualt1Y65zM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ualt1Y65zM .dropdown-item.active,
.cid-ualt1Y65zM .dropdown-item:active {
  background-color: transparent;
}
.cid-ualt1Y65zM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ualt1Y65zM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ualt1Y65zM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ualt1Y65zM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ualt1Y65zM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ualt1Y65zM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ualt1Y65zM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ualt1Y65zM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ualt1Y65zM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ualt1Y65zM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ualt1Y65zM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ualt1Y65zM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ualt1Y65zM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ualt1Y65zM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ualt1Y65zM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ualt1Y65zM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ualt1Y65zM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ualt1Y65zM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ualt1Y65zM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ualt1Y65zM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ualt1Y65zM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ualt1Y65zM .navbar {
    height: 70px;
  }
  .cid-ualt1Y65zM .navbar.opened {
    height: auto;
  }
  .cid-ualt1Y65zM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ualt1YTlsK {
  background-image: url("../../../assets/images/hydrogen-balloon-banner.webp");
}
.cid-ualt1YTlsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt1YTlsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt1YTlsK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ualt1YTlsK .mbr-text,
.cid-ualt1YTlsK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ualt1YTlsK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ualt1ZwOgu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualt1ZwOgu img,
.cid-ualt1ZwOgu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ualt1ZwOgu .item:focus,
.cid-ualt1ZwOgu span:focus {
  outline: none;
}
.cid-ualt1ZwOgu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualt1ZwOgu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualt1ZwOgu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualt1ZwOgu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualt1ZwOgu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualt1ZwOgu .mbr-section-title {
  color: #ffffff;
}
.cid-ualt1ZwOgu .mbr-text,
.cid-ualt1ZwOgu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ualt1ZwOgu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualt1ZwOgu .item-subtitle {
  text-align: center;
}
.cid-ualt1ZwOgu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualAiKuTzm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualAiKuTzm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualAiKuTzm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualAiKuTzm .mbr-section-subtitle {
  color: #e43f3f;
}
.cid-ualAiKuTzm .mbr-section-title {
  color: #ffffff;
}
.cid-ualBpSrklL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualBpSrklL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualBpSrklL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualBpSrklL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualC3X6h31 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualC3X6h31 img,
.cid-ualC3X6h31 .item-img {
  width: 100%;
}
.cid-ualC3X6h31 .item:focus,
.cid-ualC3X6h31 span:focus {
  outline: none;
}
.cid-ualC3X6h31 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualC3X6h31 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualC3X6h31 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualC3X6h31 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualC3X6h31 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualC3X6h31 .mbr-section-title {
  color: #232323;
}
.cid-ualC3X6h31 .mbr-text,
.cid-ualC3X6h31 .mbr-section-btn {
  text-align: left;
}
.cid-ualC3X6h31 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualC3X6h31 .item-subtitle {
  text-align: center;
}
.cid-ualFuqapmy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ualFuqapmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualFuqapmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualFuqapmy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualGRrzwRZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualGRrzwRZ img,
.cid-ualGRrzwRZ .item-img {
  width: 100%;
}
.cid-ualGRrzwRZ .item:focus,
.cid-ualGRrzwRZ span:focus {
  outline: none;
}
.cid-ualGRrzwRZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualGRrzwRZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualGRrzwRZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualGRrzwRZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualGRrzwRZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualGRrzwRZ .mbr-section-title {
  color: #232323;
}
.cid-ualGRrzwRZ .mbr-text,
.cid-ualGRrzwRZ .mbr-section-btn {
  text-align: left;
}
.cid-ualGRrzwRZ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualGRrzwRZ .item-subtitle {
  text-align: center;
}
.cid-ualHoqPiwJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualHoqPiwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualHoqPiwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualHoqPiwJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualIT5RzBU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualIT5RzBU img,
.cid-ualIT5RzBU .item-img {
  width: 100%;
}
.cid-ualIT5RzBU .item:focus,
.cid-ualIT5RzBU span:focus {
  outline: none;
}
.cid-ualIT5RzBU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualIT5RzBU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualIT5RzBU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualIT5RzBU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualIT5RzBU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualIT5RzBU .mbr-section-title {
  color: #232323;
}
.cid-ualIT5RzBU .mbr-text,
.cid-ualIT5RzBU .mbr-section-btn {
  text-align: left;
}
.cid-ualIT5RzBU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualIT5RzBU .item-subtitle {
  text-align: center;
}
.cid-ualJzUmqOv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualJzUmqOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualJzUmqOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualJzUmqOv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualJYHAHym {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualJYHAHym img,
.cid-ualJYHAHym .item-img {
  width: 100%;
}
.cid-ualJYHAHym .item:focus,
.cid-ualJYHAHym span:focus {
  outline: none;
}
.cid-ualJYHAHym .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualJYHAHym .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualJYHAHym .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualJYHAHym .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualJYHAHym .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualJYHAHym .mbr-section-title {
  color: #232323;
}
.cid-ualJYHAHym .mbr-text,
.cid-ualJYHAHym .mbr-section-btn {
  text-align: left;
}
.cid-ualJYHAHym .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualJYHAHym .item-subtitle {
  text-align: center;
}
.cid-ualKZ1dCeu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualKZ1dCeu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualKZ1dCeu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualKZ1dCeu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualMFSnEY5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualMFSnEY5 img,
.cid-ualMFSnEY5 .item-img {
  width: 100%;
}
.cid-ualMFSnEY5 .item:focus,
.cid-ualMFSnEY5 span:focus {
  outline: none;
}
.cid-ualMFSnEY5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualMFSnEY5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualMFSnEY5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualMFSnEY5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualMFSnEY5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualMFSnEY5 .mbr-section-title {
  color: #232323;
}
.cid-ualMFSnEY5 .mbr-text,
.cid-ualMFSnEY5 .mbr-section-btn {
  text-align: left;
}
.cid-ualMFSnEY5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualMFSnEY5 .item-subtitle {
  text-align: center;
}
.cid-ualVHxcBXt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualVHxcBXt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualVHxcBXt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualVHxcBXt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualWoNTBSY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualWoNTBSY img,
.cid-ualWoNTBSY .item-img {
  width: 100%;
}
.cid-ualWoNTBSY .item:focus,
.cid-ualWoNTBSY span:focus {
  outline: none;
}
.cid-ualWoNTBSY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualWoNTBSY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualWoNTBSY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualWoNTBSY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualWoNTBSY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualWoNTBSY .mbr-section-title {
  color: #232323;
}
.cid-ualWoNTBSY .mbr-text,
.cid-ualWoNTBSY .mbr-section-btn {
  text-align: left;
}
.cid-ualWoNTBSY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualWoNTBSY .item-subtitle {
  text-align: center;
}
.cid-ualX5LjCtu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualX5LjCtu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualX5LjCtu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualX5LjCtu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualXznGZEO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualXznGZEO img,
.cid-ualXznGZEO .item-img {
  width: 100%;
}
.cid-ualXznGZEO .item:focus,
.cid-ualXznGZEO span:focus {
  outline: none;
}
.cid-ualXznGZEO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualXznGZEO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualXznGZEO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualXznGZEO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualXznGZEO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualXznGZEO .mbr-section-title {
  color: #232323;
}
.cid-ualXznGZEO .mbr-text,
.cid-ualXznGZEO .mbr-section-btn {
  text-align: left;
}
.cid-ualXznGZEO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualXznGZEO .item-subtitle {
  text-align: center;
}
.cid-ualYg69jtI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualYg69jtI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualYg69jtI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualYg69jtI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualZ6Bm8re {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualZ6Bm8re img,
.cid-ualZ6Bm8re .item-img {
  width: 100%;
}
.cid-ualZ6Bm8re .item:focus,
.cid-ualZ6Bm8re span:focus {
  outline: none;
}
.cid-ualZ6Bm8re .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ualZ6Bm8re .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ualZ6Bm8re .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ualZ6Bm8re .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ualZ6Bm8re .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ualZ6Bm8re .mbr-section-title {
  color: #232323;
}
.cid-ualZ6Bm8re .mbr-text,
.cid-ualZ6Bm8re .mbr-section-btn {
  text-align: left;
}
.cid-ualZ6Bm8re .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ualZ6Bm8re .item-subtitle {
  text-align: center;
}
.cid-ualZE0E2e1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualZE0E2e1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualZE0E2e1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualZE0E2e1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavFjQ5ksR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavFjQ5ksR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavFjQ5ksR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavFjQ5ksR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaoi9uuYss {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/motherboard-1.webp");
}
.cid-uaoi9uuYss .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoi9uuYss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoi9uuYss .mbr-section-title {
  color: #ffffff;
}
.cid-ualt20hWRK {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualt20hWRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt20hWRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt20hWRK .mbr-section-title {
  color: #ffffff;
}
.cid-ualt20QWSS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-ualt20QWSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt20QWSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt20QWSS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualt20QWSS .mbr-section-title {
  color: #ffffff;
}
.cid-uYN4OvUJBJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN4OvUJBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN4OvUJBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN4OvUJBJ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN4OvUJBJ .number {
  color: #ffffff;
}
.cid-uYN4OvUJBJ .period {
  display: block;
}
.cid-uYN4OvUJBJ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN4OvUJBJ .period {
    font-size: 0.8rem;
  }
}
.cid-uYN4OvUJBJ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN4OvUJBJ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN4OvUJBJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYN4OvUJBJ .mbr-text {
  color: #ffffff;
}
.cid-uYN4OvUJBJ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN4OvUJBJ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN4OvUJBJ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN4OvUJBJ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-ualt22a9n1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ualt22a9n1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt22a9n1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt22a9n1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-ualt22a9n1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-ualt22a9n1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-ualt22a9n1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-ualt22a9n1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-ualt22a9n1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-ualt22a9n1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-ualt22a9n1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-ualt22a9n1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-ualt22a9n1 [class^="socicon-"]:before,
.cid-ualt22a9n1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ualt22a9n1 .mbr-section-title,
.cid-ualt22a9n1 .mbr-social-likes {
  color: #ffffff;
}
.cid-ualt22MSDw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ualt22MSDw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt22MSDw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt22MSDw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-ualt22MSDw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-ualt22MSDw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ualt22MSDw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ualt22MSDw .mbr-text {
  color: #ffffff;
}
.cid-ualt22MSDw .card-title {
  color: #ffffff;
}
.cid-ualt22MSDw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ualt22MSDw .mbr-section-title {
  color: #ffffff;
}
.cid-ualt22MSDw .link {
  color: #4479d9;
}
.cid-ualt23u9an {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ualt23u9an .mbr-fallback-image.disabled {
  display: none;
}
.cid-ualt23u9an .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ualt23u9an .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ualt23u9an .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ualt23u9an .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-ualt23u9an .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-ualt23u9an div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ualt23u9an .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-ual4PqdRWw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ual4PqdRWw nav.navbar {
  position: fixed;
}
.cid-ual4PqdRWw .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-ual4PqdRWw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ual4PqdRWw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ual4PqdRWw .dropdown-item:hover,
.cid-ual4PqdRWw .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-ual4PqdRWw .dropdown-item:hover span {
  color: white;
}
.cid-ual4PqdRWw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ual4PqdRWw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ual4PqdRWw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ual4PqdRWw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ual4PqdRWw .nav-link {
  position: relative;
}
.cid-ual4PqdRWw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ual4PqdRWw .container {
    flex-wrap: wrap;
  }
}
.cid-ual4PqdRWw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ual4PqdRWw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ual4PqdRWw .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ual4PqdRWw .dropdown-menu,
.cid-ual4PqdRWw .navbar.opened {
  background: #000000 !important;
}
.cid-ual4PqdRWw .nav-item:focus,
.cid-ual4PqdRWw .nav-link:focus {
  outline: none;
}
.cid-ual4PqdRWw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ual4PqdRWw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ual4PqdRWw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ual4PqdRWw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ual4PqdRWw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ual4PqdRWw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ual4PqdRWw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ual4PqdRWw .navbar.opened {
  transition: all 0.3s;
}
.cid-ual4PqdRWw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ual4PqdRWw .navbar .navbar-logo img {
  width: auto;
}
.cid-ual4PqdRWw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ual4PqdRWw .navbar.collapsed {
  justify-content: center;
}
.cid-ual4PqdRWw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ual4PqdRWw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ual4PqdRWw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ual4PqdRWw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ual4PqdRWw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ual4PqdRWw .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-ual4PqdRWw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ual4PqdRWw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ual4PqdRWw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ual4PqdRWw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ual4PqdRWw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ual4PqdRWw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ual4PqdRWw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ual4PqdRWw .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-ual4PqdRWw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ual4PqdRWw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ual4PqdRWw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ual4PqdRWw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ual4PqdRWw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ual4PqdRWw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ual4PqdRWw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ual4PqdRWw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ual4PqdRWw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ual4PqdRWw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ual4PqdRWw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ual4PqdRWw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ual4PqdRWw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ual4PqdRWw .dropdown-item.active,
.cid-ual4PqdRWw .dropdown-item:active {
  background-color: transparent;
}
.cid-ual4PqdRWw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ual4PqdRWw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ual4PqdRWw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ual4PqdRWw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ual4PqdRWw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ual4PqdRWw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ual4PqdRWw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ual4PqdRWw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ual4PqdRWw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ual4PqdRWw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ual4PqdRWw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ual4PqdRWw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ual4PqdRWw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ual4PqdRWw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ual4PqdRWw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ual4PqdRWw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ual4PqdRWw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ual4PqdRWw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ual4PqdRWw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ual4PqdRWw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ual4PqdRWw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ual4PqdRWw .navbar {
    height: 70px;
  }
  .cid-ual4PqdRWw .navbar.opened {
    height: auto;
  }
  .cid-ual4PqdRWw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ual4PqYv5O {
  background-image: url("../../../assets/images/hammo-cans-laptop-banner.webp");
}
.cid-ual4PqYv5O .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4PqYv5O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4PqYv5O .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ual4PqYv5O .mbr-text,
.cid-ual4PqYv5O .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ual4PqYv5O .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ual6mX8P1P {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ual6mX8P1P img,
.cid-ual6mX8P1P .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ual6mX8P1P .item:focus,
.cid-ual6mX8P1P span:focus {
  outline: none;
}
.cid-ual6mX8P1P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ual6mX8P1P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ual6mX8P1P .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ual6mX8P1P .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ual6mX8P1P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ual6mX8P1P .mbr-section-title {
  color: #ffffff;
}
.cid-ual6mX8P1P .mbr-text,
.cid-ual6mX8P1P .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ual6mX8P1P .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ual6mX8P1P .item-subtitle {
  text-align: center;
}
.cid-ual6mX8P1P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaofKKd0ow {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/motherboard-1.webp");
}
.cid-uaofKKd0ow .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaofKKd0ow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaofKKd0ow .mbr-section-title {
  color: #ffffff;
}
.cid-ual4PxoThm {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ual4PxoThm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4PxoThm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4PxoThm .mbr-section-title {
  color: #ffffff;
}
.cid-ual4Py6y2C {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-ual4Py6y2C .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4Py6y2C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4Py6y2C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ual4Py6y2C .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3rqaOuC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN3rqaOuC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN3rqaOuC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN3rqaOuC .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN3rqaOuC .number {
  color: #ffffff;
}
.cid-uYN3rqaOuC .period {
  display: block;
}
.cid-uYN3rqaOuC .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN3rqaOuC .period {
    font-size: 0.8rem;
  }
}
.cid-uYN3rqaOuC .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN3rqaOuC .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN3rqaOuC .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3rqaOuC .mbr-text {
  color: #ffffff;
}
.cid-uYN3rqaOuC .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN3rqaOuC .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN3rqaOuC .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN3rqaOuC .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-ual4PzEPGN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ual4PzEPGN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4PzEPGN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4PzEPGN .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-ual4PzEPGN .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-ual4PzEPGN .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-ual4PzEPGN .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-ual4PzEPGN .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-ual4PzEPGN .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-ual4PzEPGN .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-ual4PzEPGN .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-ual4PzEPGN .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-ual4PzEPGN [class^="socicon-"]:before,
.cid-ual4PzEPGN [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ual4PzEPGN .mbr-section-title,
.cid-ual4PzEPGN .mbr-social-likes {
  color: #ffffff;
}
.cid-ual4PAsiui {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ual4PAsiui .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4PAsiui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4PAsiui .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-ual4PAsiui .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-ual4PAsiui .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ual4PAsiui .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ual4PAsiui .mbr-text {
  color: #ffffff;
}
.cid-ual4PAsiui .card-title {
  color: #ffffff;
}
.cid-ual4PAsiui .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ual4PAsiui .mbr-section-title {
  color: #ffffff;
}
.cid-ual4PAsiui .link {
  color: #4479d9;
}
.cid-ual4PBlMgb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ual4PBlMgb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ual4PBlMgb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ual4PBlMgb .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ual4PBlMgb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ual4PBlMgb .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-ual4PBlMgb .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-ual4PBlMgb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ual4PBlMgb .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uaoTXMMIaU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uaoTXMMIaU nav.navbar {
  position: fixed;
}
.cid-uaoTXMMIaU .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-uaoTXMMIaU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaoTXMMIaU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaoTXMMIaU .dropdown-item:hover,
.cid-uaoTXMMIaU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uaoTXMMIaU .dropdown-item:hover span {
  color: white;
}
.cid-uaoTXMMIaU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaoTXMMIaU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaoTXMMIaU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaoTXMMIaU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaoTXMMIaU .nav-link {
  position: relative;
}
.cid-uaoTXMMIaU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaoTXMMIaU .container {
    flex-wrap: wrap;
  }
}
.cid-uaoTXMMIaU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaoTXMMIaU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uaoTXMMIaU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaoTXMMIaU .dropdown-menu,
.cid-uaoTXMMIaU .navbar.opened {
  background: #000000 !important;
}
.cid-uaoTXMMIaU .nav-item:focus,
.cid-uaoTXMMIaU .nav-link:focus {
  outline: none;
}
.cid-uaoTXMMIaU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaoTXMMIaU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaoTXMMIaU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaoTXMMIaU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaoTXMMIaU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaoTXMMIaU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaoTXMMIaU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uaoTXMMIaU .navbar.opened {
  transition: all 0.3s;
}
.cid-uaoTXMMIaU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaoTXMMIaU .navbar .navbar-logo img {
  width: auto;
}
.cid-uaoTXMMIaU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaoTXMMIaU .navbar.collapsed {
  justify-content: center;
}
.cid-uaoTXMMIaU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaoTXMMIaU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaoTXMMIaU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uaoTXMMIaU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaoTXMMIaU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaoTXMMIaU .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-uaoTXMMIaU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaoTXMMIaU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaoTXMMIaU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaoTXMMIaU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaoTXMMIaU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaoTXMMIaU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaoTXMMIaU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaoTXMMIaU .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-uaoTXMMIaU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaoTXMMIaU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaoTXMMIaU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaoTXMMIaU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaoTXMMIaU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaoTXMMIaU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaoTXMMIaU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaoTXMMIaU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uaoTXMMIaU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaoTXMMIaU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaoTXMMIaU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uaoTXMMIaU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaoTXMMIaU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaoTXMMIaU .dropdown-item.active,
.cid-uaoTXMMIaU .dropdown-item:active {
  background-color: transparent;
}
.cid-uaoTXMMIaU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaoTXMMIaU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaoTXMMIaU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaoTXMMIaU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uaoTXMMIaU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaoTXMMIaU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaoTXMMIaU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaoTXMMIaU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaoTXMMIaU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaoTXMMIaU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uaoTXMMIaU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaoTXMMIaU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaoTXMMIaU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaoTXMMIaU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaoTXMMIaU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaoTXMMIaU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaoTXMMIaU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaoTXMMIaU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaoTXMMIaU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaoTXMMIaU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaoTXMMIaU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uaoTXMMIaU .navbar {
    height: 70px;
  }
  .cid-uaoTXMMIaU .navbar.opened {
    height: auto;
  }
  .cid-uaoTXMMIaU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaoTXNyusc {
  background-image: url("../../../assets/images/jeep-ham-radio-expedition-banner.webp");
}
.cid-uaoTXNyusc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXNyusc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXNyusc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uaoTXNyusc .mbr-text,
.cid-uaoTXNyusc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uaoTXNyusc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uaoTXO4zMj {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaoTXO4zMj img,
.cid-uaoTXO4zMj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uaoTXO4zMj .item:focus,
.cid-uaoTXO4zMj span:focus {
  outline: none;
}
.cid-uaoTXO4zMj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaoTXO4zMj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaoTXO4zMj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaoTXO4zMj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaoTXO4zMj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaoTXO4zMj .mbr-section-title {
  color: #ffffff;
}
.cid-uaoTXO4zMj .mbr-text,
.cid-uaoTXO4zMj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uaoTXO4zMj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uaoTXO4zMj .item-subtitle {
  text-align: center;
}
.cid-uaoTXO4zMj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uap1Rnnrdy {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uap1Rnnrdy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uap1Rnnrdy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uap1Rnnrdy .mbr-section-title {
  color: #ffffff;
}
.cid-uap1Rnnrdy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uap2VR1qmX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uap2VR1qmX img,
.cid-uap2VR1qmX .item-img {
  width: 100%;
}
.cid-uap2VR1qmX .item:focus,
.cid-uap2VR1qmX span:focus {
  outline: none;
}
.cid-uap2VR1qmX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uap2VR1qmX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uap2VR1qmX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uap2VR1qmX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uap2VR1qmX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uap2VR1qmX .mbr-section-title {
  color: #232323;
}
.cid-uap2VR1qmX .mbr-text,
.cid-uap2VR1qmX .mbr-section-btn {
  text-align: left;
}
.cid-uap2VR1qmX .item-title {
  text-align: left;
}
.cid-uap2VR1qmX .item-subtitle {
  text-align: center;
}
.cid-uap4cZ0tto {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uap4cZ0tto .mbr-fallback-image.disabled {
  display: none;
}
.cid-uap4cZ0tto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uap4cZ0tto .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uapf73AJD8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapf73AJD8 img,
.cid-uapf73AJD8 .item-img {
  width: 100%;
}
.cid-uapf73AJD8 .item:focus,
.cid-uapf73AJD8 span:focus {
  outline: none;
}
.cid-uapf73AJD8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uapf73AJD8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uapf73AJD8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uapf73AJD8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uapf73AJD8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uapf73AJD8 .mbr-section-title {
  color: #232323;
}
.cid-uapf73AJD8 .mbr-text,
.cid-uapf73AJD8 .mbr-section-btn {
  text-align: left;
}
.cid-uapf73AJD8 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uapf73AJD8 .item-subtitle {
  text-align: center;
}
.cid-uapfWjFut9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapfWjFut9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uapfWjFut9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uapfWjFut9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uapBRbwjNV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapBRbwjNV img,
.cid-uapBRbwjNV .item-img {
  width: 100%;
}
.cid-uapBRbwjNV .item:focus,
.cid-uapBRbwjNV span:focus {
  outline: none;
}
.cid-uapBRbwjNV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uapBRbwjNV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uapBRbwjNV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uapBRbwjNV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uapBRbwjNV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uapBRbwjNV .mbr-section-title {
  color: #232323;
}
.cid-uapBRbwjNV .mbr-text,
.cid-uapBRbwjNV .mbr-section-btn {
  text-align: left;
}
.cid-uapBRbwjNV .item-title {
  text-align: left;
}
.cid-uapBRbwjNV .item-subtitle {
  text-align: center;
}
.cid-uapDS41KXM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapDS41KXM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uapDS41KXM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uapDS41KXM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uapENaeXG2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapENaeXG2 img,
.cid-uapENaeXG2 .item-img {
  width: 100%;
}
.cid-uapENaeXG2 .item:focus,
.cid-uapENaeXG2 span:focus {
  outline: none;
}
.cid-uapENaeXG2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uapENaeXG2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uapENaeXG2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uapENaeXG2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uapENaeXG2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uapENaeXG2 .mbr-section-title {
  color: #232323;
}
.cid-uapENaeXG2 .mbr-text,
.cid-uapENaeXG2 .mbr-section-btn {
  text-align: left;
}
.cid-uapENaeXG2 .item-title {
  text-align: left;
}
.cid-uapENaeXG2 .item-subtitle {
  text-align: center;
}
.cid-uapFdUbSMx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapFdUbSMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uapFdUbSMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uapFdUbSMx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uapHV2drSs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapHV2drSs img,
.cid-uapHV2drSs .item-img {
  width: 100%;
}
.cid-uapHV2drSs .item:focus,
.cid-uapHV2drSs span:focus {
  outline: none;
}
.cid-uapHV2drSs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uapHV2drSs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uapHV2drSs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uapHV2drSs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uapHV2drSs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uapHV2drSs .mbr-section-title {
  color: #232323;
}
.cid-uapHV2drSs .mbr-text,
.cid-uapHV2drSs .mbr-section-btn {
  text-align: left;
}
.cid-uapHV2drSs .item-title {
  text-align: left;
}
.cid-uapHV2drSs .item-subtitle {
  text-align: center;
}
.cid-uapIgxkSBK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uapIgxkSBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uapIgxkSBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uapIgxkSBK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavEltt1ai {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavEltt1ai .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavEltt1ai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavEltt1ai .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3FCYWkkhp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FCYWkkhp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FCYWkkhp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FCYWkkhp .mbr-section-title {
  color: #ffffff;
}
.cid-v3FCYWkkhp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaoTXONkUg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/motherboard-1.webp");
}
.cid-uaoTXONkUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXONkUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXONkUg .mbr-section-title {
  color: #ffffff;
}
.cid-uaoTXPkXL1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaoTXPkXL1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXPkXL1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXPkXL1 .mbr-section-title {
  color: #ffffff;
}
.cid-uaoTXPUSJv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uaoTXPUSJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXPUSJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXPUSJv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaoTXPUSJv .mbr-section-title {
  color: #ffffff;
}
.cid-uYN42V6yMx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN42V6yMx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN42V6yMx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN42V6yMx .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN42V6yMx .number {
  color: #ffffff;
}
.cid-uYN42V6yMx .period {
  display: block;
}
.cid-uYN42V6yMx .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN42V6yMx .period {
    font-size: 0.8rem;
  }
}
.cid-uYN42V6yMx .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN42V6yMx .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN42V6yMx .mbr-section-title {
  color: #ffffff;
}
.cid-uYN42V6yMx .mbr-text {
  color: #ffffff;
}
.cid-uYN42V6yMx .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN42V6yMx .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN42V6yMx .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN42V6yMx .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uaoTXR5DhA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uaoTXR5DhA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXR5DhA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXR5DhA .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uaoTXR5DhA .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uaoTXR5DhA .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uaoTXR5DhA .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uaoTXR5DhA .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uaoTXR5DhA .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uaoTXR5DhA .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uaoTXR5DhA .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uaoTXR5DhA .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uaoTXR5DhA [class^="socicon-"]:before,
.cid-uaoTXR5DhA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uaoTXR5DhA .mbr-section-title,
.cid-uaoTXR5DhA .mbr-social-likes {
  color: #ffffff;
}
.cid-uaoTXRF4CF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaoTXRF4CF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXRF4CF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXRF4CF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uaoTXRF4CF .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uaoTXRF4CF .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uaoTXRF4CF .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uaoTXRF4CF .mbr-text {
  color: #ffffff;
}
.cid-uaoTXRF4CF .card-title {
  color: #ffffff;
}
.cid-uaoTXRF4CF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaoTXRF4CF .mbr-section-title {
  color: #ffffff;
}
.cid-uaoTXRF4CF .link {
  color: #4479d9;
}
.cid-uaoTXSkICR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uaoTXSkICR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaoTXSkICR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaoTXSkICR .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaoTXSkICR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uaoTXSkICR .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uaoTXSkICR .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uaoTXSkICR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uaoTXSkICR .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uauzJZ8SLd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uauzJZ8SLd nav.navbar {
  position: fixed;
}
.cid-uauzJZ8SLd .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-uauzJZ8SLd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uauzJZ8SLd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uauzJZ8SLd .dropdown-item:hover,
.cid-uauzJZ8SLd .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uauzJZ8SLd .dropdown-item:hover span {
  color: white;
}
.cid-uauzJZ8SLd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uauzJZ8SLd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uauzJZ8SLd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uauzJZ8SLd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uauzJZ8SLd .nav-link {
  position: relative;
}
.cid-uauzJZ8SLd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uauzJZ8SLd .container {
    flex-wrap: wrap;
  }
}
.cid-uauzJZ8SLd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uauzJZ8SLd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uauzJZ8SLd .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uauzJZ8SLd .dropdown-menu,
.cid-uauzJZ8SLd .navbar.opened {
  background: #000000 !important;
}
.cid-uauzJZ8SLd .nav-item:focus,
.cid-uauzJZ8SLd .nav-link:focus {
  outline: none;
}
.cid-uauzJZ8SLd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uauzJZ8SLd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uauzJZ8SLd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uauzJZ8SLd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uauzJZ8SLd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uauzJZ8SLd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uauzJZ8SLd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uauzJZ8SLd .navbar.opened {
  transition: all 0.3s;
}
.cid-uauzJZ8SLd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uauzJZ8SLd .navbar .navbar-logo img {
  width: auto;
}
.cid-uauzJZ8SLd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uauzJZ8SLd .navbar.collapsed {
  justify-content: center;
}
.cid-uauzJZ8SLd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uauzJZ8SLd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uauzJZ8SLd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uauzJZ8SLd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uauzJZ8SLd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uauzJZ8SLd .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-uauzJZ8SLd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uauzJZ8SLd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uauzJZ8SLd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uauzJZ8SLd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uauzJZ8SLd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uauzJZ8SLd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uauzJZ8SLd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uauzJZ8SLd .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-uauzJZ8SLd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uauzJZ8SLd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uauzJZ8SLd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uauzJZ8SLd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uauzJZ8SLd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uauzJZ8SLd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uauzJZ8SLd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uauzJZ8SLd .navbar.navbar-short {
  min-height: 60px;
}
.cid-uauzJZ8SLd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uauzJZ8SLd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uauzJZ8SLd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uauzJZ8SLd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uauzJZ8SLd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uauzJZ8SLd .dropdown-item.active,
.cid-uauzJZ8SLd .dropdown-item:active {
  background-color: transparent;
}
.cid-uauzJZ8SLd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uauzJZ8SLd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uauzJZ8SLd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uauzJZ8SLd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uauzJZ8SLd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uauzJZ8SLd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uauzJZ8SLd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uauzJZ8SLd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uauzJZ8SLd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uauzJZ8SLd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uauzJZ8SLd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uauzJZ8SLd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uauzJZ8SLd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uauzJZ8SLd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uauzJZ8SLd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uauzJZ8SLd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uauzJZ8SLd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uauzJZ8SLd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uauzJZ8SLd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uauzJZ8SLd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uauzJZ8SLd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uauzJZ8SLd .navbar {
    height: 70px;
  }
  .cid-uauzJZ8SLd .navbar.opened {
    height: auto;
  }
  .cid-uauzJZ8SLd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uauzK00GUy {
  background-image: url("../../../assets/images/hammo-cans-laptop-banner.webp");
}
.cid-uauzK00GUy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK00GUy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK00GUy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uauzK00GUy .mbr-text,
.cid-uauzK00GUy .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uauzK00GUy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uauzK0AQ1y {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauzK0AQ1y img,
.cid-uauzK0AQ1y .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uauzK0AQ1y .item:focus,
.cid-uauzK0AQ1y span:focus {
  outline: none;
}
.cid-uauzK0AQ1y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uauzK0AQ1y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uauzK0AQ1y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uauzK0AQ1y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uauzK0AQ1y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uauzK0AQ1y .mbr-section-title {
  color: #ffffff;
}
.cid-uauzK0AQ1y .mbr-text,
.cid-uauzK0AQ1y .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uauzK0AQ1y .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uauzK0AQ1y .item-subtitle {
  text-align: center;
}
.cid-uauzK0AQ1y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauAqAc1Ws {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauAqAc1Ws img,
.cid-uauAqAc1Ws .item-img {
  width: 100%;
}
.cid-uauAqAc1Ws .item:focus,
.cid-uauAqAc1Ws span:focus {
  outline: none;
}
.cid-uauAqAc1Ws .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uauAqAc1Ws .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uauAqAc1Ws .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uauAqAc1Ws .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uauAqAc1Ws .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uauAqAc1Ws .mbr-section-title {
  color: #ffffff;
}
.cid-uauAqAc1Ws .mbr-text,
.cid-uauAqAc1Ws .mbr-section-btn {
  text-align: left;
}
.cid-uauAqAc1Ws .item-title {
  text-align: left;
}
.cid-uauAqAc1Ws .item-subtitle {
  text-align: center;
}
.cid-uauAqAc1Ws .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauAtg6jNd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauAtg6jNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauAtg6jNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauAtg6jNd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauAuUpQfC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauAuUpQfC img,
.cid-uauAuUpQfC .item-img {
  width: 100%;
}
.cid-uauAuUpQfC .item:focus,
.cid-uauAuUpQfC span:focus {
  outline: none;
}
.cid-uauAuUpQfC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uauAuUpQfC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uauAuUpQfC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uauAuUpQfC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uauAuUpQfC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uauAuUpQfC .mbr-section-title {
  color: #232323;
}
.cid-uauAuUpQfC .mbr-text,
.cid-uauAuUpQfC .mbr-section-btn {
  text-align: left;
}
.cid-uauAuUpQfC .item-title {
  text-align: left;
}
.cid-uauAuUpQfC .item-subtitle {
  text-align: center;
}
.cid-uauAwkAcHN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauAwkAcHN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauAwkAcHN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauAwkAcHN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauJ7vHYAD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauJ7vHYAD img,
.cid-uauJ7vHYAD .item-img {
  width: 100%;
}
.cid-uauJ7vHYAD .item:focus,
.cid-uauJ7vHYAD span:focus {
  outline: none;
}
.cid-uauJ7vHYAD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uauJ7vHYAD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uauJ7vHYAD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uauJ7vHYAD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uauJ7vHYAD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uauJ7vHYAD .mbr-section-title {
  color: #232323;
}
.cid-uauJ7vHYAD .mbr-text,
.cid-uauJ7vHYAD .mbr-section-btn {
  text-align: left;
}
.cid-uauJ7vHYAD .item-title {
  text-align: left;
}
.cid-uauJ7vHYAD .item-subtitle {
  text-align: center;
}
.cid-uauJ8WHHLd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauJ8WHHLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauJ8WHHLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauJ8WHHLd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauJaaJmwv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauJaaJmwv img,
.cid-uauJaaJmwv .item-img {
  width: 100%;
}
.cid-uauJaaJmwv .item:focus,
.cid-uauJaaJmwv span:focus {
  outline: none;
}
.cid-uauJaaJmwv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uauJaaJmwv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uauJaaJmwv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uauJaaJmwv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uauJaaJmwv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uauJaaJmwv .mbr-section-title {
  color: #232323;
}
.cid-uauJaaJmwv .mbr-text,
.cid-uauJaaJmwv .mbr-section-btn {
  text-align: left;
}
.cid-uauJaaJmwv .item-title {
  text-align: left;
}
.cid-uauJaaJmwv .item-subtitle {
  text-align: center;
}
.cid-uauJbUtosL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauJbUtosL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauJbUtosL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauJbUtosL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavluONpKS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavluONpKS img,
.cid-uavluONpKS .item-img {
  width: 100%;
}
.cid-uavluONpKS .item:focus,
.cid-uavluONpKS span:focus {
  outline: none;
}
.cid-uavluONpKS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uavluONpKS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uavluONpKS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uavluONpKS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uavluONpKS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uavluONpKS .mbr-section-title {
  color: #232323;
}
.cid-uavluONpKS .mbr-text,
.cid-uavluONpKS .mbr-section-btn {
  text-align: left;
}
.cid-uavluONpKS .item-title {
  text-align: left;
}
.cid-uavluONpKS .item-subtitle {
  text-align: center;
}
.cid-uavm46qFoa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavm46qFoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavm46qFoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavm46qFoa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavnr5XTr5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavnr5XTr5 img,
.cid-uavnr5XTr5 .item-img {
  width: 100%;
}
.cid-uavnr5XTr5 .item:focus,
.cid-uavnr5XTr5 span:focus {
  outline: none;
}
.cid-uavnr5XTr5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uavnr5XTr5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uavnr5XTr5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uavnr5XTr5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uavnr5XTr5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uavnr5XTr5 .mbr-section-title {
  color: #232323;
}
.cid-uavnr5XTr5 .mbr-text,
.cid-uavnr5XTr5 .mbr-section-btn {
  text-align: left;
}
.cid-uavnr5XTr5 .item-title {
  text-align: left;
}
.cid-uavnr5XTr5 .item-subtitle {
  text-align: center;
}
.cid-uavo5ckXPr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavo5ckXPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavo5ckXPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavo5ckXPr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavqmOcCTf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavqmOcCTf img,
.cid-uavqmOcCTf .item-img {
  width: 100%;
}
.cid-uavqmOcCTf .item:focus,
.cid-uavqmOcCTf span:focus {
  outline: none;
}
.cid-uavqmOcCTf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uavqmOcCTf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uavqmOcCTf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uavqmOcCTf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uavqmOcCTf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uavqmOcCTf .mbr-section-title {
  color: #232323;
}
.cid-uavqmOcCTf .mbr-text,
.cid-uavqmOcCTf .mbr-section-btn {
  text-align: left;
}
.cid-uavqmOcCTf .item-title {
  text-align: left;
}
.cid-uavqmOcCTf .item-subtitle {
  text-align: center;
}
.cid-uavqYcoGhn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavqYcoGhn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavqYcoGhn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavqYcoGhn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavsqIwQiP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavsqIwQiP img,
.cid-uavsqIwQiP .item-img {
  width: 100%;
}
.cid-uavsqIwQiP .item:focus,
.cid-uavsqIwQiP span:focus {
  outline: none;
}
.cid-uavsqIwQiP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uavsqIwQiP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uavsqIwQiP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uavsqIwQiP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uavsqIwQiP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uavsqIwQiP .mbr-section-title {
  color: #232323;
}
.cid-uavsqIwQiP .mbr-text,
.cid-uavsqIwQiP .mbr-section-btn {
  text-align: left;
}
.cid-uavsqIwQiP .item-title {
  text-align: left;
}
.cid-uavsqIwQiP .item-subtitle {
  text-align: center;
}
.cid-uavv5UTfmw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavv5UTfmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavv5UTfmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavv5UTfmw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavx9YHG4X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavx9YHG4X img,
.cid-uavx9YHG4X .item-img {
  width: 100%;
}
.cid-uavx9YHG4X .item:focus,
.cid-uavx9YHG4X span:focus {
  outline: none;
}
.cid-uavx9YHG4X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uavx9YHG4X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uavx9YHG4X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uavx9YHG4X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uavx9YHG4X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uavx9YHG4X .mbr-section-title {
  color: #232323;
}
.cid-uavx9YHG4X .mbr-text,
.cid-uavx9YHG4X .mbr-section-btn {
  text-align: left;
}
.cid-uavx9YHG4X .item-title {
  text-align: left;
}
.cid-uavx9YHG4X .item-subtitle {
  text-align: center;
}
.cid-uavxxjtaUH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavxxjtaUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavxxjtaUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavxxjtaUH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uavBFjXOjF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uavBFjXOjF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uavBFjXOjF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uavBFjXOjF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauzK1kqAb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/motherboard-1.webp");
}
.cid-uauzK1kqAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK1kqAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK1kqAb .mbr-section-title {
  color: #ffffff;
}
.cid-uauzK1R7eE {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauzK1R7eE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK1R7eE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK1R7eE .mbr-section-title {
  color: #ffffff;
}
.cid-uauzK2rHGg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uauzK2rHGg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK2rHGg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK2rHGg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauzK2rHGg .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3S9dsXz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN3S9dsXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN3S9dsXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN3S9dsXz .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN3S9dsXz .number {
  color: #ffffff;
}
.cid-uYN3S9dsXz .period {
  display: block;
}
.cid-uYN3S9dsXz .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN3S9dsXz .period {
    font-size: 0.8rem;
  }
}
.cid-uYN3S9dsXz .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN3S9dsXz .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN3S9dsXz .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3S9dsXz .mbr-text {
  color: #ffffff;
}
.cid-uYN3S9dsXz .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN3S9dsXz .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN3S9dsXz .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN3S9dsXz .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uauzK3EMKN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uauzK3EMKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK3EMKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK3EMKN .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uauzK3EMKN .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uauzK3EMKN .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uauzK3EMKN .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uauzK3EMKN .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uauzK3EMKN .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uauzK3EMKN .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uauzK3EMKN .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uauzK3EMKN .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uauzK3EMKN [class^="socicon-"]:before,
.cid-uauzK3EMKN [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uauzK3EMKN .mbr-section-title,
.cid-uauzK3EMKN .mbr-social-likes {
  color: #ffffff;
}
.cid-uauzK4dNN4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uauzK4dNN4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK4dNN4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK4dNN4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uauzK4dNN4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uauzK4dNN4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uauzK4dNN4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uauzK4dNN4 .mbr-text {
  color: #ffffff;
}
.cid-uauzK4dNN4 .card-title {
  color: #ffffff;
}
.cid-uauzK4dNN4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uauzK4dNN4 .mbr-section-title {
  color: #ffffff;
}
.cid-uauzK4dNN4 .link {
  color: #4479d9;
}
.cid-uauzK4T4Bs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uauzK4T4Bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uauzK4T4Bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uauzK4T4Bs .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uauzK4T4Bs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uauzK4T4Bs .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uauzK4T4Bs .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uauzK4T4Bs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uauzK4T4Bs .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-ucjIssSumu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ucjIssSumu nav.navbar {
  position: fixed;
}
.cid-ucjIssSumu .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-ucjIssSumu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucjIssSumu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucjIssSumu .dropdown-item:hover,
.cid-ucjIssSumu .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-ucjIssSumu .dropdown-item:hover span {
  color: white;
}
.cid-ucjIssSumu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucjIssSumu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucjIssSumu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucjIssSumu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucjIssSumu .nav-link {
  position: relative;
}
.cid-ucjIssSumu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucjIssSumu .container {
    flex-wrap: wrap;
  }
}
.cid-ucjIssSumu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ucjIssSumu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ucjIssSumu .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucjIssSumu .dropdown-menu,
.cid-ucjIssSumu .navbar.opened {
  background: #000000 !important;
}
.cid-ucjIssSumu .nav-item:focus,
.cid-ucjIssSumu .nav-link:focus {
  outline: none;
}
.cid-ucjIssSumu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucjIssSumu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucjIssSumu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucjIssSumu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucjIssSumu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucjIssSumu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucjIssSumu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ucjIssSumu .navbar.opened {
  transition: all 0.3s;
}
.cid-ucjIssSumu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucjIssSumu .navbar .navbar-logo img {
  width: auto;
}
.cid-ucjIssSumu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucjIssSumu .navbar.collapsed {
  justify-content: center;
}
.cid-ucjIssSumu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucjIssSumu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucjIssSumu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ucjIssSumu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucjIssSumu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucjIssSumu .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-ucjIssSumu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucjIssSumu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucjIssSumu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucjIssSumu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucjIssSumu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucjIssSumu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucjIssSumu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucjIssSumu .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-ucjIssSumu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucjIssSumu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucjIssSumu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucjIssSumu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucjIssSumu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucjIssSumu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ucjIssSumu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ucjIssSumu .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucjIssSumu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucjIssSumu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ucjIssSumu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ucjIssSumu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucjIssSumu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucjIssSumu .dropdown-item.active,
.cid-ucjIssSumu .dropdown-item:active {
  background-color: transparent;
}
.cid-ucjIssSumu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucjIssSumu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucjIssSumu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucjIssSumu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ucjIssSumu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucjIssSumu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucjIssSumu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucjIssSumu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucjIssSumu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucjIssSumu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucjIssSumu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucjIssSumu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucjIssSumu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucjIssSumu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucjIssSumu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucjIssSumu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucjIssSumu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucjIssSumu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucjIssSumu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ucjIssSumu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucjIssSumu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucjIssSumu .navbar {
    height: 70px;
  }
  .cid-ucjIssSumu .navbar.opened {
    height: auto;
  }
  .cid-ucjIssSumu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucjIstERkS {
  background-image: url("../../../assets/images/solar-array-greenhouse.webp");
}
.cid-ucjIstERkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIstERkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIstERkS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ucjIstERkS .mbr-text,
.cid-ucjIstERkS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ucjIstERkS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ucjJ2SlkDz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjJ2SlkDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjJ2SlkDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjJ2SlkDz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjJ2SlkDz .mbr-section-title {
  color: #ffffff;
}
.cid-ucjJ75MqpZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjJ75MqpZ img,
.cid-ucjJ75MqpZ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ucjJ75MqpZ .item:focus,
.cid-ucjJ75MqpZ span:focus {
  outline: none;
}
.cid-ucjJ75MqpZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ucjJ75MqpZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ucjJ75MqpZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucjJ75MqpZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ucjJ75MqpZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ucjJ75MqpZ .mbr-section-title {
  color: #ffffff;
}
.cid-ucjJ75MqpZ .mbr-text,
.cid-ucjJ75MqpZ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ucjJ75MqpZ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ucjJ75MqpZ .item-subtitle {
  text-align: center;
}
.cid-ucjJ75MqpZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjRlYwl5X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjRlYwl5X .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjRlYwl5X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjRlYwl5X .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjRnlVnDR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjRnlVnDR img,
.cid-ucjRnlVnDR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ucjRnlVnDR .item:focus,
.cid-ucjRnlVnDR span:focus {
  outline: none;
}
.cid-ucjRnlVnDR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ucjRnlVnDR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ucjRnlVnDR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucjRnlVnDR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ucjRnlVnDR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ucjRnlVnDR .mbr-section-title {
  color: #ffffff;
}
.cid-ucjRnlVnDR .mbr-text,
.cid-ucjRnlVnDR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ucjRnlVnDR .item-title {
  text-align: left;
}
.cid-ucjRnlVnDR .item-subtitle {
  text-align: center;
}
.cid-ucjRoW1lQm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjRoW1lQm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjRoW1lQm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjRoW1lQm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjRqpJ6pb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjRqpJ6pb img,
.cid-ucjRqpJ6pb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ucjRqpJ6pb .item:focus,
.cid-ucjRqpJ6pb span:focus {
  outline: none;
}
.cid-ucjRqpJ6pb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ucjRqpJ6pb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ucjRqpJ6pb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ucjRqpJ6pb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ucjRqpJ6pb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ucjRqpJ6pb .mbr-section-title {
  color: #ffffff;
}
.cid-ucjRqpJ6pb .mbr-text,
.cid-ucjRqpJ6pb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ucjRqpJ6pb .item-title {
  text-align: left;
}
.cid-ucjRqpJ6pb .item-subtitle {
  text-align: center;
}
.cid-uck5Cj8gjM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uck5Cj8gjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uck5Cj8gjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uck5Cj8gjM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uck5Eidlbn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uck5Eidlbn img,
.cid-uck5Eidlbn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uck5Eidlbn .item:focus,
.cid-uck5Eidlbn span:focus {
  outline: none;
}
.cid-uck5Eidlbn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uck5Eidlbn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uck5Eidlbn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uck5Eidlbn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uck5Eidlbn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uck5Eidlbn .mbr-section-title {
  color: #ffffff;
}
.cid-uck5Eidlbn .mbr-text,
.cid-uck5Eidlbn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uck5Eidlbn .item-title {
  text-align: left;
}
.cid-uck5Eidlbn .item-subtitle {
  text-align: center;
}
.cid-uck5FWNTiE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uck5FWNTiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uck5FWNTiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uck5FWNTiE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjIsvwthQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjIsvwthQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIsvwthQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIsvwthQ .mbr-section-title {
  color: #ffffff;
}
.cid-ucjIsw2eQ3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-ucjIsw2eQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIsw2eQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIsw2eQ3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjIsw2eQ3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3D8K8Gb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN3D8K8Gb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN3D8K8Gb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN3D8K8Gb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN3D8K8Gb .number {
  color: #ffffff;
}
.cid-uYN3D8K8Gb .period {
  display: block;
}
.cid-uYN3D8K8Gb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN3D8K8Gb .period {
    font-size: 0.8rem;
  }
}
.cid-uYN3D8K8Gb .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN3D8K8Gb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN3D8K8Gb .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3D8K8Gb .mbr-text {
  color: #ffffff;
}
.cid-uYN3D8K8Gb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN3D8K8Gb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN3D8K8Gb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN3D8K8Gb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-ucjIsxgLJ0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ucjIsxgLJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIsxgLJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIsxgLJ0 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-ucjIsxgLJ0 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-ucjIsxgLJ0 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-ucjIsxgLJ0 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-ucjIsxgLJ0 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-ucjIsxgLJ0 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-ucjIsxgLJ0 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-ucjIsxgLJ0 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-ucjIsxgLJ0 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-ucjIsxgLJ0 [class^="socicon-"]:before,
.cid-ucjIsxgLJ0 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ucjIsxgLJ0 .mbr-section-title,
.cid-ucjIsxgLJ0 .mbr-social-likes {
  color: #ffffff;
}
.cid-ucjIsxS2DK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ucjIsxS2DK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIsxS2DK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIsxS2DK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-ucjIsxS2DK .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-ucjIsxS2DK .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ucjIsxS2DK .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ucjIsxS2DK .mbr-text {
  color: #ffffff;
}
.cid-ucjIsxS2DK .card-title {
  color: #ffffff;
}
.cid-ucjIsxS2DK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucjIsxS2DK .mbr-section-title {
  color: #ffffff;
}
.cid-ucjIsxS2DK .link {
  color: #4479d9;
}
.cid-ucjIsyyIud {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ucjIsyyIud .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucjIsyyIud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucjIsyyIud .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucjIsyyIud .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucjIsyyIud .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-ucjIsyyIud .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-ucjIsyyIud div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ucjIsyyIud .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-ud35lAdJ0r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ud35lAdJ0r nav.navbar {
  position: fixed;
}
.cid-ud35lAdJ0r .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-ud35lAdJ0r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ud35lAdJ0r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ud35lAdJ0r .dropdown-item:hover,
.cid-ud35lAdJ0r .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-ud35lAdJ0r .dropdown-item:hover span {
  color: white;
}
.cid-ud35lAdJ0r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ud35lAdJ0r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ud35lAdJ0r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ud35lAdJ0r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ud35lAdJ0r .nav-link {
  position: relative;
}
.cid-ud35lAdJ0r .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ud35lAdJ0r .container {
    flex-wrap: wrap;
  }
}
.cid-ud35lAdJ0r .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ud35lAdJ0r .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ud35lAdJ0r .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ud35lAdJ0r .dropdown-menu,
.cid-ud35lAdJ0r .navbar.opened {
  background: #000000 !important;
}
.cid-ud35lAdJ0r .nav-item:focus,
.cid-ud35lAdJ0r .nav-link:focus {
  outline: none;
}
.cid-ud35lAdJ0r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ud35lAdJ0r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ud35lAdJ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ud35lAdJ0r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ud35lAdJ0r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ud35lAdJ0r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ud35lAdJ0r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-ud35lAdJ0r .navbar.opened {
  transition: all 0.3s;
}
.cid-ud35lAdJ0r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ud35lAdJ0r .navbar .navbar-logo img {
  width: auto;
}
.cid-ud35lAdJ0r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ud35lAdJ0r .navbar.collapsed {
  justify-content: center;
}
.cid-ud35lAdJ0r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ud35lAdJ0r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ud35lAdJ0r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-ud35lAdJ0r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ud35lAdJ0r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ud35lAdJ0r .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-ud35lAdJ0r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ud35lAdJ0r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ud35lAdJ0r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ud35lAdJ0r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ud35lAdJ0r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ud35lAdJ0r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ud35lAdJ0r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ud35lAdJ0r .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-ud35lAdJ0r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ud35lAdJ0r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ud35lAdJ0r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ud35lAdJ0r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ud35lAdJ0r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ud35lAdJ0r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ud35lAdJ0r .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ud35lAdJ0r .navbar.navbar-short {
  min-height: 60px;
}
.cid-ud35lAdJ0r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ud35lAdJ0r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ud35lAdJ0r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ud35lAdJ0r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ud35lAdJ0r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ud35lAdJ0r .dropdown-item.active,
.cid-ud35lAdJ0r .dropdown-item:active {
  background-color: transparent;
}
.cid-ud35lAdJ0r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ud35lAdJ0r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ud35lAdJ0r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ud35lAdJ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ud35lAdJ0r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ud35lAdJ0r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ud35lAdJ0r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ud35lAdJ0r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ud35lAdJ0r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ud35lAdJ0r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ud35lAdJ0r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ud35lAdJ0r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ud35lAdJ0r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ud35lAdJ0r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ud35lAdJ0r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ud35lAdJ0r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ud35lAdJ0r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ud35lAdJ0r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ud35lAdJ0r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ud35lAdJ0r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ud35lAdJ0r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ud35lAdJ0r .navbar {
    height: 70px;
  }
  .cid-ud35lAdJ0r .navbar.opened {
    height: auto;
  }
  .cid-ud35lAdJ0r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ud35lBeql9 {
  background-image: url("../../../assets/images/slingshot-horizontal-dipole-antenna-banner.webp");
}
.cid-ud35lBeql9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lBeql9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lBeql9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-ud35lBeql9 .mbr-text,
.cid-ud35lBeql9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ud35lBeql9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ud35lBVKtN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud35lBVKtN img,
.cid-ud35lBVKtN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud35lBVKtN .item:focus,
.cid-ud35lBVKtN span:focus {
  outline: none;
}
.cid-ud35lBVKtN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud35lBVKtN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud35lBVKtN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud35lBVKtN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud35lBVKtN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud35lBVKtN .mbr-section-title {
  color: #ffffff;
}
.cid-ud35lBVKtN .mbr-text,
.cid-ud35lBVKtN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ud35lBVKtN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud35lBVKtN .item-subtitle {
  text-align: center;
}
.cid-ud35lBVKtN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud36xCzAFJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36xCzAFJ img,
.cid-ud36xCzAFJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud36xCzAFJ .item:focus,
.cid-ud36xCzAFJ span:focus {
  outline: none;
}
.cid-ud36xCzAFJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud36xCzAFJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud36xCzAFJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud36xCzAFJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud36xCzAFJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud36xCzAFJ .mbr-section-title {
  color: #ffffff;
}
.cid-ud36xCzAFJ .mbr-text,
.cid-ud36xCzAFJ .mbr-section-btn {
  text-align: left;
}
.cid-ud36xCzAFJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud36xCzAFJ .item-subtitle {
  text-align: center;
}
.cid-ud36zwiuFN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36zwiuFN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud36zwiuFN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud36zwiuFN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud36BlY2HS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36BlY2HS img,
.cid-ud36BlY2HS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud36BlY2HS .item:focus,
.cid-ud36BlY2HS span:focus {
  outline: none;
}
.cid-ud36BlY2HS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud36BlY2HS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud36BlY2HS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud36BlY2HS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud36BlY2HS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud36BlY2HS .mbr-section-title {
  color: #232323;
}
.cid-ud36BlY2HS .mbr-text,
.cid-ud36BlY2HS .mbr-section-btn {
  text-align: left;
}
.cid-ud36BlY2HS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud36BlY2HS .item-subtitle {
  text-align: center;
}
.cid-ud36CYHx7z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36CYHx7z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud36CYHx7z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud36CYHx7z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud36Epk0lB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36Epk0lB img,
.cid-ud36Epk0lB .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud36Epk0lB .item:focus,
.cid-ud36Epk0lB span:focus {
  outline: none;
}
.cid-ud36Epk0lB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud36Epk0lB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud36Epk0lB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud36Epk0lB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud36Epk0lB .item-wrapper {
  background: transparent;
}
.cid-ud36Epk0lB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud36Epk0lB .mbr-section-title {
  color: #232323;
}
.cid-ud36Epk0lB .mbr-text,
.cid-ud36Epk0lB .mbr-section-btn {
  text-align: left;
}
.cid-ud36Epk0lB .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud36Epk0lB .item-subtitle {
  text-align: center;
}
.cid-ud36GfhG3T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud36GfhG3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud36GfhG3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud36GfhG3T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud3AIgwQ7W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3AIgwQ7W img,
.cid-ud3AIgwQ7W .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud3AIgwQ7W .item:focus,
.cid-ud3AIgwQ7W span:focus {
  outline: none;
}
.cid-ud3AIgwQ7W .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud3AIgwQ7W .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud3AIgwQ7W .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud3AIgwQ7W .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud3AIgwQ7W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud3AIgwQ7W .mbr-section-title {
  color: #232323;
}
.cid-ud3AIgwQ7W .mbr-text,
.cid-ud3AIgwQ7W .mbr-section-btn {
  text-align: left;
}
.cid-ud3AIgwQ7W .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud3AIgwQ7W .item-subtitle {
  text-align: center;
}
.cid-ud3AJXqkTT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3AJXqkTT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3AJXqkTT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3AJXqkTT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud3ALLZwfm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3ALLZwfm img,
.cid-ud3ALLZwfm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud3ALLZwfm .item:focus,
.cid-ud3ALLZwfm span:focus {
  outline: none;
}
.cid-ud3ALLZwfm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud3ALLZwfm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud3ALLZwfm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud3ALLZwfm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud3ALLZwfm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud3ALLZwfm .mbr-section-title {
  color: #232323;
}
.cid-ud3ALLZwfm .mbr-text,
.cid-ud3ALLZwfm .mbr-section-btn {
  text-align: left;
}
.cid-ud3ALLZwfm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud3ALLZwfm .item-subtitle {
  text-align: center;
}
.cid-ud3AN9SYRB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3AN9SYRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3AN9SYRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3AN9SYRB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud3GXnj80E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3GXnj80E img,
.cid-ud3GXnj80E .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud3GXnj80E .item:focus,
.cid-ud3GXnj80E span:focus {
  outline: none;
}
.cid-ud3GXnj80E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud3GXnj80E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud3GXnj80E .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud3GXnj80E .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud3GXnj80E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud3GXnj80E .mbr-section-title {
  color: #232323;
}
.cid-ud3GXnj80E .mbr-text,
.cid-ud3GXnj80E .mbr-section-btn {
  text-align: left;
}
.cid-ud3GXnj80E .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud3GXnj80E .item-subtitle {
  text-align: center;
}
.cid-ud3GZeJ0UZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3GZeJ0UZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3GZeJ0UZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3GZeJ0UZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud3K4bxNXA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3K4bxNXA img,
.cid-ud3K4bxNXA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ud3K4bxNXA .item:focus,
.cid-ud3K4bxNXA span:focus {
  outline: none;
}
.cid-ud3K4bxNXA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ud3K4bxNXA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ud3K4bxNXA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ud3K4bxNXA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ud3K4bxNXA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ud3K4bxNXA .mbr-section-title {
  color: #232323;
}
.cid-ud3K4bxNXA .mbr-text,
.cid-ud3K4bxNXA .mbr-section-btn {
  text-align: left;
}
.cid-ud3K4bxNXA .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ud3K4bxNXA .item-subtitle {
  text-align: center;
}
.cid-ud3K5HFFEg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud3K5HFFEg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud3K5HFFEg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud3K5HFFEg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud35lSoFah {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud35lSoFah .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lSoFah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lSoFah .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3FD5C2V6o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FD5C2V6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FD5C2V6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FD5C2V6o .mbr-section-title {
  color: #ffffff;
}
.cid-v3FD5C2V6o .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud35lTiyQI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/motherboard-1.webp");
}
.cid-ud35lTiyQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lTiyQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lTiyQI .mbr-section-title {
  color: #ffffff;
}
.cid-ud35lUcWWI {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud35lUcWWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lUcWWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lUcWWI .mbr-section-title {
  color: #ffffff;
}
.cid-ud35lVawoa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-ud35lVawoa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lVawoa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lVawoa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud35lVawoa .mbr-section-title {
  color: #ffffff;
}
.cid-uYN4YesQnn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN4YesQnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN4YesQnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN4YesQnn .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN4YesQnn .number {
  color: #ffffff;
}
.cid-uYN4YesQnn .period {
  display: block;
}
.cid-uYN4YesQnn .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN4YesQnn .period {
    font-size: 0.8rem;
  }
}
.cid-uYN4YesQnn .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN4YesQnn .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN4YesQnn .mbr-section-title {
  color: #ffffff;
}
.cid-uYN4YesQnn .mbr-text {
  color: #ffffff;
}
.cid-uYN4YesQnn .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN4YesQnn .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN4YesQnn .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN4YesQnn .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-ud35lXdIsJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-ud35lXdIsJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lXdIsJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lXdIsJ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-ud35lXdIsJ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-ud35lXdIsJ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-ud35lXdIsJ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-ud35lXdIsJ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-ud35lXdIsJ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-ud35lXdIsJ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-ud35lXdIsJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-ud35lXdIsJ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-ud35lXdIsJ [class^="socicon-"]:before,
.cid-ud35lXdIsJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-ud35lXdIsJ .mbr-section-title,
.cid-ud35lXdIsJ .mbr-social-likes {
  color: #ffffff;
}
.cid-ud35lYajhy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-ud35lYajhy .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lYajhy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lYajhy .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-ud35lYajhy .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-ud35lYajhy .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ud35lYajhy .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ud35lYajhy .mbr-text {
  color: #ffffff;
}
.cid-ud35lYajhy .card-title {
  color: #ffffff;
}
.cid-ud35lYajhy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ud35lYajhy .mbr-section-title {
  color: #ffffff;
}
.cid-ud35lYajhy .link {
  color: #4479d9;
}
.cid-ud35lZgmSY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-ud35lZgmSY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ud35lZgmSY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ud35lZgmSY .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ud35lZgmSY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ud35lZgmSY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-ud35lZgmSY .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-ud35lZgmSY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-ud35lZgmSY .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uf1JFNUN9N {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uf1JFNUN9N nav.navbar {
  position: fixed;
}
.cid-uf1JFNUN9N .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-uf1JFNUN9N .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uf1JFNUN9N .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uf1JFNUN9N .dropdown-item:hover,
.cid-uf1JFNUN9N .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uf1JFNUN9N .dropdown-item:hover span {
  color: white;
}
.cid-uf1JFNUN9N .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uf1JFNUN9N .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uf1JFNUN9N .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uf1JFNUN9N .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uf1JFNUN9N .nav-link {
  position: relative;
}
.cid-uf1JFNUN9N .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uf1JFNUN9N .container {
    flex-wrap: wrap;
  }
}
.cid-uf1JFNUN9N .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uf1JFNUN9N .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uf1JFNUN9N .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uf1JFNUN9N .dropdown-menu,
.cid-uf1JFNUN9N .navbar.opened {
  background: #000000 !important;
}
.cid-uf1JFNUN9N .nav-item:focus,
.cid-uf1JFNUN9N .nav-link:focus {
  outline: none;
}
.cid-uf1JFNUN9N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uf1JFNUN9N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uf1JFNUN9N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uf1JFNUN9N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uf1JFNUN9N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uf1JFNUN9N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uf1JFNUN9N .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uf1JFNUN9N .navbar.opened {
  transition: all 0.3s;
}
.cid-uf1JFNUN9N .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uf1JFNUN9N .navbar .navbar-logo img {
  width: auto;
}
.cid-uf1JFNUN9N .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uf1JFNUN9N .navbar.collapsed {
  justify-content: center;
}
.cid-uf1JFNUN9N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uf1JFNUN9N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uf1JFNUN9N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uf1JFNUN9N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uf1JFNUN9N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uf1JFNUN9N .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-uf1JFNUN9N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uf1JFNUN9N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uf1JFNUN9N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uf1JFNUN9N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uf1JFNUN9N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uf1JFNUN9N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uf1JFNUN9N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uf1JFNUN9N .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-uf1JFNUN9N .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uf1JFNUN9N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uf1JFNUN9N .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uf1JFNUN9N .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uf1JFNUN9N .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uf1JFNUN9N .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uf1JFNUN9N .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uf1JFNUN9N .navbar.navbar-short {
  min-height: 60px;
}
.cid-uf1JFNUN9N .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uf1JFNUN9N .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uf1JFNUN9N .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uf1JFNUN9N .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uf1JFNUN9N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uf1JFNUN9N .dropdown-item.active,
.cid-uf1JFNUN9N .dropdown-item:active {
  background-color: transparent;
}
.cid-uf1JFNUN9N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uf1JFNUN9N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uf1JFNUN9N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uf1JFNUN9N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uf1JFNUN9N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uf1JFNUN9N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uf1JFNUN9N ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uf1JFNUN9N .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uf1JFNUN9N button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uf1JFNUN9N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uf1JFNUN9N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uf1JFNUN9N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf1JFNUN9N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uf1JFNUN9N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uf1JFNUN9N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uf1JFNUN9N nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uf1JFNUN9N nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uf1JFNUN9N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uf1JFNUN9N .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uf1JFNUN9N a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uf1JFNUN9N .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uf1JFNUN9N .navbar {
    height: 70px;
  }
  .cid-uf1JFNUN9N .navbar.opened {
    height: auto;
  }
  .cid-uf1JFNUN9N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uf1JFOJBNW {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-uf1JFOJBNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFOJBNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFOJBNW .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uf1JFOJBNW .mbr-text,
.cid-uf1JFOJBNW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uf1JFOJBNW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHxACtnn6p {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uHxACtnn6p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHxACtnn6p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHxACtnn6p .mbr-section-title {
  color: #ffffff;
}
.cid-uHxACtnn6p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1dTgIEqZO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTgIEqZO img,
.cid-v1dTgIEqZO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTgIEqZO .item:focus,
.cid-v1dTgIEqZO span:focus {
  outline: none;
}
.cid-v1dTgIEqZO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTgIEqZO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTgIEqZO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTgIEqZO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTgIEqZO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTgIEqZO .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTgIEqZO .mbr-text,
.cid-v1dTgIEqZO .mbr-section-btn {
  text-align: left;
}
.cid-v1dTgIEqZO .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTgIEqZO .item-subtitle {
  text-align: center;
}
.cid-v1dTgIEqZO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf1JFQI3qZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uf1JFQI3qZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFQI3qZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFQI3qZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf1JFQI3qZ .mbr-section-title {
  color: #ffffff;
}
.cid-v1dThyIp4g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dThyIp4g img,
.cid-v1dThyIp4g .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dThyIp4g .item:focus,
.cid-v1dThyIp4g span:focus {
  outline: none;
}
.cid-v1dThyIp4g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dThyIp4g .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dThyIp4g .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dThyIp4g .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dThyIp4g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dThyIp4g .mbr-section-title {
  color: #232323;
}
.cid-v1dThyIp4g .mbr-text,
.cid-v1dThyIp4g .mbr-section-btn {
  text-align: left;
}
.cid-v1dThyIp4g .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dThyIp4g .item-subtitle {
  text-align: center;
}
.cid-uf1JFSkLYh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uf1JFSkLYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFSkLYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFSkLYh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf1JFSkLYh .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTikm4Zz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTikm4Zz img,
.cid-v1dTikm4Zz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTikm4Zz .item:focus,
.cid-v1dTikm4Zz span:focus {
  outline: none;
}
.cid-v1dTikm4Zz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTikm4Zz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTikm4Zz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTikm4Zz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTikm4Zz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTikm4Zz .mbr-section-title {
  color: #232323;
}
.cid-v1dTikm4Zz .mbr-text,
.cid-v1dTikm4Zz .mbr-section-btn {
  text-align: left;
}
.cid-v1dTikm4Zz .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTikm4Zz .item-subtitle {
  text-align: center;
}
.cid-uf1JFTPlUn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uf1JFTPlUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFTPlUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFTPlUn .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTj5wjFk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTj5wjFk img,
.cid-v1dTj5wjFk .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTj5wjFk .item:focus,
.cid-v1dTj5wjFk span:focus {
  outline: none;
}
.cid-v1dTj5wjFk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTj5wjFk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTj5wjFk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTj5wjFk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTj5wjFk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTj5wjFk .mbr-section-title {
  color: #232323;
}
.cid-v1dTj5wjFk .mbr-text,
.cid-v1dTj5wjFk .mbr-section-btn {
  text-align: left;
}
.cid-v1dTj5wjFk .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTj5wjFk .item-subtitle {
  text-align: center;
}
.cid-uf1JFVqPUp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uf1JFVqPUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFVqPUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFVqPUp .mbr-section-title {
  color: #ffffff;
}
.cid-v1dTjHBoCH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dTjHBoCH img,
.cid-v1dTjHBoCH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dTjHBoCH .item:focus,
.cid-v1dTjHBoCH span:focus {
  outline: none;
}
.cid-v1dTjHBoCH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dTjHBoCH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dTjHBoCH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dTjHBoCH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dTjHBoCH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dTjHBoCH .mbr-section-title {
  color: #232323;
}
.cid-v1dTjHBoCH .mbr-text,
.cid-v1dTjHBoCH .mbr-section-btn {
  text-align: left;
}
.cid-v1dTjHBoCH .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dTjHBoCH .item-subtitle {
  text-align: center;
}
.cid-uf1JFW8vyN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uf1JFW8vyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFW8vyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFW8vyN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf1JFW8vyN .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3dfOc4N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN3dfOc4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN3dfOc4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN3dfOc4N .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN3dfOc4N .number {
  color: #ffffff;
}
.cid-uYN3dfOc4N .period {
  display: block;
}
.cid-uYN3dfOc4N .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN3dfOc4N .period {
    font-size: 0.8rem;
  }
}
.cid-uYN3dfOc4N .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN3dfOc4N .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN3dfOc4N .mbr-section-title {
  color: #ffffff;
}
.cid-uYN3dfOc4N .mbr-text {
  color: #ffffff;
}
.cid-uYN3dfOc4N .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN3dfOc4N .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN3dfOc4N .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN3dfOc4N .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uf1JFXIJbL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uf1JFXIJbL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFXIJbL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFXIJbL .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uf1JFXIJbL .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uf1JFXIJbL .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uf1JFXIJbL .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uf1JFXIJbL .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uf1JFXIJbL .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uf1JFXIJbL .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uf1JFXIJbL .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uf1JFXIJbL .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uf1JFXIJbL [class^="socicon-"]:before,
.cid-uf1JFXIJbL [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uf1JFXIJbL .mbr-section-title,
.cid-uf1JFXIJbL .mbr-social-likes {
  color: #ffffff;
}
.cid-uf1JFYux2T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uf1JFYux2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFYux2T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFYux2T .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uf1JFYux2T .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uf1JFYux2T .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uf1JFYux2T .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uf1JFYux2T .mbr-text {
  color: #ffffff;
}
.cid-uf1JFYux2T .card-title {
  color: #ffffff;
}
.cid-uf1JFYux2T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uf1JFYux2T .mbr-section-title {
  color: #ffffff;
}
.cid-uf1JFYux2T .link {
  color: #4479d9;
}
.cid-uf1JFZpdBo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uf1JFZpdBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf1JFZpdBo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf1JFZpdBo .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uf1JFZpdBo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uf1JFZpdBo .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uf1JFZpdBo .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uf1JFZpdBo div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uf1JFZpdBo .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uglJLKBVfS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uglJLKBVfS nav.navbar {
  position: fixed;
}
.cid-uglJLKBVfS .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-uglJLKBVfS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uglJLKBVfS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uglJLKBVfS .dropdown-item:hover,
.cid-uglJLKBVfS .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uglJLKBVfS .dropdown-item:hover span {
  color: white;
}
.cid-uglJLKBVfS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uglJLKBVfS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uglJLKBVfS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uglJLKBVfS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uglJLKBVfS .nav-link {
  position: relative;
}
.cid-uglJLKBVfS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uglJLKBVfS .container {
    flex-wrap: wrap;
  }
}
.cid-uglJLKBVfS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uglJLKBVfS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uglJLKBVfS .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uglJLKBVfS .dropdown-menu,
.cid-uglJLKBVfS .navbar.opened {
  background: #000000 !important;
}
.cid-uglJLKBVfS .nav-item:focus,
.cid-uglJLKBVfS .nav-link:focus {
  outline: none;
}
.cid-uglJLKBVfS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uglJLKBVfS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uglJLKBVfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uglJLKBVfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uglJLKBVfS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uglJLKBVfS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uglJLKBVfS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uglJLKBVfS .navbar.opened {
  transition: all 0.3s;
}
.cid-uglJLKBVfS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uglJLKBVfS .navbar .navbar-logo img {
  width: auto;
}
.cid-uglJLKBVfS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uglJLKBVfS .navbar.collapsed {
  justify-content: center;
}
.cid-uglJLKBVfS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uglJLKBVfS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uglJLKBVfS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uglJLKBVfS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uglJLKBVfS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uglJLKBVfS .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-uglJLKBVfS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uglJLKBVfS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uglJLKBVfS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uglJLKBVfS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uglJLKBVfS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uglJLKBVfS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uglJLKBVfS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uglJLKBVfS .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-uglJLKBVfS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uglJLKBVfS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uglJLKBVfS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uglJLKBVfS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uglJLKBVfS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uglJLKBVfS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uglJLKBVfS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uglJLKBVfS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uglJLKBVfS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uglJLKBVfS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uglJLKBVfS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uglJLKBVfS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uglJLKBVfS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uglJLKBVfS .dropdown-item.active,
.cid-uglJLKBVfS .dropdown-item:active {
  background-color: transparent;
}
.cid-uglJLKBVfS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uglJLKBVfS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uglJLKBVfS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uglJLKBVfS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uglJLKBVfS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uglJLKBVfS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uglJLKBVfS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uglJLKBVfS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uglJLKBVfS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uglJLKBVfS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uglJLKBVfS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uglJLKBVfS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglJLKBVfS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uglJLKBVfS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uglJLKBVfS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglJLKBVfS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uglJLKBVfS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uglJLKBVfS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uglJLKBVfS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uglJLKBVfS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uglJLKBVfS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uglJLKBVfS .navbar {
    height: 70px;
  }
  .cid-uglJLKBVfS .navbar.opened {
    height: auto;
  }
  .cid-uglJLKBVfS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uglJLLr8iv {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-uglJLLr8iv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLLr8iv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLLr8iv .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uglJLLr8iv .mbr-text,
.cid-uglJLLr8iv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uglJLLr8iv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v1dRpcSt65 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #000000;
}
.cid-v1dRpcSt65 input {
  padding: 1.5rem 2rem;
  border: 0px !important;
  height: 100%;
  box-shadow: none !important;
  font-size: 1rem;
  border-radius: 2rem !important;
}
.cid-v1dRpcSt65 input:hover {
  border: none !important;
  box-shadow: none;
}
.cid-v1dRpcSt65 .btn,
.cid-v1dRpcSt65 .wrapper {
  border-radius: 2rem !important;
}
.cid-v1dRpcSt65 .btn {
  height: 100%;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .btn {
    width: 100%;
  }
}
.cid-v1dRpcSt65 .btn:hover,
.cid-v1dRpcSt65 .btn:focus {
  transform: none !important;
}
.cid-v1dRpcSt65 .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .social-row {
    justify-content: center;
  }
}
.cid-v1dRpcSt65 .soc-item {
  margin: 8px;
}
.cid-v1dRpcSt65 .soc-item a:hover .mbr-iconfont,
.cid-v1dRpcSt65 .soc-item a:focus .mbr-iconfont {
  background-color: #ffffff;
  transform: scale(1.1);
}
.cid-v1dRpcSt65 .soc-item a .mbr-iconfont {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 26px;
  background-color: #c4d6b0;
  color: #291f1e;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .soc-item a .mbr-iconfont {
    width: 54px;
    height: 54px;
  }
}
.cid-v1dRpcSt65 .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: fit-content;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .mbr-section-btn {
    width: 100%;
  }
}
.cid-v1dRpcSt65 .mbr-section-btn .btn {
  width: auto;
}
@media (min-width: 992px) {
  .cid-v1dRpcSt65 .text-wrapper {
    padding: 0 1rem;
  }
}
.cid-v1dRpcSt65 .form-group {
  margin: 0;
}
.cid-v1dRpcSt65 .wrapper {
  background: white;
  border-radius: 2rem !important;
  width: 80%;
  padding: 0;
  overflow: hidden;
  justify-content: space-between;
  display: flex;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .wrapper {
    border-radius: 1rem !important;
    width: 100%;
    margin: 0;
  }
  .cid-v1dRpcSt65 .wrapper .btn {
    border-radius: 1rem !important;
  }
}
@media (max-width: 991px) {
  .cid-v1dRpcSt65 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v1dRpcSt65 .justify-content-center {
  align-items: center;
}
.cid-v1dRpcSt65 .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-v1dRpcSt65 .mbr-section-title,
.cid-v1dRpcSt65 .mbr-section-title2 {
  color: #fffcee;
}
@media (max-width: 767px) {
  .cid-v1dRpcSt65 .mbr-section-title,
  .cid-v1dRpcSt65 .mbr-section-title2 {
    text-align: center;
  }
}
.cid-uZtwoOUpKU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZtwoOUpKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZtwoOUpKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZtwoOUpKU .mbr-section-title {
  color: #ffffff;
}
.cid-uZtwoOUpKU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1dQgzjSSA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dQgzjSSA img,
.cid-v1dQgzjSSA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dQgzjSSA .item:focus,
.cid-v1dQgzjSSA span:focus {
  outline: none;
}
.cid-v1dQgzjSSA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dQgzjSSA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dQgzjSSA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dQgzjSSA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dQgzjSSA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dQgzjSSA .mbr-section-title {
  color: #ffffff;
}
.cid-v1dQgzjSSA .mbr-text,
.cid-v1dQgzjSSA .mbr-section-btn {
  text-align: left;
}
.cid-v1dQgzjSSA .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dQgzjSSA .item-subtitle {
  text-align: center;
}
.cid-v1dQgzjSSA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uglJLO7yB5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uglJLO7yB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLO7yB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLO7yB5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uglJLO7yB5 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dQhxz4JB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dQhxz4JB img,
.cid-v1dQhxz4JB .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dQhxz4JB .item:focus,
.cid-v1dQhxz4JB span:focus {
  outline: none;
}
.cid-v1dQhxz4JB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dQhxz4JB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dQhxz4JB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dQhxz4JB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dQhxz4JB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dQhxz4JB .mbr-section-title {
  color: #232323;
}
.cid-v1dQhxz4JB .mbr-text,
.cid-v1dQhxz4JB .mbr-section-btn {
  text-align: left;
}
.cid-v1dQhxz4JB .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dQhxz4JB .item-subtitle {
  text-align: center;
}
.cid-uglJLPz14K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uglJLPz14K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLPz14K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLPz14K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uglJLPz14K .mbr-section-title {
  color: #ffffff;
}
.cid-v1dQilWAN9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dQilWAN9 img,
.cid-v1dQilWAN9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dQilWAN9 .item:focus,
.cid-v1dQilWAN9 span:focus {
  outline: none;
}
.cid-v1dQilWAN9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dQilWAN9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dQilWAN9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dQilWAN9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dQilWAN9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dQilWAN9 .mbr-section-title {
  color: #232323;
}
.cid-v1dQilWAN9 .mbr-text,
.cid-v1dQilWAN9 .mbr-section-btn {
  text-align: left;
}
.cid-v1dQilWAN9 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dQilWAN9 .item-subtitle {
  text-align: center;
}
.cid-uglJLR9iUv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uglJLR9iUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLR9iUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLR9iUv .mbr-section-title {
  color: #ffffff;
}
.cid-v1dQjdupJo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dQjdupJo img,
.cid-v1dQjdupJo .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dQjdupJo .item:focus,
.cid-v1dQjdupJo span:focus {
  outline: none;
}
.cid-v1dQjdupJo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dQjdupJo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dQjdupJo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dQjdupJo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dQjdupJo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dQjdupJo .mbr-section-title {
  color: #232323;
}
.cid-v1dQjdupJo .mbr-text,
.cid-v1dQjdupJo .mbr-section-btn {
  text-align: left;
}
.cid-v1dQjdupJo .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dQjdupJo .item-subtitle {
  text-align: center;
}
.cid-uglJLSK52B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uglJLSK52B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLSK52B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLSK52B .mbr-section-title {
  color: #ffffff;
}
.cid-v1dQjUX2Nn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dQjUX2Nn img,
.cid-v1dQjUX2Nn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dQjUX2Nn .item:focus,
.cid-v1dQjUX2Nn span:focus {
  outline: none;
}
.cid-v1dQjUX2Nn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dQjUX2Nn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dQjUX2Nn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dQjUX2Nn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dQjUX2Nn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dQjUX2Nn .mbr-section-title {
  color: #232323;
}
.cid-v1dQjUX2Nn .mbr-text,
.cid-v1dQjUX2Nn .mbr-section-btn {
  text-align: left;
}
.cid-v1dQjUX2Nn .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dQjUX2Nn .item-subtitle {
  text-align: center;
}
.cid-uglJLTtCpS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uglJLTtCpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLTtCpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLTtCpS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uglJLTtCpS .mbr-section-title {
  color: #ffffff;
}
.cid-uYN2YgghA7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN2YgghA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN2YgghA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN2YgghA7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN2YgghA7 .number {
  color: #ffffff;
}
.cid-uYN2YgghA7 .period {
  display: block;
}
.cid-uYN2YgghA7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN2YgghA7 .period {
    font-size: 0.8rem;
  }
}
.cid-uYN2YgghA7 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN2YgghA7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN2YgghA7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN2YgghA7 .mbr-text {
  color: #ffffff;
}
.cid-uYN2YgghA7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN2YgghA7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN2YgghA7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN2YgghA7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uglJLVe06r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uglJLVe06r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLVe06r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLVe06r .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uglJLVe06r .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uglJLVe06r .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uglJLVe06r .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uglJLVe06r .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uglJLVe06r .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uglJLVe06r .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uglJLVe06r .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uglJLVe06r .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uglJLVe06r [class^="socicon-"]:before,
.cid-uglJLVe06r [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uglJLVe06r .mbr-section-title,
.cid-uglJLVe06r .mbr-social-likes {
  color: #ffffff;
}
.cid-uglJLW1IZg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uglJLW1IZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLW1IZg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLW1IZg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uglJLW1IZg .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uglJLW1IZg .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uglJLW1IZg .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uglJLW1IZg .mbr-text {
  color: #ffffff;
}
.cid-uglJLW1IZg .card-title {
  color: #ffffff;
}
.cid-uglJLW1IZg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uglJLW1IZg .mbr-section-title {
  color: #ffffff;
}
.cid-uglJLW1IZg .link {
  color: #4479d9;
}
.cid-uglJLWWNXd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uglJLWWNXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglJLWWNXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglJLWWNXd .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uglJLWWNXd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uglJLWWNXd .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uglJLWWNXd .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uglJLWWNXd div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uglJLWWNXd .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uj51MOHfz3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uj51MOHfz3 nav.navbar {
  position: fixed;
}
.cid-uj51MOHfz3 .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-uj51MOHfz3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uj51MOHfz3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uj51MOHfz3 .dropdown-item:hover,
.cid-uj51MOHfz3 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uj51MOHfz3 .dropdown-item:hover span {
  color: white;
}
.cid-uj51MOHfz3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uj51MOHfz3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uj51MOHfz3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uj51MOHfz3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uj51MOHfz3 .nav-link {
  position: relative;
}
.cid-uj51MOHfz3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uj51MOHfz3 .container {
    flex-wrap: wrap;
  }
}
.cid-uj51MOHfz3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uj51MOHfz3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uj51MOHfz3 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uj51MOHfz3 .dropdown-menu,
.cid-uj51MOHfz3 .navbar.opened {
  background: #000000 !important;
}
.cid-uj51MOHfz3 .nav-item:focus,
.cid-uj51MOHfz3 .nav-link:focus {
  outline: none;
}
.cid-uj51MOHfz3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uj51MOHfz3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uj51MOHfz3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uj51MOHfz3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uj51MOHfz3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uj51MOHfz3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uj51MOHfz3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uj51MOHfz3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uj51MOHfz3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uj51MOHfz3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uj51MOHfz3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uj51MOHfz3 .navbar.collapsed {
  justify-content: center;
}
.cid-uj51MOHfz3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uj51MOHfz3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uj51MOHfz3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uj51MOHfz3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uj51MOHfz3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uj51MOHfz3 .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-uj51MOHfz3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uj51MOHfz3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uj51MOHfz3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uj51MOHfz3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uj51MOHfz3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uj51MOHfz3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uj51MOHfz3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uj51MOHfz3 .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-uj51MOHfz3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uj51MOHfz3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uj51MOHfz3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uj51MOHfz3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uj51MOHfz3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uj51MOHfz3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uj51MOHfz3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uj51MOHfz3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uj51MOHfz3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uj51MOHfz3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uj51MOHfz3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uj51MOHfz3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uj51MOHfz3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uj51MOHfz3 .dropdown-item.active,
.cid-uj51MOHfz3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uj51MOHfz3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uj51MOHfz3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uj51MOHfz3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uj51MOHfz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uj51MOHfz3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uj51MOHfz3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uj51MOHfz3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uj51MOHfz3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uj51MOHfz3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uj51MOHfz3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uj51MOHfz3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uj51MOHfz3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj51MOHfz3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj51MOHfz3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uj51MOHfz3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj51MOHfz3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uj51MOHfz3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uj51MOHfz3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj51MOHfz3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uj51MOHfz3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uj51MOHfz3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uj51MOHfz3 .navbar {
    height: 70px;
  }
  .cid-uj51MOHfz3 .navbar.opened {
    height: auto;
  }
  .cid-uj51MOHfz3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uj51MPTCoQ {
  background-image: url("../../../assets/images/polish-20240830-84321343-2000x2000.webp");
}
.cid-uj51MPTCoQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj51MPTCoQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj51MPTCoQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uj51MPTCoQ .mbr-text,
.cid-uj51MPTCoQ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uj51MPTCoQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uj5eL3vrsi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj5eL3vrsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj5eL3vrsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj5eL3vrsi .mbr-section-title {
  color: #ffffff;
}
.cid-uj5eL3vrsi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj5eMGDVos {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj5eMGDVos .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj5eMGDVos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj5eMGDVos .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umWssL61Mq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umWssL61Mq img,
.cid-umWssL61Mq .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umWssL61Mq .item:focus,
.cid-umWssL61Mq span:focus {
  outline: none;
}
.cid-umWssL61Mq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umWssL61Mq .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-umWssL61Mq .item {
  padding: 0;
  margin: 0;
}
.cid-umWssL61Mq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umWssL61Mq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umWssL61Mq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umWssL61Mq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umWssL61Mq .mbr-section-title {
  color: #232323;
}
.cid-umWssL61Mq .mbr-text,
.cid-umWssL61Mq .mbr-section-btn {
  text-align: left;
}
.cid-umWssL61Mq .item-title {
  text-align: left;
}
.cid-umWssL61Mq .item-subtitle {
  text-align: center;
}
.cid-uj5eNudIYQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj5eNudIYQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj5eNudIYQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj5eNudIYQ .mbr-section-title {
  color: #ffffff;
}
.cid-uj5eNudIYQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umWsvq3YjR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umWsvq3YjR img,
.cid-umWsvq3YjR .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umWsvq3YjR .item:focus,
.cid-umWsvq3YjR span:focus {
  outline: none;
}
.cid-umWsvq3YjR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umWsvq3YjR .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-umWsvq3YjR .item {
  padding: 0;
  margin: 0;
}
.cid-umWsvq3YjR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umWsvq3YjR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umWsvq3YjR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umWsvq3YjR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umWsvq3YjR .mbr-section-title {
  color: #232323;
}
.cid-umWsvq3YjR .mbr-text,
.cid-umWsvq3YjR .mbr-section-btn {
  text-align: left;
}
.cid-umWsvq3YjR .item-title {
  text-align: left;
}
.cid-umWsvq3YjR .item-subtitle {
  text-align: center;
}
.cid-uj5eObSahW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj5eObSahW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj5eObSahW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj5eObSahW .mbr-section-title {
  color: #ffffff;
}
.cid-uj5eObSahW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umWsxSZKNT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-umWsxSZKNT img,
.cid-umWsxSZKNT .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umWsxSZKNT .item:focus,
.cid-umWsxSZKNT span:focus {
  outline: none;
}
.cid-umWsxSZKNT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-umWsxSZKNT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-umWsxSZKNT .item {
  padding: 0;
  margin: 0;
}
.cid-umWsxSZKNT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-umWsxSZKNT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-umWsxSZKNT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-umWsxSZKNT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-umWsxSZKNT .mbr-section-title {
  color: #232323;
}
.cid-umWsxSZKNT .mbr-text,
.cid-umWsxSZKNT .mbr-section-btn {
  text-align: left;
}
.cid-umWsxSZKNT .item-title {
  text-align: left;
}
.cid-umWsxSZKNT .item-subtitle {
  text-align: center;
}
.cid-uj5eOTZLaJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj5eOTZLaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj5eOTZLaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj5eOTZLaJ .mbr-section-title {
  color: #ffffff;
}
.cid-uj5eOTZLaJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj51MQZMPr {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MQZMPr img,
.cid-uj51MQZMPr .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MQZMPr .item:focus,
.cid-uj51MQZMPr span:focus {
  outline: none;
}
.cid-uj51MQZMPr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MQZMPr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MQZMPr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MQZMPr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MQZMPr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MQZMPr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MQZMPr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MQZMPr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uj51MQZMPr .mbr-text,
.cid-uj51MQZMPr .mbr-section-btn {
  text-align: left;
}
.cid-uj51MQZMPr .item-title {
  text-align: left;
}
.cid-uj51MQZMPr .item-subtitle {
  text-align: left;
}
.cid-uj51MQZMPr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj51MRImdg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MRImdg img,
.cid-uj51MRImdg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MRImdg .item:focus,
.cid-uj51MRImdg span:focus {
  outline: none;
}
.cid-uj51MRImdg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MRImdg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MRImdg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MRImdg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MRImdg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MRImdg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MRImdg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MRImdg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uj51MRImdg .mbr-text,
.cid-uj51MRImdg .mbr-section-btn {
  text-align: left;
}
.cid-uj51MRImdg .item-title {
  text-align: left;
}
.cid-uj51MRImdg .item-subtitle {
  text-align: left;
}
.cid-uj51MRImdg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj51MSqidM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MSqidM img,
.cid-uj51MSqidM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MSqidM .item:focus,
.cid-uj51MSqidM span:focus {
  outline: none;
}
.cid-uj51MSqidM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MSqidM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MSqidM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MSqidM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MSqidM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MSqidM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MSqidM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MSqidM .mbr-section-title {
  color: #232323;
}
.cid-uj51MSqidM .mbr-text,
.cid-uj51MSqidM .mbr-section-btn {
  text-align: left;
}
.cid-uj51MSqidM .item-title {
  text-align: left;
}
.cid-uj51MSqidM .item-subtitle {
  text-align: left;
}
.cid-uj51MT9x6r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MT9x6r img,
.cid-uj51MT9x6r .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MT9x6r .item:focus,
.cid-uj51MT9x6r span:focus {
  outline: none;
}
.cid-uj51MT9x6r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MT9x6r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MT9x6r .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MT9x6r .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MT9x6r .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MT9x6r .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MT9x6r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MT9x6r .mbr-section-title {
  color: #ffffff;
}
.cid-uj51MT9x6r .mbr-text,
.cid-uj51MT9x6r .mbr-section-btn {
  text-align: left;
}
.cid-uj51MT9x6r .item-title {
  text-align: left;
}
.cid-uj51MT9x6r .item-subtitle {
  text-align: left;
}
.cid-uj51MT9x6r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj51MTUgzg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MTUgzg img,
.cid-uj51MTUgzg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MTUgzg .item:focus,
.cid-uj51MTUgzg span:focus {
  outline: none;
}
.cid-uj51MTUgzg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MTUgzg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MTUgzg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MTUgzg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MTUgzg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MTUgzg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MTUgzg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MTUgzg .mbr-section-title {
  color: #232323;
}
.cid-uj51MTUgzg .mbr-text,
.cid-uj51MTUgzg .mbr-section-btn {
  text-align: left;
}
.cid-uj51MTUgzg .item-title {
  text-align: left;
}
.cid-uj51MTUgzg .item-subtitle {
  text-align: left;
}
.cid-uj51MUJLOt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MUJLOt img,
.cid-uj51MUJLOt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MUJLOt .item:focus,
.cid-uj51MUJLOt span:focus {
  outline: none;
}
.cid-uj51MUJLOt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MUJLOt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MUJLOt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MUJLOt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MUJLOt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MUJLOt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MUJLOt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MUJLOt .mbr-section-title {
  color: #232323;
}
.cid-uj51MUJLOt .mbr-text,
.cid-uj51MUJLOt .mbr-section-btn {
  text-align: left;
}
.cid-uj51MUJLOt .item-title {
  text-align: left;
}
.cid-uj51MUJLOt .item-subtitle {
  text-align: left;
}
.cid-uj51MVy3zA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MVy3zA img,
.cid-uj51MVy3zA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MVy3zA .item:focus,
.cid-uj51MVy3zA span:focus {
  outline: none;
}
.cid-uj51MVy3zA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MVy3zA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MVy3zA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MVy3zA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MVy3zA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MVy3zA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MVy3zA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MVy3zA .mbr-section-title {
  color: #232323;
}
.cid-uj51MVy3zA .mbr-text,
.cid-uj51MVy3zA .mbr-section-btn {
  text-align: left;
}
.cid-uj51MVy3zA .item-title {
  text-align: left;
}
.cid-uj51MVy3zA .item-subtitle {
  text-align: left;
}
.cid-uj51MWogTm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uj51MWogTm img,
.cid-uj51MWogTm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uj51MWogTm .item:focus,
.cid-uj51MWogTm span:focus {
  outline: none;
}
.cid-uj51MWogTm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uj51MWogTm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uj51MWogTm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uj51MWogTm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uj51MWogTm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uj51MWogTm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uj51MWogTm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uj51MWogTm .mbr-section-title {
  color: #232323;
}
.cid-uj51MWogTm .mbr-text,
.cid-uj51MWogTm .mbr-section-btn {
  text-align: left;
}
.cid-uj51MWogTm .item-title {
  text-align: left;
}
.cid-uj51MWogTm .item-subtitle {
  text-align: left;
}
.cid-v1dWgqZOmn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1dWgqZOmn img,
.cid-v1dWgqZOmn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dWgqZOmn .item:focus,
.cid-v1dWgqZOmn span:focus {
  outline: none;
}
.cid-v1dWgqZOmn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dWgqZOmn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dWgqZOmn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v1dWgqZOmn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dWgqZOmn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v1dWgqZOmn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v1dWgqZOmn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dWgqZOmn .mbr-section-title {
  color: #232323;
}
.cid-v1dWgqZOmn .mbr-text,
.cid-v1dWgqZOmn .mbr-section-btn {
  text-align: left;
}
.cid-v1dWgqZOmn .item-title {
  text-align: left;
}
.cid-v1dWgqZOmn .item-subtitle {
  text-align: left;
}
.cid-uYNx7bRXfr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNx7bRXfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNx7bRXfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNx7bRXfr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNx7bRXfr .mbr-section-title {
  color: #ffffff;
}
.cid-uYNx5DdlbG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNx5DdlbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNx5DdlbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNx5DdlbG .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNx5DdlbG .number {
  color: #ffffff;
}
.cid-uYNx5DdlbG .period {
  display: block;
}
.cid-uYNx5DdlbG .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNx5DdlbG .period {
    font-size: 0.8rem;
  }
}
.cid-uYNx5DdlbG .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNx5DdlbG .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNx5DdlbG .mbr-section-title {
  color: #ffffff;
}
.cid-uYNx5DdlbG .mbr-text {
  color: #ffffff;
}
.cid-uYNx5DdlbG .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNx5DdlbG .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNx5DdlbG .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNx5DdlbG .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uj51MY9jsy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uj51MY9jsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj51MY9jsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj51MY9jsy .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uj51MY9jsy .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uj51MY9jsy .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uj51MY9jsy .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uj51MY9jsy .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uj51MY9jsy .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uj51MY9jsy .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uj51MY9jsy .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uj51MY9jsy .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uj51MY9jsy [class^="socicon-"]:before,
.cid-uj51MY9jsy [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uj51MY9jsy .mbr-section-title,
.cid-uj51MY9jsy .mbr-social-likes {
  color: #ffffff;
}
.cid-uj51MYWead {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uj51MYWead .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj51MYWead .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj51MYWead .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uj51MYWead .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uj51MYWead .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uj51MYWead .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uj51MYWead .mbr-text {
  color: #ffffff;
}
.cid-uj51MYWead .card-title {
  color: #ffffff;
}
.cid-uj51MYWead .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uj51MYWead .mbr-section-title {
  color: #ffffff;
}
.cid-uj51MYWead .link {
  color: #4479d9;
}
.cid-uj51MZNKJ5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uj51MZNKJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj51MZNKJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj51MZNKJ5 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj51MZNKJ5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj51MZNKJ5 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uj51MZNKJ5 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uj51MZNKJ5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uj51MZNKJ5 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuotSBrtBY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuotSBrtBY nav.navbar {
  position: fixed;
}
.cid-uuotSBrtBY .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-uuotSBrtBY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuotSBrtBY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuotSBrtBY .dropdown-item:hover,
.cid-uuotSBrtBY .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuotSBrtBY .dropdown-item:hover span {
  color: white;
}
.cid-uuotSBrtBY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuotSBrtBY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuotSBrtBY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuotSBrtBY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuotSBrtBY .nav-link {
  position: relative;
}
.cid-uuotSBrtBY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuotSBrtBY .container {
    flex-wrap: wrap;
  }
}
.cid-uuotSBrtBY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuotSBrtBY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuotSBrtBY .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuotSBrtBY .dropdown-menu,
.cid-uuotSBrtBY .navbar.opened {
  background: #000000 !important;
}
.cid-uuotSBrtBY .nav-item:focus,
.cid-uuotSBrtBY .nav-link:focus {
  outline: none;
}
.cid-uuotSBrtBY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuotSBrtBY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuotSBrtBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuotSBrtBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuotSBrtBY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuotSBrtBY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuotSBrtBY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuotSBrtBY .navbar.opened {
  transition: all 0.3s;
}
.cid-uuotSBrtBY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuotSBrtBY .navbar .navbar-logo img {
  width: auto;
}
.cid-uuotSBrtBY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuotSBrtBY .navbar.collapsed {
  justify-content: center;
}
.cid-uuotSBrtBY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuotSBrtBY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuotSBrtBY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuotSBrtBY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuotSBrtBY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuotSBrtBY .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-uuotSBrtBY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuotSBrtBY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuotSBrtBY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuotSBrtBY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuotSBrtBY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuotSBrtBY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuotSBrtBY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuotSBrtBY .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-uuotSBrtBY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuotSBrtBY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuotSBrtBY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuotSBrtBY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuotSBrtBY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuotSBrtBY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuotSBrtBY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuotSBrtBY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuotSBrtBY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuotSBrtBY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuotSBrtBY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuotSBrtBY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuotSBrtBY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuotSBrtBY .dropdown-item.active,
.cid-uuotSBrtBY .dropdown-item:active {
  background-color: transparent;
}
.cid-uuotSBrtBY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuotSBrtBY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuotSBrtBY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuotSBrtBY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuotSBrtBY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuotSBrtBY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuotSBrtBY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuotSBrtBY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuotSBrtBY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuotSBrtBY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuotSBrtBY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuotSBrtBY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuotSBrtBY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuotSBrtBY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuotSBrtBY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuotSBrtBY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuotSBrtBY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuotSBrtBY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuotSBrtBY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuotSBrtBY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuotSBrtBY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuotSBrtBY .navbar {
    height: 70px;
  }
  .cid-uuotSBrtBY .navbar.opened {
    height: auto;
  }
  .cid-uuotSBrtBY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuotSCNjpE {
  background-image: url("../../../assets/images/willow-leaf-butter-bean-leaf-hand.webp");
}
.cid-uuotSCNjpE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuotSCNjpE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuotSCNjpE .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuotSCNjpE .mbr-text,
.cid-uuotSCNjpE .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuotSCNjpE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuotSDhZkn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuotSDhZkn img,
.cid-uuotSDhZkn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuotSDhZkn .item:focus,
.cid-uuotSDhZkn span:focus {
  outline: none;
}
.cid-uuotSDhZkn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuotSDhZkn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuotSDhZkn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuotSDhZkn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuotSDhZkn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuotSDhZkn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuotSDhZkn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuotSDhZkn .mbr-section-title {
  color: #ffffff;
}
.cid-uuotSDhZkn .mbr-text,
.cid-uuotSDhZkn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuotSDhZkn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuotSDhZkn .item-subtitle {
  text-align: left;
}
.cid-uuotSDhZkn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYnq9YFWE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYnq9YFWE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYnq9YFWE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYnq9YFWE .mbr-section-title {
  color: #ffffff;
}
.cid-uZYnq9YFWE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwIXQJbU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwIXQJbU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwIXQJbU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwIXQJbU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwIXQJbU .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwI27dqV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwI27dqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwI27dqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwI27dqV .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwI27dqV .number {
  color: #ffffff;
}
.cid-uYNwI27dqV .period {
  display: block;
}
.cid-uYNwI27dqV .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwI27dqV .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwI27dqV .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwI27dqV .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwI27dqV .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwI27dqV .mbr-text {
  color: #ffffff;
}
.cid-uYNwI27dqV .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwI27dqV .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwI27dqV .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwI27dqV .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuotSFdjbz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuotSFdjbz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuotSFdjbz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuotSFdjbz .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuotSFdjbz .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuotSFdjbz .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuotSFdjbz .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuotSFdjbz .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuotSFdjbz .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuotSFdjbz .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuotSFdjbz .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuotSFdjbz .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuotSFdjbz [class^="socicon-"]:before,
.cid-uuotSFdjbz [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuotSFdjbz .mbr-section-title,
.cid-uuotSFdjbz .mbr-social-likes {
  color: #ffffff;
}
.cid-uuotSFOBxj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuotSFOBxj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuotSFOBxj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuotSFOBxj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuotSFOBxj .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuotSFOBxj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuotSFOBxj .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuotSFOBxj .mbr-text {
  color: #ffffff;
}
.cid-uuotSFOBxj .card-title {
  color: #ffffff;
}
.cid-uuotSFOBxj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuotSFOBxj .mbr-section-title {
  color: #ffffff;
}
.cid-uuotSFOBxj .link {
  color: #4479d9;
}
.cid-uuotSGuQe6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuotSGuQe6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuotSGuQe6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuotSGuQe6 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuotSGuQe6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuotSGuQe6 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuotSGuQe6 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuotSGuQe6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuotSGuQe6 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuow4HzeFn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuow4HzeFn nav.navbar {
  position: fixed;
}
.cid-uuow4HzeFn .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-uuow4HzeFn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuow4HzeFn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuow4HzeFn .dropdown-item:hover,
.cid-uuow4HzeFn .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuow4HzeFn .dropdown-item:hover span {
  color: white;
}
.cid-uuow4HzeFn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuow4HzeFn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuow4HzeFn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuow4HzeFn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuow4HzeFn .nav-link {
  position: relative;
}
.cid-uuow4HzeFn .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuow4HzeFn .container {
    flex-wrap: wrap;
  }
}
.cid-uuow4HzeFn .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuow4HzeFn .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuow4HzeFn .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuow4HzeFn .dropdown-menu,
.cid-uuow4HzeFn .navbar.opened {
  background: #000000 !important;
}
.cid-uuow4HzeFn .nav-item:focus,
.cid-uuow4HzeFn .nav-link:focus {
  outline: none;
}
.cid-uuow4HzeFn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuow4HzeFn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuow4HzeFn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuow4HzeFn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuow4HzeFn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuow4HzeFn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuow4HzeFn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuow4HzeFn .navbar.opened {
  transition: all 0.3s;
}
.cid-uuow4HzeFn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuow4HzeFn .navbar .navbar-logo img {
  width: auto;
}
.cid-uuow4HzeFn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuow4HzeFn .navbar.collapsed {
  justify-content: center;
}
.cid-uuow4HzeFn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuow4HzeFn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuow4HzeFn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuow4HzeFn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuow4HzeFn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuow4HzeFn .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-uuow4HzeFn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuow4HzeFn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuow4HzeFn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuow4HzeFn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuow4HzeFn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuow4HzeFn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuow4HzeFn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuow4HzeFn .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-uuow4HzeFn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuow4HzeFn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuow4HzeFn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuow4HzeFn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuow4HzeFn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuow4HzeFn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuow4HzeFn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuow4HzeFn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuow4HzeFn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuow4HzeFn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuow4HzeFn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuow4HzeFn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuow4HzeFn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuow4HzeFn .dropdown-item.active,
.cid-uuow4HzeFn .dropdown-item:active {
  background-color: transparent;
}
.cid-uuow4HzeFn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuow4HzeFn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuow4HzeFn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuow4HzeFn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuow4HzeFn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuow4HzeFn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuow4HzeFn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuow4HzeFn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuow4HzeFn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuow4HzeFn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuow4HzeFn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuow4HzeFn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuow4HzeFn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuow4HzeFn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuow4HzeFn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuow4HzeFn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuow4HzeFn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuow4HzeFn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuow4HzeFn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuow4HzeFn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuow4HzeFn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuow4HzeFn .navbar {
    height: 70px;
  }
  .cid-uuow4HzeFn .navbar.opened {
    height: auto;
  }
  .cid-uuow4HzeFn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuow4IlFUg {
  background-image: url("../../../assets/images/pinto-beans.webp");
}
.cid-uuow4IlFUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuow4IlFUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuow4IlFUg .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuow4IlFUg .mbr-text,
.cid-uuow4IlFUg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuow4IlFUg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuow4ITzlI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuow4ITzlI img,
.cid-uuow4ITzlI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuow4ITzlI .item:focus,
.cid-uuow4ITzlI span:focus {
  outline: none;
}
.cid-uuow4ITzlI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuow4ITzlI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuow4ITzlI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuow4ITzlI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuow4ITzlI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuow4ITzlI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuow4ITzlI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuow4ITzlI .mbr-section-title {
  color: #ffffff;
}
.cid-uuow4ITzlI .mbr-text,
.cid-uuow4ITzlI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuow4ITzlI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuow4ITzlI .item-subtitle {
  text-align: left;
}
.cid-uuow4ITzlI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYnlE9RqV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYnlE9RqV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYnlE9RqV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYnlE9RqV .mbr-section-title {
  color: #ffffff;
}
.cid-uZYnlE9RqV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwDaxeRk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwDaxeRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwDaxeRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwDaxeRk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwDaxeRk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwBooMVd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwBooMVd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwBooMVd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwBooMVd .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwBooMVd .number {
  color: #ffffff;
}
.cid-uYNwBooMVd .period {
  display: block;
}
.cid-uYNwBooMVd .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwBooMVd .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwBooMVd .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwBooMVd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwBooMVd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwBooMVd .mbr-text {
  color: #ffffff;
}
.cid-uYNwBooMVd .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwBooMVd .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwBooMVd .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwBooMVd .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuow4KTEb6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuow4KTEb6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuow4KTEb6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuow4KTEb6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuow4KTEb6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuow4KTEb6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuow4KTEb6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuow4KTEb6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuow4KTEb6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuow4KTEb6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuow4KTEb6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuow4KTEb6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuow4KTEb6 [class^="socicon-"]:before,
.cid-uuow4KTEb6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuow4KTEb6 .mbr-section-title,
.cid-uuow4KTEb6 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuow4LrGE7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuow4LrGE7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuow4LrGE7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuow4LrGE7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuow4LrGE7 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuow4LrGE7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuow4LrGE7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuow4LrGE7 .mbr-text {
  color: #ffffff;
}
.cid-uuow4LrGE7 .card-title {
  color: #ffffff;
}
.cid-uuow4LrGE7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuow4LrGE7 .mbr-section-title {
  color: #ffffff;
}
.cid-uuow4LrGE7 .link {
  color: #4479d9;
}
.cid-uuow4M8lJB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuow4M8lJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuow4M8lJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuow4M8lJB .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuow4M8lJB .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuow4M8lJB .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuow4M8lJB .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuow4M8lJB div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuow4M8lJB .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoxrZaHjt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoxrZaHjt nav.navbar {
  position: fixed;
}
.cid-uuoxrZaHjt .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-uuoxrZaHjt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoxrZaHjt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoxrZaHjt .dropdown-item:hover,
.cid-uuoxrZaHjt .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoxrZaHjt .dropdown-item:hover span {
  color: white;
}
.cid-uuoxrZaHjt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoxrZaHjt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoxrZaHjt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoxrZaHjt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoxrZaHjt .nav-link {
  position: relative;
}
.cid-uuoxrZaHjt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoxrZaHjt .container {
    flex-wrap: wrap;
  }
}
.cid-uuoxrZaHjt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoxrZaHjt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoxrZaHjt .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoxrZaHjt .dropdown-menu,
.cid-uuoxrZaHjt .navbar.opened {
  background: #000000 !important;
}
.cid-uuoxrZaHjt .nav-item:focus,
.cid-uuoxrZaHjt .nav-link:focus {
  outline: none;
}
.cid-uuoxrZaHjt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoxrZaHjt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoxrZaHjt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoxrZaHjt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoxrZaHjt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoxrZaHjt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoxrZaHjt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoxrZaHjt .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoxrZaHjt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoxrZaHjt .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoxrZaHjt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoxrZaHjt .navbar.collapsed {
  justify-content: center;
}
.cid-uuoxrZaHjt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoxrZaHjt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoxrZaHjt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoxrZaHjt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoxrZaHjt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoxrZaHjt .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-uuoxrZaHjt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoxrZaHjt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoxrZaHjt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoxrZaHjt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoxrZaHjt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoxrZaHjt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoxrZaHjt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoxrZaHjt .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-uuoxrZaHjt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoxrZaHjt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoxrZaHjt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoxrZaHjt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoxrZaHjt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoxrZaHjt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoxrZaHjt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoxrZaHjt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoxrZaHjt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoxrZaHjt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoxrZaHjt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoxrZaHjt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoxrZaHjt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoxrZaHjt .dropdown-item.active,
.cid-uuoxrZaHjt .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoxrZaHjt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoxrZaHjt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoxrZaHjt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoxrZaHjt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoxrZaHjt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoxrZaHjt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoxrZaHjt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoxrZaHjt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoxrZaHjt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoxrZaHjt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoxrZaHjt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoxrZaHjt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoxrZaHjt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoxrZaHjt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoxrZaHjt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoxrZaHjt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoxrZaHjt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoxrZaHjt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoxrZaHjt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoxrZaHjt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoxrZaHjt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoxrZaHjt .navbar {
    height: 70px;
  }
  .cid-uuoxrZaHjt .navbar.opened {
    height: auto;
  }
  .cid-uuoxrZaHjt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoxrZXAMZ {
  background-image: url("../../../assets/images/soy-beans-banner.webp");
}
.cid-uuoxrZXAMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoxrZXAMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoxrZXAMZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoxrZXAMZ .mbr-text,
.cid-uuoxrZXAMZ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoxrZXAMZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoxs0sgDS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoxs0sgDS img,
.cid-uuoxs0sgDS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoxs0sgDS .item:focus,
.cid-uuoxs0sgDS span:focus {
  outline: none;
}
.cid-uuoxs0sgDS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoxs0sgDS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoxs0sgDS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoxs0sgDS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoxs0sgDS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoxs0sgDS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoxs0sgDS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoxs0sgDS .mbr-section-title {
  color: #ffffff;
}
.cid-uuoxs0sgDS .mbr-text,
.cid-uuoxs0sgDS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoxs0sgDS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoxs0sgDS .item-subtitle {
  text-align: left;
}
.cid-uuoxs0sgDS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYnifrw14 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYnifrw14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYnifrw14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYnifrw14 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYnifrw14 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwvnbJAR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwvnbJAR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwvnbJAR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwvnbJAR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwvnbJAR .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwtMO2aC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwtMO2aC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwtMO2aC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwtMO2aC .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwtMO2aC .number {
  color: #ffffff;
}
.cid-uYNwtMO2aC .period {
  display: block;
}
.cid-uYNwtMO2aC .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwtMO2aC .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwtMO2aC .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwtMO2aC .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwtMO2aC .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwtMO2aC .mbr-text {
  color: #ffffff;
}
.cid-uYNwtMO2aC .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwtMO2aC .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwtMO2aC .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwtMO2aC .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoxs2oO9v {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoxs2oO9v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoxs2oO9v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoxs2oO9v .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoxs2oO9v .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoxs2oO9v .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoxs2oO9v .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoxs2oO9v .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoxs2oO9v .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoxs2oO9v .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoxs2oO9v .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoxs2oO9v .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoxs2oO9v [class^="socicon-"]:before,
.cid-uuoxs2oO9v [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoxs2oO9v .mbr-section-title,
.cid-uuoxs2oO9v .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoxs2X82X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoxs2X82X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoxs2X82X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoxs2X82X .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoxs2X82X .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoxs2X82X .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoxs2X82X .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoxs2X82X .mbr-text {
  color: #ffffff;
}
.cid-uuoxs2X82X .card-title {
  color: #ffffff;
}
.cid-uuoxs2X82X .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoxs2X82X .mbr-section-title {
  color: #ffffff;
}
.cid-uuoxs2X82X .link {
  color: #4479d9;
}
.cid-uuoxs3CXb3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoxs3CXb3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoxs3CXb3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoxs3CXb3 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoxs3CXb3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoxs3CXb3 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoxs3CXb3 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoxs3CXb3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoxs3CXb3 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoyhaRd3c {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoyhaRd3c nav.navbar {
  position: fixed;
}
.cid-uuoyhaRd3c .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-uuoyhaRd3c .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoyhaRd3c .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoyhaRd3c .dropdown-item:hover,
.cid-uuoyhaRd3c .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoyhaRd3c .dropdown-item:hover span {
  color: white;
}
.cid-uuoyhaRd3c .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoyhaRd3c .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoyhaRd3c .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoyhaRd3c .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoyhaRd3c .nav-link {
  position: relative;
}
.cid-uuoyhaRd3c .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoyhaRd3c .container {
    flex-wrap: wrap;
  }
}
.cid-uuoyhaRd3c .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoyhaRd3c .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoyhaRd3c .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoyhaRd3c .dropdown-menu,
.cid-uuoyhaRd3c .navbar.opened {
  background: #000000 !important;
}
.cid-uuoyhaRd3c .nav-item:focus,
.cid-uuoyhaRd3c .nav-link:focus {
  outline: none;
}
.cid-uuoyhaRd3c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoyhaRd3c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoyhaRd3c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoyhaRd3c .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoyhaRd3c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoyhaRd3c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoyhaRd3c .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoyhaRd3c .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoyhaRd3c .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoyhaRd3c .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoyhaRd3c .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoyhaRd3c .navbar.collapsed {
  justify-content: center;
}
.cid-uuoyhaRd3c .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoyhaRd3c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoyhaRd3c .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoyhaRd3c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoyhaRd3c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoyhaRd3c .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-uuoyhaRd3c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoyhaRd3c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoyhaRd3c .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoyhaRd3c .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoyhaRd3c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoyhaRd3c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoyhaRd3c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoyhaRd3c .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-uuoyhaRd3c .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoyhaRd3c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoyhaRd3c .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoyhaRd3c .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoyhaRd3c .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoyhaRd3c .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoyhaRd3c .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoyhaRd3c .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoyhaRd3c .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoyhaRd3c .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoyhaRd3c .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoyhaRd3c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoyhaRd3c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoyhaRd3c .dropdown-item.active,
.cid-uuoyhaRd3c .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoyhaRd3c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoyhaRd3c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoyhaRd3c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoyhaRd3c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoyhaRd3c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoyhaRd3c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoyhaRd3c ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoyhaRd3c .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoyhaRd3c button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoyhaRd3c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoyhaRd3c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoyhaRd3c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoyhaRd3c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoyhaRd3c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoyhaRd3c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoyhaRd3c nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoyhaRd3c nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoyhaRd3c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoyhaRd3c .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoyhaRd3c a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoyhaRd3c .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoyhaRd3c .navbar {
    height: 70px;
  }
  .cid-uuoyhaRd3c .navbar.opened {
    height: auto;
  }
  .cid-uuoyhaRd3c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoyhbFTMe {
  background-image: url("../../../assets/images/la-purple-pod-string-bean-banner.webp");
}
.cid-uuoyhbFTMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoyhbFTMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoyhbFTMe .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoyhbFTMe .mbr-text,
.cid-uuoyhbFTMe .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoyhbFTMe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoyhcWOIw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoyhcWOIw img,
.cid-uuoyhcWOIw .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoyhcWOIw .item:focus,
.cid-uuoyhcWOIw span:focus {
  outline: none;
}
.cid-uuoyhcWOIw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoyhcWOIw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoyhcWOIw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoyhcWOIw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoyhcWOIw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoyhcWOIw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoyhcWOIw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoyhcWOIw .mbr-section-title {
  color: #232323;
}
.cid-uuoyhcWOIw .mbr-text,
.cid-uuoyhcWOIw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoyhcWOIw .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoyhcWOIw .item-subtitle {
  text-align: left;
}
.cid-uZYmTCDbVU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYmTCDbVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYmTCDbVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYmTCDbVU .mbr-section-title {
  color: #ffffff;
}
.cid-uZYmTCDbVU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwp3BA9n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNwp3BA9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwp3BA9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwp3BA9n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNwp3BA9n .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwnqcARf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNwnqcARf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNwnqcARf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNwnqcARf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNwnqcARf .number {
  color: #ffffff;
}
.cid-uYNwnqcARf .period {
  display: block;
}
.cid-uYNwnqcARf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNwnqcARf .period {
    font-size: 0.8rem;
  }
}
.cid-uYNwnqcARf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNwnqcARf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNwnqcARf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNwnqcARf .mbr-text {
  color: #ffffff;
}
.cid-uYNwnqcARf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNwnqcARf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNwnqcARf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNwnqcARf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoyhea2a7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoyhea2a7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoyhea2a7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoyhea2a7 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoyhea2a7 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoyhea2a7 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoyhea2a7 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoyhea2a7 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoyhea2a7 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoyhea2a7 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoyhea2a7 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoyhea2a7 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoyhea2a7 [class^="socicon-"]:before,
.cid-uuoyhea2a7 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoyhea2a7 .mbr-section-title,
.cid-uuoyhea2a7 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoyheOPZ7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoyheOPZ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoyheOPZ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoyheOPZ7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoyheOPZ7 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoyheOPZ7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoyheOPZ7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoyheOPZ7 .mbr-text {
  color: #ffffff;
}
.cid-uuoyheOPZ7 .card-title {
  color: #ffffff;
}
.cid-uuoyheOPZ7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoyheOPZ7 .mbr-section-title {
  color: #ffffff;
}
.cid-uuoyheOPZ7 .link {
  color: #4479d9;
}
.cid-uuoyhftNQF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoyhftNQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoyhftNQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoyhftNQF .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoyhftNQF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoyhftNQF .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoyhftNQF .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoyhftNQF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoyhftNQF .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoEGxDRr0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoEGxDRr0 nav.navbar {
  position: fixed;
}
.cid-uuoEGxDRr0 .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-uuoEGxDRr0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoEGxDRr0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoEGxDRr0 .dropdown-item:hover,
.cid-uuoEGxDRr0 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoEGxDRr0 .dropdown-item:hover span {
  color: white;
}
.cid-uuoEGxDRr0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoEGxDRr0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoEGxDRr0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoEGxDRr0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoEGxDRr0 .nav-link {
  position: relative;
}
.cid-uuoEGxDRr0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoEGxDRr0 .container {
    flex-wrap: wrap;
  }
}
.cid-uuoEGxDRr0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoEGxDRr0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoEGxDRr0 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoEGxDRr0 .dropdown-menu,
.cid-uuoEGxDRr0 .navbar.opened {
  background: #000000 !important;
}
.cid-uuoEGxDRr0 .nav-item:focus,
.cid-uuoEGxDRr0 .nav-link:focus {
  outline: none;
}
.cid-uuoEGxDRr0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoEGxDRr0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoEGxDRr0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoEGxDRr0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoEGxDRr0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoEGxDRr0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoEGxDRr0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoEGxDRr0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoEGxDRr0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoEGxDRr0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoEGxDRr0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoEGxDRr0 .navbar.collapsed {
  justify-content: center;
}
.cid-uuoEGxDRr0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoEGxDRr0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoEGxDRr0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoEGxDRr0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoEGxDRr0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoEGxDRr0 .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-uuoEGxDRr0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoEGxDRr0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoEGxDRr0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoEGxDRr0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoEGxDRr0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoEGxDRr0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoEGxDRr0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoEGxDRr0 .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-uuoEGxDRr0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoEGxDRr0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoEGxDRr0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoEGxDRr0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoEGxDRr0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoEGxDRr0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoEGxDRr0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoEGxDRr0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoEGxDRr0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoEGxDRr0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoEGxDRr0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoEGxDRr0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoEGxDRr0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoEGxDRr0 .dropdown-item.active,
.cid-uuoEGxDRr0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoEGxDRr0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoEGxDRr0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoEGxDRr0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoEGxDRr0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoEGxDRr0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoEGxDRr0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoEGxDRr0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoEGxDRr0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoEGxDRr0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoEGxDRr0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoEGxDRr0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoEGxDRr0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoEGxDRr0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoEGxDRr0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoEGxDRr0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoEGxDRr0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoEGxDRr0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoEGxDRr0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoEGxDRr0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoEGxDRr0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoEGxDRr0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoEGxDRr0 .navbar {
    height: 70px;
  }
  .cid-uuoEGxDRr0 .navbar.opened {
    height: auto;
  }
  .cid-uuoEGxDRr0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoEGyujkf {
  background-image: url("../../../assets/images/pickling-cucumber-banner.webp");
}
.cid-uuoEGyujkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoEGyujkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoEGyujkf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoEGyujkf .mbr-text,
.cid-uuoEGyujkf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoEGyujkf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoEGz5fBx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoEGz5fBx img,
.cid-uuoEGz5fBx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoEGz5fBx .item:focus,
.cid-uuoEGz5fBx span:focus {
  outline: none;
}
.cid-uuoEGz5fBx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoEGz5fBx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoEGz5fBx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoEGz5fBx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoEGz5fBx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoEGz5fBx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoEGz5fBx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoEGz5fBx .mbr-section-title {
  color: #ffffff;
}
.cid-uuoEGz5fBx .mbr-text,
.cid-uuoEGz5fBx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoEGz5fBx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoEGz5fBx .item-subtitle {
  text-align: left;
}
.cid-uuoEGz5fBx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYmJ68iel {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYmJ68iel .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYmJ68iel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYmJ68iel .mbr-section-title {
  color: #ffffff;
}
.cid-uZYmJ68iel .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvTlsmv4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvTlsmv4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvTlsmv4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvTlsmv4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvTlsmv4 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvRSC3vd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvRSC3vd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvRSC3vd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvRSC3vd .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvRSC3vd .number {
  color: #ffffff;
}
.cid-uYNvRSC3vd .period {
  display: block;
}
.cid-uYNvRSC3vd .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvRSC3vd .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvRSC3vd .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvRSC3vd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvRSC3vd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvRSC3vd .mbr-text {
  color: #ffffff;
}
.cid-uYNvRSC3vd .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvRSC3vd .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvRSC3vd .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvRSC3vd .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoEGAYJmI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoEGAYJmI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoEGAYJmI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoEGAYJmI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoEGAYJmI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoEGAYJmI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoEGAYJmI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoEGAYJmI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoEGAYJmI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoEGAYJmI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoEGAYJmI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoEGAYJmI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoEGAYJmI [class^="socicon-"]:before,
.cid-uuoEGAYJmI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoEGAYJmI .mbr-section-title,
.cid-uuoEGAYJmI .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoEGBCilc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoEGBCilc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoEGBCilc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoEGBCilc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoEGBCilc .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoEGBCilc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoEGBCilc .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoEGBCilc .mbr-text {
  color: #ffffff;
}
.cid-uuoEGBCilc .card-title {
  color: #ffffff;
}
.cid-uuoEGBCilc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoEGBCilc .mbr-section-title {
  color: #ffffff;
}
.cid-uuoEGBCilc .link {
  color: #4479d9;
}
.cid-uuoEGCjrGb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoEGCjrGb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoEGCjrGb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoEGCjrGb .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoEGCjrGb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoEGCjrGb .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoEGCjrGb .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoEGCjrGb div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoEGCjrGb .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoFZGl40A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoFZGl40A nav.navbar {
  position: fixed;
}
.cid-uuoFZGl40A .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-uuoFZGl40A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoFZGl40A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoFZGl40A .dropdown-item:hover,
.cid-uuoFZGl40A .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoFZGl40A .dropdown-item:hover span {
  color: white;
}
.cid-uuoFZGl40A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoFZGl40A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoFZGl40A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoFZGl40A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoFZGl40A .nav-link {
  position: relative;
}
.cid-uuoFZGl40A .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoFZGl40A .container {
    flex-wrap: wrap;
  }
}
.cid-uuoFZGl40A .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoFZGl40A .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoFZGl40A .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoFZGl40A .dropdown-menu,
.cid-uuoFZGl40A .navbar.opened {
  background: #000000 !important;
}
.cid-uuoFZGl40A .nav-item:focus,
.cid-uuoFZGl40A .nav-link:focus {
  outline: none;
}
.cid-uuoFZGl40A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoFZGl40A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoFZGl40A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoFZGl40A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoFZGl40A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoFZGl40A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoFZGl40A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoFZGl40A .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoFZGl40A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoFZGl40A .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoFZGl40A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoFZGl40A .navbar.collapsed {
  justify-content: center;
}
.cid-uuoFZGl40A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoFZGl40A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoFZGl40A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoFZGl40A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoFZGl40A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoFZGl40A .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-uuoFZGl40A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoFZGl40A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoFZGl40A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoFZGl40A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoFZGl40A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoFZGl40A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoFZGl40A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoFZGl40A .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-uuoFZGl40A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoFZGl40A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoFZGl40A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoFZGl40A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoFZGl40A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoFZGl40A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoFZGl40A .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoFZGl40A .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoFZGl40A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoFZGl40A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoFZGl40A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoFZGl40A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoFZGl40A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoFZGl40A .dropdown-item.active,
.cid-uuoFZGl40A .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoFZGl40A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoFZGl40A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoFZGl40A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoFZGl40A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoFZGl40A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoFZGl40A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoFZGl40A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoFZGl40A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoFZGl40A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoFZGl40A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoFZGl40A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoFZGl40A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoFZGl40A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoFZGl40A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoFZGl40A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoFZGl40A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoFZGl40A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoFZGl40A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoFZGl40A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoFZGl40A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoFZGl40A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoFZGl40A .navbar {
    height: 70px;
  }
  .cid-uuoFZGl40A .navbar.opened {
    height: auto;
  }
  .cid-uuoFZGl40A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoFZHrM2I {
  background-image: url("../../../assets/images/sikkim-cucumber-banner.webp");
}
.cid-uuoFZHrM2I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoFZHrM2I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoFZHrM2I .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoFZHrM2I .mbr-text,
.cid-uuoFZHrM2I .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoFZHrM2I .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoFZI83PT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoFZI83PT img,
.cid-uuoFZI83PT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoFZI83PT .item:focus,
.cid-uuoFZI83PT span:focus {
  outline: none;
}
.cid-uuoFZI83PT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoFZI83PT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoFZI83PT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoFZI83PT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoFZI83PT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoFZI83PT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoFZI83PT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoFZI83PT .mbr-section-title {
  color: #ffffff;
}
.cid-uuoFZI83PT .mbr-text,
.cid-uuoFZI83PT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoFZI83PT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoFZI83PT .item-subtitle {
  text-align: left;
}
.cid-uuoFZI83PT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYmFzOhv2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYmFzOhv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYmFzOhv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYmFzOhv2 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYmFzOhv2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvME9Z1F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvME9Z1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvME9Z1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvME9Z1F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvME9Z1F .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvLAiZHH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvLAiZHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvLAiZHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvLAiZHH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvLAiZHH .number {
  color: #ffffff;
}
.cid-uYNvLAiZHH .period {
  display: block;
}
.cid-uYNvLAiZHH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvLAiZHH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvLAiZHH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvLAiZHH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvLAiZHH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvLAiZHH .mbr-text {
  color: #ffffff;
}
.cid-uYNvLAiZHH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvLAiZHH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvLAiZHH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvLAiZHH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoFZKu10t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoFZKu10t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoFZKu10t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoFZKu10t .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoFZKu10t .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoFZKu10t .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoFZKu10t .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoFZKu10t .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoFZKu10t .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoFZKu10t .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoFZKu10t .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoFZKu10t .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoFZKu10t [class^="socicon-"]:before,
.cid-uuoFZKu10t [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoFZKu10t .mbr-section-title,
.cid-uuoFZKu10t .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoFZLqg99 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoFZLqg99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoFZLqg99 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoFZLqg99 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoFZLqg99 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoFZLqg99 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoFZLqg99 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoFZLqg99 .mbr-text {
  color: #ffffff;
}
.cid-uuoFZLqg99 .card-title {
  color: #ffffff;
}
.cid-uuoFZLqg99 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoFZLqg99 .mbr-section-title {
  color: #ffffff;
}
.cid-uuoFZLqg99 .link {
  color: #4479d9;
}
.cid-uuoFZM7Pog {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoFZM7Pog .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoFZM7Pog .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoFZM7Pog .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoFZM7Pog .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoFZM7Pog .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoFZM7Pog .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoFZM7Pog div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoFZM7Pog .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoHee3A0t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoHee3A0t nav.navbar {
  position: fixed;
}
.cid-uuoHee3A0t .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-uuoHee3A0t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoHee3A0t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoHee3A0t .dropdown-item:hover,
.cid-uuoHee3A0t .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoHee3A0t .dropdown-item:hover span {
  color: white;
}
.cid-uuoHee3A0t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoHee3A0t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoHee3A0t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoHee3A0t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoHee3A0t .nav-link {
  position: relative;
}
.cid-uuoHee3A0t .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoHee3A0t .container {
    flex-wrap: wrap;
  }
}
.cid-uuoHee3A0t .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoHee3A0t .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoHee3A0t .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoHee3A0t .dropdown-menu,
.cid-uuoHee3A0t .navbar.opened {
  background: #000000 !important;
}
.cid-uuoHee3A0t .nav-item:focus,
.cid-uuoHee3A0t .nav-link:focus {
  outline: none;
}
.cid-uuoHee3A0t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoHee3A0t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoHee3A0t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoHee3A0t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoHee3A0t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoHee3A0t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoHee3A0t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoHee3A0t .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoHee3A0t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoHee3A0t .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoHee3A0t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoHee3A0t .navbar.collapsed {
  justify-content: center;
}
.cid-uuoHee3A0t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoHee3A0t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoHee3A0t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoHee3A0t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoHee3A0t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoHee3A0t .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-uuoHee3A0t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoHee3A0t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoHee3A0t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoHee3A0t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoHee3A0t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoHee3A0t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoHee3A0t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoHee3A0t .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-uuoHee3A0t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoHee3A0t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoHee3A0t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoHee3A0t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoHee3A0t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoHee3A0t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoHee3A0t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoHee3A0t .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoHee3A0t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoHee3A0t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoHee3A0t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoHee3A0t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoHee3A0t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoHee3A0t .dropdown-item.active,
.cid-uuoHee3A0t .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoHee3A0t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoHee3A0t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoHee3A0t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoHee3A0t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoHee3A0t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoHee3A0t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoHee3A0t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoHee3A0t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoHee3A0t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoHee3A0t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoHee3A0t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoHee3A0t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoHee3A0t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoHee3A0t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoHee3A0t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoHee3A0t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoHee3A0t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoHee3A0t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoHee3A0t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoHee3A0t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoHee3A0t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoHee3A0t .navbar {
    height: 70px;
  }
  .cid-uuoHee3A0t .navbar.opened {
    height: auto;
  }
  .cid-uuoHee3A0t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoHeeNmHR {
  background-image: url("../../../assets/images/armenian-cucumber-banner.webp");
}
.cid-uuoHeeNmHR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoHeeNmHR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoHeeNmHR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoHeeNmHR .mbr-text,
.cid-uuoHeeNmHR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoHeeNmHR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoHeg2PJi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoHeg2PJi img,
.cid-uuoHeg2PJi .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoHeg2PJi .item:focus,
.cid-uuoHeg2PJi span:focus {
  outline: none;
}
.cid-uuoHeg2PJi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoHeg2PJi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoHeg2PJi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoHeg2PJi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoHeg2PJi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoHeg2PJi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoHeg2PJi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoHeg2PJi .mbr-section-title {
  color: #ffffff;
}
.cid-uuoHeg2PJi .mbr-text,
.cid-uuoHeg2PJi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoHeg2PJi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoHeg2PJi .item-subtitle {
  text-align: left;
}
.cid-uuoHeg2PJi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYmjaicLI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYmjaicLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYmjaicLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYmjaicLI .mbr-section-title {
  color: #ffffff;
}
.cid-uZYmjaicLI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvFZnMuB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvFZnMuB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvFZnMuB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvFZnMuB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvFZnMuB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvEkvUoX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvEkvUoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvEkvUoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvEkvUoX .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvEkvUoX .number {
  color: #ffffff;
}
.cid-uYNvEkvUoX .period {
  display: block;
}
.cid-uYNvEkvUoX .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvEkvUoX .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvEkvUoX .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvEkvUoX .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvEkvUoX .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvEkvUoX .mbr-text {
  color: #ffffff;
}
.cid-uYNvEkvUoX .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvEkvUoX .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvEkvUoX .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvEkvUoX .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoHehhu3D {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoHehhu3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoHehhu3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoHehhu3D .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoHehhu3D .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoHehhu3D .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoHehhu3D .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoHehhu3D .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoHehhu3D .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoHehhu3D .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoHehhu3D .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoHehhu3D .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoHehhu3D [class^="socicon-"]:before,
.cid-uuoHehhu3D [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoHehhu3D .mbr-section-title,
.cid-uuoHehhu3D .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoHehQ7An {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoHehQ7An .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoHehQ7An .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoHehQ7An .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoHehQ7An .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoHehQ7An .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoHehQ7An .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoHehQ7An .mbr-text {
  color: #ffffff;
}
.cid-uuoHehQ7An .card-title {
  color: #ffffff;
}
.cid-uuoHehQ7An .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoHehQ7An .mbr-section-title {
  color: #ffffff;
}
.cid-uuoHehQ7An .link {
  color: #4479d9;
}
.cid-uuoHeiA7qq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoHeiA7qq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoHeiA7qq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoHeiA7qq .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoHeiA7qq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoHeiA7qq .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoHeiA7qq .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoHeiA7qq div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoHeiA7qq .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoYxjl0FW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoYxjl0FW nav.navbar {
  position: fixed;
}
.cid-uuoYxjl0FW .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-uuoYxjl0FW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoYxjl0FW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoYxjl0FW .dropdown-item:hover,
.cid-uuoYxjl0FW .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoYxjl0FW .dropdown-item:hover span {
  color: white;
}
.cid-uuoYxjl0FW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoYxjl0FW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoYxjl0FW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoYxjl0FW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoYxjl0FW .nav-link {
  position: relative;
}
.cid-uuoYxjl0FW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoYxjl0FW .container {
    flex-wrap: wrap;
  }
}
.cid-uuoYxjl0FW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoYxjl0FW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoYxjl0FW .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoYxjl0FW .dropdown-menu,
.cid-uuoYxjl0FW .navbar.opened {
  background: #000000 !important;
}
.cid-uuoYxjl0FW .nav-item:focus,
.cid-uuoYxjl0FW .nav-link:focus {
  outline: none;
}
.cid-uuoYxjl0FW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoYxjl0FW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoYxjl0FW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoYxjl0FW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoYxjl0FW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoYxjl0FW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoYxjl0FW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoYxjl0FW .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoYxjl0FW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoYxjl0FW .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoYxjl0FW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoYxjl0FW .navbar.collapsed {
  justify-content: center;
}
.cid-uuoYxjl0FW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoYxjl0FW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoYxjl0FW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoYxjl0FW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoYxjl0FW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoYxjl0FW .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-uuoYxjl0FW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoYxjl0FW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoYxjl0FW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoYxjl0FW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoYxjl0FW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoYxjl0FW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoYxjl0FW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoYxjl0FW .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-uuoYxjl0FW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoYxjl0FW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoYxjl0FW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoYxjl0FW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoYxjl0FW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoYxjl0FW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoYxjl0FW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoYxjl0FW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoYxjl0FW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoYxjl0FW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoYxjl0FW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoYxjl0FW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoYxjl0FW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoYxjl0FW .dropdown-item.active,
.cid-uuoYxjl0FW .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoYxjl0FW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoYxjl0FW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoYxjl0FW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoYxjl0FW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoYxjl0FW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoYxjl0FW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoYxjl0FW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoYxjl0FW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoYxjl0FW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoYxjl0FW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoYxjl0FW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoYxjl0FW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoYxjl0FW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoYxjl0FW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoYxjl0FW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoYxjl0FW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoYxjl0FW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoYxjl0FW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoYxjl0FW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoYxjl0FW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoYxjl0FW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoYxjl0FW .navbar {
    height: 70px;
  }
  .cid-uuoYxjl0FW .navbar.opened {
    height: auto;
  }
  .cid-uuoYxjl0FW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoYxk82UK {
  background-image: url("../../../assets/images/birdhouse-gourds-banner.webp");
}
.cid-uuoYxk82UK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoYxk82UK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoYxk82UK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoYxk82UK .mbr-text,
.cid-uuoYxk82UK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoYxk82UK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoYxkHiXF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoYxkHiXF img,
.cid-uuoYxkHiXF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoYxkHiXF .item:focus,
.cid-uuoYxkHiXF span:focus {
  outline: none;
}
.cid-uuoYxkHiXF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoYxkHiXF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoYxkHiXF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoYxkHiXF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoYxkHiXF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoYxkHiXF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoYxkHiXF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoYxkHiXF .mbr-section-title {
  color: #ffffff;
}
.cid-uuoYxkHiXF .mbr-text,
.cid-uuoYxkHiXF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoYxkHiXF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoYxkHiXF .item-subtitle {
  text-align: left;
}
.cid-uuoYxkHiXF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9Pj5b774V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9Pj5b774V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Pj5b774V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Pj5b774V .mbr-section-title {
  color: #ffffff;
}
.cid-v9Pj5b774V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvjFH9Zw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvjFH9Zw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvjFH9Zw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvjFH9Zw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvjFH9Zw .mbr-section-title {
  color: #ffffff;
}
.cid-uYNviDhLlJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNviDhLlJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNviDhLlJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNviDhLlJ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNviDhLlJ .number {
  color: #ffffff;
}
.cid-uYNviDhLlJ .period {
  display: block;
}
.cid-uYNviDhLlJ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNviDhLlJ .period {
    font-size: 0.8rem;
  }
}
.cid-uYNviDhLlJ .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNviDhLlJ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNviDhLlJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNviDhLlJ .mbr-text {
  color: #ffffff;
}
.cid-uYNviDhLlJ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNviDhLlJ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNviDhLlJ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNviDhLlJ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoYxm0qSa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoYxm0qSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoYxm0qSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoYxm0qSa .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoYxm0qSa .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoYxm0qSa .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoYxm0qSa .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoYxm0qSa .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoYxm0qSa .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoYxm0qSa .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoYxm0qSa .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoYxm0qSa .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoYxm0qSa [class^="socicon-"]:before,
.cid-uuoYxm0qSa [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoYxm0qSa .mbr-section-title,
.cid-uuoYxm0qSa .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoYxmycBp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoYxmycBp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoYxmycBp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoYxmycBp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoYxmycBp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoYxmycBp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoYxmycBp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoYxmycBp .mbr-text {
  color: #ffffff;
}
.cid-uuoYxmycBp .card-title {
  color: #ffffff;
}
.cid-uuoYxmycBp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoYxmycBp .mbr-section-title {
  color: #ffffff;
}
.cid-uuoYxmycBp .link {
  color: #4479d9;
}
.cid-uuoYxncCur {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoYxncCur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoYxncCur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoYxncCur .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoYxncCur .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoYxncCur .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoYxncCur .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoYxncCur div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoYxncCur .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuoZ67g7Lc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuoZ67g7Lc nav.navbar {
  position: fixed;
}
.cid-uuoZ67g7Lc .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-uuoZ67g7Lc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuoZ67g7Lc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuoZ67g7Lc .dropdown-item:hover,
.cid-uuoZ67g7Lc .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuoZ67g7Lc .dropdown-item:hover span {
  color: white;
}
.cid-uuoZ67g7Lc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuoZ67g7Lc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuoZ67g7Lc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuoZ67g7Lc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuoZ67g7Lc .nav-link {
  position: relative;
}
.cid-uuoZ67g7Lc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoZ67g7Lc .container {
    flex-wrap: wrap;
  }
}
.cid-uuoZ67g7Lc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuoZ67g7Lc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuoZ67g7Lc .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuoZ67g7Lc .dropdown-menu,
.cid-uuoZ67g7Lc .navbar.opened {
  background: #000000 !important;
}
.cid-uuoZ67g7Lc .nav-item:focus,
.cid-uuoZ67g7Lc .nav-link:focus {
  outline: none;
}
.cid-uuoZ67g7Lc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuoZ67g7Lc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuoZ67g7Lc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuoZ67g7Lc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuoZ67g7Lc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuoZ67g7Lc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuoZ67g7Lc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuoZ67g7Lc .navbar.opened {
  transition: all 0.3s;
}
.cid-uuoZ67g7Lc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuoZ67g7Lc .navbar .navbar-logo img {
  width: auto;
}
.cid-uuoZ67g7Lc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuoZ67g7Lc .navbar.collapsed {
  justify-content: center;
}
.cid-uuoZ67g7Lc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuoZ67g7Lc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuoZ67g7Lc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuoZ67g7Lc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuoZ67g7Lc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuoZ67g7Lc .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-uuoZ67g7Lc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuoZ67g7Lc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuoZ67g7Lc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuoZ67g7Lc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuoZ67g7Lc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuoZ67g7Lc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuoZ67g7Lc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuoZ67g7Lc .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-uuoZ67g7Lc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuoZ67g7Lc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuoZ67g7Lc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuoZ67g7Lc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuoZ67g7Lc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuoZ67g7Lc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuoZ67g7Lc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuoZ67g7Lc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuoZ67g7Lc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuoZ67g7Lc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuoZ67g7Lc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuoZ67g7Lc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuoZ67g7Lc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuoZ67g7Lc .dropdown-item.active,
.cid-uuoZ67g7Lc .dropdown-item:active {
  background-color: transparent;
}
.cid-uuoZ67g7Lc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuoZ67g7Lc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuoZ67g7Lc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuoZ67g7Lc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuoZ67g7Lc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuoZ67g7Lc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuoZ67g7Lc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuoZ67g7Lc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuoZ67g7Lc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuoZ67g7Lc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuoZ67g7Lc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuoZ67g7Lc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoZ67g7Lc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuoZ67g7Lc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuoZ67g7Lc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoZ67g7Lc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuoZ67g7Lc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuoZ67g7Lc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuoZ67g7Lc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuoZ67g7Lc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuoZ67g7Lc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuoZ67g7Lc .navbar {
    height: 70px;
  }
  .cid-uuoZ67g7Lc .navbar.opened {
    height: auto;
  }
  .cid-uuoZ67g7Lc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuoZ680QAV {
  background-image: url("../../../assets/images/luffa-gourd-banner.webp");
}
.cid-uuoZ680QAV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoZ680QAV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoZ680QAV .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuoZ680QAV .mbr-text,
.cid-uuoZ680QAV .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuoZ680QAV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuoZ68xZwM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuoZ68xZwM img,
.cid-uuoZ68xZwM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuoZ68xZwM .item:focus,
.cid-uuoZ68xZwM span:focus {
  outline: none;
}
.cid-uuoZ68xZwM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuoZ68xZwM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuoZ68xZwM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuoZ68xZwM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuoZ68xZwM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuoZ68xZwM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuoZ68xZwM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuoZ68xZwM .mbr-section-title {
  color: #ffffff;
}
.cid-uuoZ68xZwM .mbr-text,
.cid-uuoZ68xZwM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuoZ68xZwM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuoZ68xZwM .item-subtitle {
  text-align: left;
}
.cid-uuoZ68xZwM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9PiEx3q0n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9PiEx3q0n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9PiEx3q0n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9PiEx3q0n .mbr-section-title {
  color: #ffffff;
}
.cid-v9PiEx3q0n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvcYE1XO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNvcYE1XO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvcYE1XO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvcYE1XO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNvcYE1XO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvbEQoJ2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNvbEQoJ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNvbEQoJ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNvbEQoJ2 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNvbEQoJ2 .number {
  color: #ffffff;
}
.cid-uYNvbEQoJ2 .period {
  display: block;
}
.cid-uYNvbEQoJ2 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNvbEQoJ2 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNvbEQoJ2 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNvbEQoJ2 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNvbEQoJ2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNvbEQoJ2 .mbr-text {
  color: #ffffff;
}
.cid-uYNvbEQoJ2 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNvbEQoJ2 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNvbEQoJ2 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNvbEQoJ2 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuoZ69OW6Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuoZ69OW6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoZ69OW6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoZ69OW6Q .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuoZ69OW6Q .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuoZ69OW6Q .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuoZ69OW6Q .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuoZ69OW6Q .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuoZ69OW6Q .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuoZ69OW6Q .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuoZ69OW6Q .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuoZ69OW6Q .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuoZ69OW6Q [class^="socicon-"]:before,
.cid-uuoZ69OW6Q [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuoZ69OW6Q .mbr-section-title,
.cid-uuoZ69OW6Q .mbr-social-likes {
  color: #ffffff;
}
.cid-uuoZ6amDU4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuoZ6amDU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoZ6amDU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoZ6amDU4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuoZ6amDU4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuoZ6amDU4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoZ6amDU4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuoZ6amDU4 .mbr-text {
  color: #ffffff;
}
.cid-uuoZ6amDU4 .card-title {
  color: #ffffff;
}
.cid-uuoZ6amDU4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuoZ6amDU4 .mbr-section-title {
  color: #ffffff;
}
.cid-uuoZ6amDU4 .link {
  color: #4479d9;
}
.cid-uuoZ6b5h2Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuoZ6b5h2Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuoZ6b5h2Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuoZ6b5h2Z .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuoZ6b5h2Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuoZ6b5h2Z .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuoZ6b5h2Z .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuoZ6b5h2Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuoZ6b5h2Z .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup0ZzGTtL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup0ZzGTtL nav.navbar {
  position: fixed;
}
.cid-uup0ZzGTtL .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-uup0ZzGTtL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup0ZzGTtL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup0ZzGTtL .dropdown-item:hover,
.cid-uup0ZzGTtL .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup0ZzGTtL .dropdown-item:hover span {
  color: white;
}
.cid-uup0ZzGTtL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup0ZzGTtL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup0ZzGTtL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup0ZzGTtL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup0ZzGTtL .nav-link {
  position: relative;
}
.cid-uup0ZzGTtL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup0ZzGTtL .container {
    flex-wrap: wrap;
  }
}
.cid-uup0ZzGTtL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup0ZzGTtL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup0ZzGTtL .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup0ZzGTtL .dropdown-menu,
.cid-uup0ZzGTtL .navbar.opened {
  background: #000000 !important;
}
.cid-uup0ZzGTtL .nav-item:focus,
.cid-uup0ZzGTtL .nav-link:focus {
  outline: none;
}
.cid-uup0ZzGTtL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup0ZzGTtL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup0ZzGTtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup0ZzGTtL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup0ZzGTtL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup0ZzGTtL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup0ZzGTtL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup0ZzGTtL .navbar.opened {
  transition: all 0.3s;
}
.cid-uup0ZzGTtL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup0ZzGTtL .navbar .navbar-logo img {
  width: auto;
}
.cid-uup0ZzGTtL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup0ZzGTtL .navbar.collapsed {
  justify-content: center;
}
.cid-uup0ZzGTtL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup0ZzGTtL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup0ZzGTtL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup0ZzGTtL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup0ZzGTtL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup0ZzGTtL .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-uup0ZzGTtL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup0ZzGTtL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup0ZzGTtL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup0ZzGTtL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup0ZzGTtL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup0ZzGTtL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup0ZzGTtL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup0ZzGTtL .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-uup0ZzGTtL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup0ZzGTtL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup0ZzGTtL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup0ZzGTtL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup0ZzGTtL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup0ZzGTtL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup0ZzGTtL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup0ZzGTtL .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup0ZzGTtL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup0ZzGTtL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup0ZzGTtL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup0ZzGTtL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup0ZzGTtL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup0ZzGTtL .dropdown-item.active,
.cid-uup0ZzGTtL .dropdown-item:active {
  background-color: transparent;
}
.cid-uup0ZzGTtL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup0ZzGTtL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup0ZzGTtL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup0ZzGTtL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup0ZzGTtL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup0ZzGTtL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup0ZzGTtL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup0ZzGTtL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup0ZzGTtL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup0ZzGTtL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup0ZzGTtL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup0ZzGTtL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup0ZzGTtL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup0ZzGTtL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup0ZzGTtL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup0ZzGTtL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup0ZzGTtL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup0ZzGTtL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup0ZzGTtL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup0ZzGTtL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup0ZzGTtL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup0ZzGTtL .navbar {
    height: 70px;
  }
  .cid-uup0ZzGTtL .navbar.opened {
    height: auto;
  }
  .cid-uup0ZzGTtL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup0ZAtYxC {
  background-image: url("../../../assets/images/watermelons-640x427.jpg");
}
.cid-uup0ZAtYxC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup0ZAtYxC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup0ZAtYxC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup0ZAtYxC .mbr-text,
.cid-uup0ZAtYxC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup0ZAtYxC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup0ZB4Vyh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup0ZB4Vyh img,
.cid-uup0ZB4Vyh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup0ZB4Vyh .item:focus,
.cid-uup0ZB4Vyh span:focus {
  outline: none;
}
.cid-uup0ZB4Vyh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup0ZB4Vyh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup0ZB4Vyh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup0ZB4Vyh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup0ZB4Vyh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup0ZB4Vyh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup0ZB4Vyh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup0ZB4Vyh .mbr-section-title {
  color: #ffffff;
}
.cid-uup0ZB4Vyh .mbr-text,
.cid-uup0ZB4Vyh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup0ZB4Vyh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup0ZB4Vyh .item-subtitle {
  text-align: left;
}
.cid-uup0ZB4Vyh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYjFvMZOs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYjFvMZOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYjFvMZOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYjFvMZOs .mbr-section-title {
  color: #ffffff;
}
.cid-uZYjFvMZOs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtZm2nU8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtZm2nU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtZm2nU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtZm2nU8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtZm2nU8 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtYlhnr0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtYlhnr0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtYlhnr0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtYlhnr0 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtYlhnr0 .number {
  color: #ffffff;
}
.cid-uYNtYlhnr0 .period {
  display: block;
}
.cid-uYNtYlhnr0 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtYlhnr0 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtYlhnr0 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtYlhnr0 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtYlhnr0 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtYlhnr0 .mbr-text {
  color: #ffffff;
}
.cid-uYNtYlhnr0 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtYlhnr0 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtYlhnr0 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtYlhnr0 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup0ZD9FtM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup0ZD9FtM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup0ZD9FtM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup0ZD9FtM .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup0ZD9FtM .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup0ZD9FtM .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup0ZD9FtM .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup0ZD9FtM .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup0ZD9FtM .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup0ZD9FtM .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup0ZD9FtM .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup0ZD9FtM .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup0ZD9FtM [class^="socicon-"]:before,
.cid-uup0ZD9FtM [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup0ZD9FtM .mbr-section-title,
.cid-uup0ZD9FtM .mbr-social-likes {
  color: #ffffff;
}
.cid-uup0ZDOV8m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup0ZDOV8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup0ZDOV8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup0ZDOV8m .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup0ZDOV8m .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup0ZDOV8m .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup0ZDOV8m .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup0ZDOV8m .mbr-text {
  color: #ffffff;
}
.cid-uup0ZDOV8m .card-title {
  color: #ffffff;
}
.cid-uup0ZDOV8m .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup0ZDOV8m .mbr-section-title {
  color: #ffffff;
}
.cid-uup0ZDOV8m .link {
  color: #4479d9;
}
.cid-uup0ZExsdk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup0ZExsdk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup0ZExsdk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup0ZExsdk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup0ZExsdk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup0ZExsdk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup0ZExsdk .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup0ZExsdk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup0ZExsdk .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup2xjuRkM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup2xjuRkM nav.navbar {
  position: fixed;
}
.cid-uup2xjuRkM .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-uup2xjuRkM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup2xjuRkM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup2xjuRkM .dropdown-item:hover,
.cid-uup2xjuRkM .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup2xjuRkM .dropdown-item:hover span {
  color: white;
}
.cid-uup2xjuRkM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup2xjuRkM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup2xjuRkM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup2xjuRkM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup2xjuRkM .nav-link {
  position: relative;
}
.cid-uup2xjuRkM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup2xjuRkM .container {
    flex-wrap: wrap;
  }
}
.cid-uup2xjuRkM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup2xjuRkM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup2xjuRkM .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup2xjuRkM .dropdown-menu,
.cid-uup2xjuRkM .navbar.opened {
  background: #000000 !important;
}
.cid-uup2xjuRkM .nav-item:focus,
.cid-uup2xjuRkM .nav-link:focus {
  outline: none;
}
.cid-uup2xjuRkM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup2xjuRkM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup2xjuRkM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup2xjuRkM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup2xjuRkM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup2xjuRkM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup2xjuRkM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup2xjuRkM .navbar.opened {
  transition: all 0.3s;
}
.cid-uup2xjuRkM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup2xjuRkM .navbar .navbar-logo img {
  width: auto;
}
.cid-uup2xjuRkM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup2xjuRkM .navbar.collapsed {
  justify-content: center;
}
.cid-uup2xjuRkM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup2xjuRkM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup2xjuRkM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup2xjuRkM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup2xjuRkM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup2xjuRkM .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-uup2xjuRkM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup2xjuRkM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup2xjuRkM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup2xjuRkM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup2xjuRkM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup2xjuRkM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup2xjuRkM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup2xjuRkM .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-uup2xjuRkM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup2xjuRkM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup2xjuRkM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup2xjuRkM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup2xjuRkM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup2xjuRkM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup2xjuRkM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup2xjuRkM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup2xjuRkM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup2xjuRkM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup2xjuRkM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup2xjuRkM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup2xjuRkM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup2xjuRkM .dropdown-item.active,
.cid-uup2xjuRkM .dropdown-item:active {
  background-color: transparent;
}
.cid-uup2xjuRkM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup2xjuRkM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup2xjuRkM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup2xjuRkM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup2xjuRkM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup2xjuRkM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup2xjuRkM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup2xjuRkM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup2xjuRkM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup2xjuRkM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup2xjuRkM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup2xjuRkM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup2xjuRkM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup2xjuRkM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup2xjuRkM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup2xjuRkM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup2xjuRkM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup2xjuRkM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup2xjuRkM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup2xjuRkM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup2xjuRkM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup2xjuRkM .navbar {
    height: 70px;
  }
  .cid-uup2xjuRkM .navbar.opened {
    height: auto;
  }
  .cid-uup2xjuRkM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup2xmbEUb {
  background-image: url("../../../assets/images/muskmelon-plant.webp");
}
.cid-uup2xmbEUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup2xmbEUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup2xmbEUb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup2xmbEUb .mbr-text,
.cid-uup2xmbEUb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup2xmbEUb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup2xmOyq1 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup2xmOyq1 img,
.cid-uup2xmOyq1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup2xmOyq1 .item:focus,
.cid-uup2xmOyq1 span:focus {
  outline: none;
}
.cid-uup2xmOyq1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup2xmOyq1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup2xmOyq1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup2xmOyq1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup2xmOyq1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup2xmOyq1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup2xmOyq1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup2xmOyq1 .mbr-section-title {
  color: #ffffff;
}
.cid-uup2xmOyq1 .mbr-text,
.cid-uup2xmOyq1 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup2xmOyq1 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup2xmOyq1 .item-subtitle {
  text-align: left;
}
.cid-uup2xmOyq1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYjC4a7vY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYjC4a7vY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYjC4a7vY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYjC4a7vY .mbr-section-title {
  color: #ffffff;
}
.cid-uZYjC4a7vY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtTjOQPm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtTjOQPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtTjOQPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtTjOQPm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtTjOQPm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtSjqBnr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtSjqBnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtSjqBnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtSjqBnr .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtSjqBnr .number {
  color: #ffffff;
}
.cid-uYNtSjqBnr .period {
  display: block;
}
.cid-uYNtSjqBnr .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtSjqBnr .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtSjqBnr .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtSjqBnr .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtSjqBnr .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtSjqBnr .mbr-text {
  color: #ffffff;
}
.cid-uYNtSjqBnr .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtSjqBnr .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtSjqBnr .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtSjqBnr .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup2xoPINr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup2xoPINr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup2xoPINr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup2xoPINr .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup2xoPINr .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup2xoPINr .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup2xoPINr .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup2xoPINr .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup2xoPINr .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup2xoPINr .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup2xoPINr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup2xoPINr .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup2xoPINr [class^="socicon-"]:before,
.cid-uup2xoPINr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup2xoPINr .mbr-section-title,
.cid-uup2xoPINr .mbr-social-likes {
  color: #ffffff;
}
.cid-uup2xprwcY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup2xprwcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup2xprwcY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup2xprwcY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup2xprwcY .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup2xprwcY .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup2xprwcY .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup2xprwcY .mbr-text {
  color: #ffffff;
}
.cid-uup2xprwcY .card-title {
  color: #ffffff;
}
.cid-uup2xprwcY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup2xprwcY .mbr-section-title {
  color: #ffffff;
}
.cid-uup2xprwcY .link {
  color: #4479d9;
}
.cid-uup2xqhPja {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup2xqhPja .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup2xqhPja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup2xqhPja .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup2xqhPja .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup2xqhPja .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup2xqhPja .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup2xqhPja div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup2xqhPja .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup3lIj9cb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup3lIj9cb nav.navbar {
  position: fixed;
}
.cid-uup3lIj9cb .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-uup3lIj9cb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup3lIj9cb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup3lIj9cb .dropdown-item:hover,
.cid-uup3lIj9cb .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup3lIj9cb .dropdown-item:hover span {
  color: white;
}
.cid-uup3lIj9cb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup3lIj9cb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup3lIj9cb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup3lIj9cb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup3lIj9cb .nav-link {
  position: relative;
}
.cid-uup3lIj9cb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup3lIj9cb .container {
    flex-wrap: wrap;
  }
}
.cid-uup3lIj9cb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup3lIj9cb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup3lIj9cb .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup3lIj9cb .dropdown-menu,
.cid-uup3lIj9cb .navbar.opened {
  background: #000000 !important;
}
.cid-uup3lIj9cb .nav-item:focus,
.cid-uup3lIj9cb .nav-link:focus {
  outline: none;
}
.cid-uup3lIj9cb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup3lIj9cb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup3lIj9cb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup3lIj9cb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup3lIj9cb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup3lIj9cb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup3lIj9cb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup3lIj9cb .navbar.opened {
  transition: all 0.3s;
}
.cid-uup3lIj9cb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup3lIj9cb .navbar .navbar-logo img {
  width: auto;
}
.cid-uup3lIj9cb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup3lIj9cb .navbar.collapsed {
  justify-content: center;
}
.cid-uup3lIj9cb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup3lIj9cb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup3lIj9cb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup3lIj9cb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup3lIj9cb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup3lIj9cb .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-uup3lIj9cb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup3lIj9cb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup3lIj9cb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup3lIj9cb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup3lIj9cb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup3lIj9cb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup3lIj9cb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup3lIj9cb .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-uup3lIj9cb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup3lIj9cb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup3lIj9cb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup3lIj9cb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup3lIj9cb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup3lIj9cb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup3lIj9cb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup3lIj9cb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup3lIj9cb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup3lIj9cb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup3lIj9cb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup3lIj9cb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup3lIj9cb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup3lIj9cb .dropdown-item.active,
.cid-uup3lIj9cb .dropdown-item:active {
  background-color: transparent;
}
.cid-uup3lIj9cb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup3lIj9cb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup3lIj9cb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup3lIj9cb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup3lIj9cb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup3lIj9cb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup3lIj9cb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup3lIj9cb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup3lIj9cb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup3lIj9cb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup3lIj9cb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup3lIj9cb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup3lIj9cb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup3lIj9cb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup3lIj9cb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup3lIj9cb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup3lIj9cb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup3lIj9cb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup3lIj9cb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup3lIj9cb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup3lIj9cb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup3lIj9cb .navbar {
    height: 70px;
  }
  .cid-uup3lIj9cb .navbar.opened {
    height: auto;
  }
  .cid-uup3lIj9cb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup3lJ4yw9 {
  background-image: url("../../../assets/images/watermelon-3620723-1280-1280x854.webp");
}
.cid-uup3lJ4yw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup3lJ4yw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup3lJ4yw9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup3lJ4yw9 .mbr-text,
.cid-uup3lJ4yw9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup3lJ4yw9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup3lKlZSl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup3lKlZSl img,
.cid-uup3lKlZSl .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup3lKlZSl .item:focus,
.cid-uup3lKlZSl span:focus {
  outline: none;
}
.cid-uup3lKlZSl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup3lKlZSl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup3lKlZSl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup3lKlZSl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup3lKlZSl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup3lKlZSl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup3lKlZSl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup3lKlZSl .mbr-section-title {
  color: #ffffff;
}
.cid-uup3lKlZSl .mbr-text,
.cid-uup3lKlZSl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup3lKlZSl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup3lKlZSl .item-subtitle {
  text-align: center;
}
.cid-uup3lKlZSl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYjyxClGX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYjyxClGX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYjyxClGX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYjyxClGX .mbr-section-title {
  color: #ffffff;
}
.cid-uZYjyxClGX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtMA9wzO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtMA9wzO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtMA9wzO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtMA9wzO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtMA9wzO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtL5BQnF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtL5BQnF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtL5BQnF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtL5BQnF .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtL5BQnF .number {
  color: #ffffff;
}
.cid-uYNtL5BQnF .period {
  display: block;
}
.cid-uYNtL5BQnF .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtL5BQnF .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtL5BQnF .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtL5BQnF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtL5BQnF .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtL5BQnF .mbr-text {
  color: #ffffff;
}
.cid-uYNtL5BQnF .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtL5BQnF .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtL5BQnF .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtL5BQnF .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup3lLHyvI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup3lLHyvI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup3lLHyvI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup3lLHyvI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup3lLHyvI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup3lLHyvI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup3lLHyvI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup3lLHyvI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup3lLHyvI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup3lLHyvI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup3lLHyvI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup3lLHyvI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup3lLHyvI [class^="socicon-"]:before,
.cid-uup3lLHyvI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup3lLHyvI .mbr-section-title,
.cid-uup3lLHyvI .mbr-social-likes {
  color: #ffffff;
}
.cid-uup3lMjqEA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup3lMjqEA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup3lMjqEA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup3lMjqEA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup3lMjqEA .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup3lMjqEA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup3lMjqEA .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup3lMjqEA .mbr-text {
  color: #ffffff;
}
.cid-uup3lMjqEA .card-title {
  color: #ffffff;
}
.cid-uup3lMjqEA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup3lMjqEA .mbr-section-title {
  color: #ffffff;
}
.cid-uup3lMjqEA .link {
  color: #4479d9;
}
.cid-uup3lN2Ia7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup3lN2Ia7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup3lN2Ia7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup3lN2Ia7 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup3lN2Ia7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup3lN2Ia7 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup3lN2Ia7 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup3lN2Ia7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup3lN2Ia7 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup52BJhbs {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup52BJhbs nav.navbar {
  position: fixed;
}
.cid-uup52BJhbs .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-uup52BJhbs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup52BJhbs .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup52BJhbs .dropdown-item:hover,
.cid-uup52BJhbs .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup52BJhbs .dropdown-item:hover span {
  color: white;
}
.cid-uup52BJhbs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup52BJhbs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup52BJhbs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup52BJhbs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup52BJhbs .nav-link {
  position: relative;
}
.cid-uup52BJhbs .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup52BJhbs .container {
    flex-wrap: wrap;
  }
}
.cid-uup52BJhbs .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup52BJhbs .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup52BJhbs .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup52BJhbs .dropdown-menu,
.cid-uup52BJhbs .navbar.opened {
  background: #000000 !important;
}
.cid-uup52BJhbs .nav-item:focus,
.cid-uup52BJhbs .nav-link:focus {
  outline: none;
}
.cid-uup52BJhbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup52BJhbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup52BJhbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup52BJhbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup52BJhbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup52BJhbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup52BJhbs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup52BJhbs .navbar.opened {
  transition: all 0.3s;
}
.cid-uup52BJhbs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup52BJhbs .navbar .navbar-logo img {
  width: auto;
}
.cid-uup52BJhbs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup52BJhbs .navbar.collapsed {
  justify-content: center;
}
.cid-uup52BJhbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup52BJhbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup52BJhbs .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup52BJhbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup52BJhbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup52BJhbs .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-uup52BJhbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup52BJhbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup52BJhbs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup52BJhbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup52BJhbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup52BJhbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup52BJhbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup52BJhbs .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-uup52BJhbs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup52BJhbs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup52BJhbs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup52BJhbs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup52BJhbs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup52BJhbs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup52BJhbs .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup52BJhbs .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup52BJhbs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup52BJhbs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup52BJhbs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup52BJhbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup52BJhbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup52BJhbs .dropdown-item.active,
.cid-uup52BJhbs .dropdown-item:active {
  background-color: transparent;
}
.cid-uup52BJhbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup52BJhbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup52BJhbs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup52BJhbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup52BJhbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup52BJhbs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup52BJhbs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup52BJhbs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup52BJhbs button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup52BJhbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup52BJhbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup52BJhbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup52BJhbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup52BJhbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup52BJhbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup52BJhbs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup52BJhbs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup52BJhbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup52BJhbs .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup52BJhbs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup52BJhbs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup52BJhbs .navbar {
    height: 70px;
  }
  .cid-uup52BJhbs .navbar.opened {
    height: auto;
  }
  .cid-uup52BJhbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup52CuSFl {
  background-image: url("../../../assets/images/mountain-sweet-yellow-watermelon-banner.webp");
}
.cid-uup52CuSFl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup52CuSFl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup52CuSFl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup52CuSFl .mbr-text,
.cid-uup52CuSFl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup52CuSFl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup52DLtpw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup52DLtpw img,
.cid-uup52DLtpw .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup52DLtpw .item:focus,
.cid-uup52DLtpw span:focus {
  outline: none;
}
.cid-uup52DLtpw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup52DLtpw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup52DLtpw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup52DLtpw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup52DLtpw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup52DLtpw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup52DLtpw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup52DLtpw .mbr-section-title {
  color: #ffffff;
}
.cid-uup52DLtpw .mbr-text,
.cid-uup52DLtpw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup52DLtpw .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup52DLtpw .item-subtitle {
  text-align: center;
}
.cid-uup52DLtpw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYja082Or {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYja082Or .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYja082Or .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYja082Or .mbr-section-title {
  color: #ffffff;
}
.cid-uZYja082Or .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtGI25xR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNtGI25xR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtGI25xR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtGI25xR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNtGI25xR .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtF2sHQO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtF2sHQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtF2sHQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtF2sHQO .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtF2sHQO .number {
  color: #ffffff;
}
.cid-uYNtF2sHQO .period {
  display: block;
}
.cid-uYNtF2sHQO .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtF2sHQO .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtF2sHQO .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtF2sHQO .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtF2sHQO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtF2sHQO .mbr-text {
  color: #ffffff;
}
.cid-uYNtF2sHQO .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtF2sHQO .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtF2sHQO .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtF2sHQO .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup52F6ZTO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup52F6ZTO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup52F6ZTO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup52F6ZTO .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup52F6ZTO .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup52F6ZTO .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup52F6ZTO .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup52F6ZTO .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup52F6ZTO .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup52F6ZTO .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup52F6ZTO .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup52F6ZTO .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup52F6ZTO [class^="socicon-"]:before,
.cid-uup52F6ZTO [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup52F6ZTO .mbr-section-title,
.cid-uup52F6ZTO .mbr-social-likes {
  color: #ffffff;
}
.cid-uup52FIohp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup52FIohp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup52FIohp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup52FIohp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup52FIohp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup52FIohp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup52FIohp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup52FIohp .mbr-text {
  color: #ffffff;
}
.cid-uup52FIohp .card-title {
  color: #ffffff;
}
.cid-uup52FIohp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup52FIohp .mbr-section-title {
  color: #ffffff;
}
.cid-uup52FIohp .link {
  color: #4479d9;
}
.cid-uup52GvNU0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup52GvNU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup52GvNU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup52GvNU0 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup52GvNU0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup52GvNU0 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup52GvNU0 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup52GvNU0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup52GvNU0 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup7tCpMoD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup7tCpMoD nav.navbar {
  position: fixed;
}
.cid-uup7tCpMoD .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-uup7tCpMoD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup7tCpMoD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup7tCpMoD .dropdown-item:hover,
.cid-uup7tCpMoD .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup7tCpMoD .dropdown-item:hover span {
  color: white;
}
.cid-uup7tCpMoD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup7tCpMoD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup7tCpMoD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup7tCpMoD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup7tCpMoD .nav-link {
  position: relative;
}
.cid-uup7tCpMoD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup7tCpMoD .container {
    flex-wrap: wrap;
  }
}
.cid-uup7tCpMoD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup7tCpMoD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup7tCpMoD .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup7tCpMoD .dropdown-menu,
.cid-uup7tCpMoD .navbar.opened {
  background: #000000 !important;
}
.cid-uup7tCpMoD .nav-item:focus,
.cid-uup7tCpMoD .nav-link:focus {
  outline: none;
}
.cid-uup7tCpMoD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup7tCpMoD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup7tCpMoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup7tCpMoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup7tCpMoD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup7tCpMoD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup7tCpMoD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup7tCpMoD .navbar.opened {
  transition: all 0.3s;
}
.cid-uup7tCpMoD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup7tCpMoD .navbar .navbar-logo img {
  width: auto;
}
.cid-uup7tCpMoD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup7tCpMoD .navbar.collapsed {
  justify-content: center;
}
.cid-uup7tCpMoD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup7tCpMoD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup7tCpMoD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup7tCpMoD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup7tCpMoD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup7tCpMoD .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-uup7tCpMoD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup7tCpMoD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup7tCpMoD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup7tCpMoD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup7tCpMoD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup7tCpMoD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup7tCpMoD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup7tCpMoD .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-uup7tCpMoD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup7tCpMoD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup7tCpMoD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup7tCpMoD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup7tCpMoD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup7tCpMoD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup7tCpMoD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup7tCpMoD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup7tCpMoD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup7tCpMoD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup7tCpMoD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup7tCpMoD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup7tCpMoD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup7tCpMoD .dropdown-item.active,
.cid-uup7tCpMoD .dropdown-item:active {
  background-color: transparent;
}
.cid-uup7tCpMoD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup7tCpMoD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup7tCpMoD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup7tCpMoD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup7tCpMoD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup7tCpMoD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup7tCpMoD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup7tCpMoD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup7tCpMoD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup7tCpMoD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup7tCpMoD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup7tCpMoD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup7tCpMoD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup7tCpMoD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup7tCpMoD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup7tCpMoD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup7tCpMoD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup7tCpMoD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup7tCpMoD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup7tCpMoD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup7tCpMoD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup7tCpMoD .navbar {
    height: 70px;
  }
  .cid-uup7tCpMoD .navbar.opened {
    height: auto;
  }
  .cid-uup7tCpMoD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup7tDcZkr {
  background-image: url("../../../assets/images/20230725-184729-2000x2667.webp");
}
.cid-uup7tDcZkr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup7tDcZkr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup7tDcZkr .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup7tDcZkr .mbr-text,
.cid-uup7tDcZkr .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup7tDcZkr .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup7tDNuSb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup7tDNuSb img,
.cid-uup7tDNuSb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup7tDNuSb .item:focus,
.cid-uup7tDNuSb span:focus {
  outline: none;
}
.cid-uup7tDNuSb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup7tDNuSb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup7tDNuSb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup7tDNuSb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup7tDNuSb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup7tDNuSb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup7tDNuSb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup7tDNuSb .mbr-section-title {
  color: #ffffff;
}
.cid-uup7tDNuSb .mbr-text,
.cid-uup7tDNuSb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup7tDNuSb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup7tDNuSb .item-subtitle {
  text-align: left;
}
.cid-uup7tDNuSb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYiRXUUfp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYiRXUUfp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYiRXUUfp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYiRXUUfp .mbr-section-title {
  color: #ffffff;
}
.cid-uZYiRXUUfp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNti578Pl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNti578Pl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNti578Pl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNti578Pl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNti578Pl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtdWNqcF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNtdWNqcF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNtdWNqcF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNtdWNqcF .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNtdWNqcF .number {
  color: #ffffff;
}
.cid-uYNtdWNqcF .period {
  display: block;
}
.cid-uYNtdWNqcF .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNtdWNqcF .period {
    font-size: 0.8rem;
  }
}
.cid-uYNtdWNqcF .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNtdWNqcF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNtdWNqcF .mbr-section-title {
  color: #ffffff;
}
.cid-uYNtdWNqcF .mbr-text {
  color: #ffffff;
}
.cid-uYNtdWNqcF .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNtdWNqcF .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNtdWNqcF .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNtdWNqcF .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup7tF8ml1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup7tF8ml1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup7tF8ml1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup7tF8ml1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup7tF8ml1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup7tF8ml1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup7tF8ml1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup7tF8ml1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup7tF8ml1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup7tF8ml1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup7tF8ml1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup7tF8ml1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup7tF8ml1 [class^="socicon-"]:before,
.cid-uup7tF8ml1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup7tF8ml1 .mbr-section-title,
.cid-uup7tF8ml1 .mbr-social-likes {
  color: #ffffff;
}
.cid-uup7tFJyMU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup7tFJyMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup7tFJyMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup7tFJyMU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup7tFJyMU .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup7tFJyMU .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup7tFJyMU .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup7tFJyMU .mbr-text {
  color: #ffffff;
}
.cid-uup7tFJyMU .card-title {
  color: #ffffff;
}
.cid-uup7tFJyMU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup7tFJyMU .mbr-section-title {
  color: #ffffff;
}
.cid-uup7tFJyMU .link {
  color: #4479d9;
}
.cid-uup7tGqxPM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup7tGqxPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup7tGqxPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup7tGqxPM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup7tGqxPM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup7tGqxPM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup7tGqxPM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup7tGqxPM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup7tGqxPM .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uup8AxIY3i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uup8AxIY3i nav.navbar {
  position: fixed;
}
.cid-uup8AxIY3i .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-uup8AxIY3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uup8AxIY3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uup8AxIY3i .dropdown-item:hover,
.cid-uup8AxIY3i .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uup8AxIY3i .dropdown-item:hover span {
  color: white;
}
.cid-uup8AxIY3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uup8AxIY3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uup8AxIY3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uup8AxIY3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uup8AxIY3i .nav-link {
  position: relative;
}
.cid-uup8AxIY3i .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup8AxIY3i .container {
    flex-wrap: wrap;
  }
}
.cid-uup8AxIY3i .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uup8AxIY3i .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uup8AxIY3i .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uup8AxIY3i .dropdown-menu,
.cid-uup8AxIY3i .navbar.opened {
  background: #000000 !important;
}
.cid-uup8AxIY3i .nav-item:focus,
.cid-uup8AxIY3i .nav-link:focus {
  outline: none;
}
.cid-uup8AxIY3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uup8AxIY3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uup8AxIY3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uup8AxIY3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uup8AxIY3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uup8AxIY3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uup8AxIY3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uup8AxIY3i .navbar.opened {
  transition: all 0.3s;
}
.cid-uup8AxIY3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uup8AxIY3i .navbar .navbar-logo img {
  width: auto;
}
.cid-uup8AxIY3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uup8AxIY3i .navbar.collapsed {
  justify-content: center;
}
.cid-uup8AxIY3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uup8AxIY3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uup8AxIY3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uup8AxIY3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uup8AxIY3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uup8AxIY3i .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-uup8AxIY3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uup8AxIY3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uup8AxIY3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uup8AxIY3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uup8AxIY3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uup8AxIY3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uup8AxIY3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uup8AxIY3i .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-uup8AxIY3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uup8AxIY3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uup8AxIY3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uup8AxIY3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uup8AxIY3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uup8AxIY3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uup8AxIY3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uup8AxIY3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uup8AxIY3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uup8AxIY3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uup8AxIY3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uup8AxIY3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uup8AxIY3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uup8AxIY3i .dropdown-item.active,
.cid-uup8AxIY3i .dropdown-item:active {
  background-color: transparent;
}
.cid-uup8AxIY3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uup8AxIY3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uup8AxIY3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uup8AxIY3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uup8AxIY3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uup8AxIY3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uup8AxIY3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uup8AxIY3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uup8AxIY3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uup8AxIY3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uup8AxIY3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uup8AxIY3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup8AxIY3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uup8AxIY3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uup8AxIY3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup8AxIY3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uup8AxIY3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uup8AxIY3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uup8AxIY3i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uup8AxIY3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uup8AxIY3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uup8AxIY3i .navbar {
    height: 70px;
  }
  .cid-uup8AxIY3i .navbar.opened {
    height: auto;
  }
  .cid-uup8AxIY3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uup8Ayve4m {
  background-image: url("../../../assets/images/emerald-green-okra.webp");
}
.cid-uup8Ayve4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup8Ayve4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup8Ayve4m .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uup8Ayve4m .mbr-text,
.cid-uup8Ayve4m .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uup8Ayve4m .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uup8Az5EAX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uup8Az5EAX img,
.cid-uup8Az5EAX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uup8Az5EAX .item:focus,
.cid-uup8Az5EAX span:focus {
  outline: none;
}
.cid-uup8Az5EAX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uup8Az5EAX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uup8Az5EAX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uup8Az5EAX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uup8Az5EAX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uup8Az5EAX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uup8Az5EAX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uup8Az5EAX .mbr-section-title {
  color: #ffffff;
}
.cid-uup8Az5EAX .mbr-text,
.cid-uup8Az5EAX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uup8Az5EAX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uup8Az5EAX .item-subtitle {
  text-align: left;
}
.cid-uup8Az5EAX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYixwhqe3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYixwhqe3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYixwhqe3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYixwhqe3 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYixwhqe3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNt9vkRh9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNt9vkRh9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNt9vkRh9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNt9vkRh9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNt9vkRh9 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNt8k4jFY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNt8k4jFY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNt8k4jFY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNt8k4jFY .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNt8k4jFY .number {
  color: #ffffff;
}
.cid-uYNt8k4jFY .period {
  display: block;
}
.cid-uYNt8k4jFY .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNt8k4jFY .period {
    font-size: 0.8rem;
  }
}
.cid-uYNt8k4jFY .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNt8k4jFY .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNt8k4jFY .mbr-section-title {
  color: #ffffff;
}
.cid-uYNt8k4jFY .mbr-text {
  color: #ffffff;
}
.cid-uYNt8k4jFY .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNt8k4jFY .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNt8k4jFY .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNt8k4jFY .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uup8AAokFW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uup8AAokFW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup8AAokFW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup8AAokFW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uup8AAokFW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uup8AAokFW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uup8AAokFW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uup8AAokFW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uup8AAokFW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uup8AAokFW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uup8AAokFW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uup8AAokFW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uup8AAokFW [class^="socicon-"]:before,
.cid-uup8AAokFW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uup8AAokFW .mbr-section-title,
.cid-uup8AAokFW .mbr-social-likes {
  color: #ffffff;
}
.cid-uup8AAZiM2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uup8AAZiM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup8AAZiM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup8AAZiM2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uup8AAZiM2 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uup8AAZiM2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uup8AAZiM2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uup8AAZiM2 .mbr-text {
  color: #ffffff;
}
.cid-uup8AAZiM2 .card-title {
  color: #ffffff;
}
.cid-uup8AAZiM2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uup8AAZiM2 .mbr-section-title {
  color: #ffffff;
}
.cid-uup8AAZiM2 .link {
  color: #4479d9;
}
.cid-uup8ABLmbY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uup8ABLmbY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uup8ABLmbY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uup8ABLmbY .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uup8ABLmbY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uup8ABLmbY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uup8ABLmbY .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uup8ABLmbY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uup8ABLmbY .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLkj7OxtJO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLkj7OxtJO nav.navbar {
  position: fixed;
}
.cid-tLkj7OxtJO .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-tLkj7OxtJO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLkj7OxtJO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLkj7OxtJO .dropdown-item:hover,
.cid-tLkj7OxtJO .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLkj7OxtJO .dropdown-item:hover span {
  color: white;
}
.cid-tLkj7OxtJO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLkj7OxtJO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLkj7OxtJO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLkj7OxtJO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLkj7OxtJO .nav-link {
  position: relative;
}
.cid-tLkj7OxtJO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLkj7OxtJO .container {
    flex-wrap: wrap;
  }
}
.cid-tLkj7OxtJO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLkj7OxtJO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLkj7OxtJO .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLkj7OxtJO .dropdown-menu,
.cid-tLkj7OxtJO .navbar.opened {
  background: #000000 !important;
}
.cid-tLkj7OxtJO .nav-item:focus,
.cid-tLkj7OxtJO .nav-link:focus {
  outline: none;
}
.cid-tLkj7OxtJO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLkj7OxtJO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLkj7OxtJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLkj7OxtJO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLkj7OxtJO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLkj7OxtJO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLkj7OxtJO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLkj7OxtJO .navbar.opened {
  transition: all 0.3s;
}
.cid-tLkj7OxtJO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLkj7OxtJO .navbar .navbar-logo img {
  width: auto;
}
.cid-tLkj7OxtJO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLkj7OxtJO .navbar.collapsed {
  justify-content: center;
}
.cid-tLkj7OxtJO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLkj7OxtJO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLkj7OxtJO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLkj7OxtJO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLkj7OxtJO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLkj7OxtJO .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-tLkj7OxtJO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLkj7OxtJO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLkj7OxtJO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLkj7OxtJO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLkj7OxtJO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLkj7OxtJO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLkj7OxtJO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLkj7OxtJO .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-tLkj7OxtJO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLkj7OxtJO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLkj7OxtJO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLkj7OxtJO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLkj7OxtJO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLkj7OxtJO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLkj7OxtJO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLkj7OxtJO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLkj7OxtJO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLkj7OxtJO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLkj7OxtJO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLkj7OxtJO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLkj7OxtJO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLkj7OxtJO .dropdown-item.active,
.cid-tLkj7OxtJO .dropdown-item:active {
  background-color: transparent;
}
.cid-tLkj7OxtJO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLkj7OxtJO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLkj7OxtJO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLkj7OxtJO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLkj7OxtJO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLkj7OxtJO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLkj7OxtJO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLkj7OxtJO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLkj7OxtJO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLkj7OxtJO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLkj7OxtJO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLkj7OxtJO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLkj7OxtJO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLkj7OxtJO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLkj7OxtJO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLkj7OxtJO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLkj7OxtJO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLkj7OxtJO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLkj7OxtJO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLkj7OxtJO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLkj7OxtJO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLkj7OxtJO .navbar {
    height: 70px;
  }
  .cid-tLkj7OxtJO .navbar.opened {
    height: auto;
  }
  .cid-tLkj7OxtJO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yUMfnMTO {
  background-image: url("../../../assets/images/bunching-onion.webp");
}
.cid-u2yUMfnMTO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yUMfnMTO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yUMfnMTO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUMfnMTO .mbr-text,
.cid-u2yUMfnMTO .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUMfnMTO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLkjn23tVM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLkjn23tVM img,
.cid-tLkjn23tVM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLkjn23tVM .item:focus,
.cid-tLkjn23tVM span:focus {
  outline: none;
}
.cid-tLkjn23tVM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLkjn23tVM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLkjn23tVM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLkjn23tVM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLkjn23tVM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLkjn23tVM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLkjn23tVM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLkjn23tVM .mbr-section-title {
  color: #ffffff;
}
.cid-tLkjn23tVM .mbr-text,
.cid-tLkjn23tVM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLkjn23tVM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLkjn23tVM .item-subtitle {
  text-align: left;
}
.cid-tLkjn23tVM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYoBpxFO6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYoBpxFO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYoBpxFO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYoBpxFO6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYoBpxFO6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsX82Dq0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsX82Dq0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsX82Dq0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsX82Dq0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsX82Dq0 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsW2bTc9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsW2bTc9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsW2bTc9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsW2bTc9 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsW2bTc9 .number {
  color: #ffffff;
}
.cid-uYNsW2bTc9 .period {
  display: block;
}
.cid-uYNsW2bTc9 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsW2bTc9 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsW2bTc9 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsW2bTc9 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsW2bTc9 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsW2bTc9 .mbr-text {
  color: #ffffff;
}
.cid-uYNsW2bTc9 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsW2bTc9 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsW2bTc9 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsW2bTc9 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yUKYy28Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yUKYy28Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yUKYy28Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yUKYy28Z .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yUKYy28Z .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yUKYy28Z .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yUKYy28Z .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yUKYy28Z .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yUKYy28Z .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yUKYy28Z .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yUKYy28Z .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yUKYy28Z .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yUKYy28Z [class^="socicon-"]:before,
.cid-u2yUKYy28Z [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yUKYy28Z .mbr-section-title,
.cid-u2yUKYy28Z .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nKU8OPp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nKU8OPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nKU8OPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nKU8OPp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nKU8OPp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nKU8OPp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nKU8OPp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nKU8OPp .mbr-text {
  color: #ffffff;
}
.cid-u39nKU8OPp .card-title {
  color: #ffffff;
}
.cid-u39nKU8OPp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nKU8OPp .mbr-section-title {
  color: #ffffff;
}
.cid-u39nKU8OPp .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-tLlkNg5Dtk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tLlkNg5Dtk nav.navbar {
  position: fixed;
}
.cid-tLlkNg5Dtk .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-tLlkNg5Dtk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tLlkNg5Dtk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tLlkNg5Dtk .dropdown-item:hover,
.cid-tLlkNg5Dtk .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-tLlkNg5Dtk .dropdown-item:hover span {
  color: white;
}
.cid-tLlkNg5Dtk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tLlkNg5Dtk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tLlkNg5Dtk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tLlkNg5Dtk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tLlkNg5Dtk .nav-link {
  position: relative;
}
.cid-tLlkNg5Dtk .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlkNg5Dtk .container {
    flex-wrap: wrap;
  }
}
.cid-tLlkNg5Dtk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tLlkNg5Dtk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tLlkNg5Dtk .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tLlkNg5Dtk .dropdown-menu,
.cid-tLlkNg5Dtk .navbar.opened {
  background: #000000 !important;
}
.cid-tLlkNg5Dtk .nav-item:focus,
.cid-tLlkNg5Dtk .nav-link:focus {
  outline: none;
}
.cid-tLlkNg5Dtk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tLlkNg5Dtk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tLlkNg5Dtk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tLlkNg5Dtk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tLlkNg5Dtk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tLlkNg5Dtk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tLlkNg5Dtk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-tLlkNg5Dtk .navbar.opened {
  transition: all 0.3s;
}
.cid-tLlkNg5Dtk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tLlkNg5Dtk .navbar .navbar-logo img {
  width: auto;
}
.cid-tLlkNg5Dtk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tLlkNg5Dtk .navbar.collapsed {
  justify-content: center;
}
.cid-tLlkNg5Dtk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tLlkNg5Dtk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tLlkNg5Dtk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tLlkNg5Dtk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tLlkNg5Dtk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tLlkNg5Dtk .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-tLlkNg5Dtk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tLlkNg5Dtk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tLlkNg5Dtk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tLlkNg5Dtk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tLlkNg5Dtk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tLlkNg5Dtk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tLlkNg5Dtk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tLlkNg5Dtk .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-tLlkNg5Dtk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tLlkNg5Dtk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tLlkNg5Dtk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tLlkNg5Dtk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tLlkNg5Dtk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tLlkNg5Dtk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tLlkNg5Dtk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tLlkNg5Dtk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tLlkNg5Dtk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tLlkNg5Dtk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tLlkNg5Dtk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tLlkNg5Dtk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tLlkNg5Dtk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tLlkNg5Dtk .dropdown-item.active,
.cid-tLlkNg5Dtk .dropdown-item:active {
  background-color: transparent;
}
.cid-tLlkNg5Dtk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tLlkNg5Dtk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tLlkNg5Dtk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tLlkNg5Dtk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tLlkNg5Dtk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tLlkNg5Dtk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tLlkNg5Dtk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tLlkNg5Dtk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tLlkNg5Dtk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tLlkNg5Dtk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tLlkNg5Dtk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tLlkNg5Dtk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlkNg5Dtk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tLlkNg5Dtk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tLlkNg5Dtk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlkNg5Dtk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tLlkNg5Dtk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tLlkNg5Dtk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tLlkNg5Dtk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tLlkNg5Dtk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tLlkNg5Dtk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tLlkNg5Dtk .navbar {
    height: 70px;
  }
  .cid-tLlkNg5Dtk .navbar.opened {
    height: auto;
  }
  .cid-tLlkNg5Dtk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2yUaprdQ7 {
  background-image: url("../../../assets/images/purple-hull-peas-banner.webp");
}
.cid-u2yUaprdQ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yUaprdQ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yUaprdQ7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUaprdQ7 .mbr-text,
.cid-u2yUaprdQ7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-u2yUaprdQ7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tLll2Iby3O {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tLll2Iby3O img,
.cid-tLll2Iby3O .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tLll2Iby3O .item:focus,
.cid-tLll2Iby3O span:focus {
  outline: none;
}
.cid-tLll2Iby3O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tLll2Iby3O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tLll2Iby3O .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tLll2Iby3O .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tLll2Iby3O .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tLll2Iby3O .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tLll2Iby3O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tLll2Iby3O .mbr-section-title {
  color: #ffffff;
}
.cid-tLll2Iby3O .mbr-text,
.cid-tLll2Iby3O .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-tLll2Iby3O .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-tLll2Iby3O .item-subtitle {
  text-align: left;
}
.cid-tLll2Iby3O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYinz3G0P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYinz3G0P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYinz3G0P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYinz3G0P .mbr-section-title {
  color: #ffffff;
}
.cid-uZYinz3G0P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsLjUVDf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsLjUVDf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsLjUVDf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsLjUVDf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsLjUVDf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsJRcU2s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsJRcU2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsJRcU2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsJRcU2s .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsJRcU2s .number {
  color: #ffffff;
}
.cid-uYNsJRcU2s .period {
  display: block;
}
.cid-uYNsJRcU2s .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsJRcU2s .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsJRcU2s .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsJRcU2s .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsJRcU2s .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsJRcU2s .mbr-text {
  color: #ffffff;
}
.cid-uYNsJRcU2s .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsJRcU2s .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsJRcU2s .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsJRcU2s .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-u2yU998ah6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-u2yU998ah6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2yU998ah6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2yU998ah6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-u2yU998ah6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-u2yU998ah6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-u2yU998ah6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-u2yU998ah6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-u2yU998ah6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-u2yU998ah6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-u2yU998ah6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-u2yU998ah6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-u2yU998ah6 [class^="socicon-"]:before,
.cid-u2yU998ah6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-u2yU998ah6 .mbr-section-title,
.cid-u2yU998ah6 .mbr-social-likes {
  color: #ffffff;
}
.cid-u39nGayMU9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-u39nGayMU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u39nGayMU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u39nGayMU9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-u39nGayMU9 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-u39nGayMU9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u39nGayMU9 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u39nGayMU9 .mbr-text {
  color: #ffffff;
}
.cid-u39nGayMU9 .card-title {
  color: #ffffff;
}
.cid-u39nGayMU9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u39nGayMU9 .mbr-section-title {
  color: #ffffff;
}
.cid-u39nGayMU9 .link {
  color: #4479d9;
}
.cid-tOfopmlN3D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-tOfopmlN3D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOfopmlN3D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOfopmlN3D .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOfopmlN3D .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tOfopmlN3D .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOfopmlN3D div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOfopmlN3D .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupaVgva3M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupaVgva3M nav.navbar {
  position: fixed;
}
.cid-uupaVgva3M .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-uupaVgva3M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupaVgva3M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupaVgva3M .dropdown-item:hover,
.cid-uupaVgva3M .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupaVgva3M .dropdown-item:hover span {
  color: white;
}
.cid-uupaVgva3M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupaVgva3M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupaVgva3M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupaVgva3M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupaVgva3M .nav-link {
  position: relative;
}
.cid-uupaVgva3M .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupaVgva3M .container {
    flex-wrap: wrap;
  }
}
.cid-uupaVgva3M .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupaVgva3M .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupaVgva3M .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupaVgva3M .dropdown-menu,
.cid-uupaVgva3M .navbar.opened {
  background: #000000 !important;
}
.cid-uupaVgva3M .nav-item:focus,
.cid-uupaVgva3M .nav-link:focus {
  outline: none;
}
.cid-uupaVgva3M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupaVgva3M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupaVgva3M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupaVgva3M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupaVgva3M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupaVgva3M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupaVgva3M .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupaVgva3M .navbar.opened {
  transition: all 0.3s;
}
.cid-uupaVgva3M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupaVgva3M .navbar .navbar-logo img {
  width: auto;
}
.cid-uupaVgva3M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupaVgva3M .navbar.collapsed {
  justify-content: center;
}
.cid-uupaVgva3M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupaVgva3M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupaVgva3M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupaVgva3M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupaVgva3M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupaVgva3M .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-uupaVgva3M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupaVgva3M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupaVgva3M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupaVgva3M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupaVgva3M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupaVgva3M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupaVgva3M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupaVgva3M .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-uupaVgva3M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupaVgva3M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupaVgva3M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupaVgva3M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupaVgva3M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupaVgva3M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupaVgva3M .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupaVgva3M .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupaVgva3M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupaVgva3M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupaVgva3M .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupaVgva3M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupaVgva3M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupaVgva3M .dropdown-item.active,
.cid-uupaVgva3M .dropdown-item:active {
  background-color: transparent;
}
.cid-uupaVgva3M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupaVgva3M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupaVgva3M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupaVgva3M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupaVgva3M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupaVgva3M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupaVgva3M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupaVgva3M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupaVgva3M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupaVgva3M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupaVgva3M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupaVgva3M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupaVgva3M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupaVgva3M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupaVgva3M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupaVgva3M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupaVgva3M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupaVgva3M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupaVgva3M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupaVgva3M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupaVgva3M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupaVgva3M .navbar {
    height: 70px;
  }
  .cid-uupaVgva3M .navbar.opened {
    height: auto;
  }
  .cid-uupaVgva3M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupaVhksCS {
  background-image: url("../../../assets/images/ground-cherry-banner.webp");
}
.cid-uupaVhksCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupaVhksCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupaVhksCS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupaVhksCS .mbr-text,
.cid-uupaVhksCS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupaVhksCS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupaVhWksE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupaVhWksE img,
.cid-uupaVhWksE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupaVhWksE .item:focus,
.cid-uupaVhWksE span:focus {
  outline: none;
}
.cid-uupaVhWksE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupaVhWksE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupaVhWksE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupaVhWksE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupaVhWksE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupaVhWksE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupaVhWksE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupaVhWksE .mbr-section-title {
  color: #ffffff;
}
.cid-uupaVhWksE .mbr-text,
.cid-uupaVhWksE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupaVhWksE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupaVhWksE .item-subtitle {
  text-align: left;
}
.cid-uupaVhWksE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9P9bGnkqk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9P9bGnkqk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9P9bGnkqk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9P9bGnkqk .mbr-section-title {
  color: #ffffff;
}
.cid-v9P9bGnkqk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsynetxn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsynetxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsynetxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsynetxn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsynetxn .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsxaZV70 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsxaZV70 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsxaZV70 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsxaZV70 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsxaZV70 .number {
  color: #ffffff;
}
.cid-uYNsxaZV70 .period {
  display: block;
}
.cid-uYNsxaZV70 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsxaZV70 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsxaZV70 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsxaZV70 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsxaZV70 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsxaZV70 .mbr-text {
  color: #ffffff;
}
.cid-uYNsxaZV70 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsxaZV70 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsxaZV70 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsxaZV70 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupaVjmeO6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupaVjmeO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupaVjmeO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupaVjmeO6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupaVjmeO6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupaVjmeO6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupaVjmeO6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupaVjmeO6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupaVjmeO6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupaVjmeO6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupaVjmeO6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupaVjmeO6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupaVjmeO6 [class^="socicon-"]:before,
.cid-uupaVjmeO6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupaVjmeO6 .mbr-section-title,
.cid-uupaVjmeO6 .mbr-social-likes {
  color: #ffffff;
}
.cid-uupaVjZARn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupaVjZARn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupaVjZARn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupaVjZARn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupaVjZARn .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupaVjZARn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupaVjZARn .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupaVjZARn .mbr-text {
  color: #ffffff;
}
.cid-uupaVjZARn .card-title {
  color: #ffffff;
}
.cid-uupaVjZARn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupaVjZARn .mbr-section-title {
  color: #ffffff;
}
.cid-uupaVjZARn .link {
  color: #4479d9;
}
.cid-uupaVkIwsw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupaVkIwsw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupaVkIwsw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupaVkIwsw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupaVkIwsw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupaVkIwsw .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupaVkIwsw .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupaVkIwsw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupaVkIwsw .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupcckvurB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupcckvurB nav.navbar {
  position: fixed;
}
.cid-uupcckvurB .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-uupcckvurB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupcckvurB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupcckvurB .dropdown-item:hover,
.cid-uupcckvurB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupcckvurB .dropdown-item:hover span {
  color: white;
}
.cid-uupcckvurB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupcckvurB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupcckvurB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupcckvurB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupcckvurB .nav-link {
  position: relative;
}
.cid-uupcckvurB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupcckvurB .container {
    flex-wrap: wrap;
  }
}
.cid-uupcckvurB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupcckvurB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupcckvurB .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupcckvurB .dropdown-menu,
.cid-uupcckvurB .navbar.opened {
  background: #000000 !important;
}
.cid-uupcckvurB .nav-item:focus,
.cid-uupcckvurB .nav-link:focus {
  outline: none;
}
.cid-uupcckvurB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupcckvurB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupcckvurB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupcckvurB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupcckvurB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupcckvurB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupcckvurB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupcckvurB .navbar.opened {
  transition: all 0.3s;
}
.cid-uupcckvurB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupcckvurB .navbar .navbar-logo img {
  width: auto;
}
.cid-uupcckvurB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupcckvurB .navbar.collapsed {
  justify-content: center;
}
.cid-uupcckvurB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupcckvurB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupcckvurB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupcckvurB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupcckvurB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupcckvurB .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-uupcckvurB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupcckvurB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupcckvurB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupcckvurB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupcckvurB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupcckvurB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupcckvurB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupcckvurB .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-uupcckvurB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupcckvurB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupcckvurB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupcckvurB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupcckvurB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupcckvurB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupcckvurB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupcckvurB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupcckvurB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupcckvurB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupcckvurB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupcckvurB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupcckvurB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupcckvurB .dropdown-item.active,
.cid-uupcckvurB .dropdown-item:active {
  background-color: transparent;
}
.cid-uupcckvurB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupcckvurB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupcckvurB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupcckvurB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupcckvurB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupcckvurB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupcckvurB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupcckvurB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupcckvurB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupcckvurB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupcckvurB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupcckvurB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupcckvurB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupcckvurB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupcckvurB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupcckvurB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupcckvurB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupcckvurB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupcckvurB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupcckvurB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupcckvurB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupcckvurB .navbar {
    height: 70px;
  }
  .cid-uupcckvurB .navbar.opened {
    height: auto;
  }
  .cid-uupcckvurB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupccljuPj {
  background-image: url("../../../assets/images/senna-banner.webp");
}
.cid-uupccljuPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupccljuPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupccljuPj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupccljuPj .mbr-text,
.cid-uupccljuPj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupccljuPj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupcclUkXY {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupcclUkXY img,
.cid-uupcclUkXY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupcclUkXY .item:focus,
.cid-uupcclUkXY span:focus {
  outline: none;
}
.cid-uupcclUkXY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupcclUkXY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupcclUkXY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupcclUkXY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupcclUkXY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupcclUkXY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupcclUkXY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupcclUkXY .mbr-section-title {
  color: #ffffff;
}
.cid-uupcclUkXY .mbr-text,
.cid-uupcclUkXY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupcclUkXY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupcclUkXY .item-subtitle {
  text-align: left;
}
.cid-uupcclUkXY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9P8INGAAi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9P8INGAAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9P8INGAAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9P8INGAAi .mbr-section-title {
  color: #ffffff;
}
.cid-v9P8INGAAi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsnvbB1r {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNsnvbB1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsnvbB1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsnvbB1r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNsnvbB1r .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsmv9HGF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsmv9HGF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsmv9HGF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsmv9HGF .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsmv9HGF .number {
  color: #ffffff;
}
.cid-uYNsmv9HGF .period {
  display: block;
}
.cid-uYNsmv9HGF .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsmv9HGF .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsmv9HGF .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsmv9HGF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsmv9HGF .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsmv9HGF .mbr-text {
  color: #ffffff;
}
.cid-uYNsmv9HGF .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsmv9HGF .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsmv9HGF .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsmv9HGF .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupccnk4UW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupccnk4UW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupccnk4UW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupccnk4UW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupccnk4UW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupccnk4UW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupccnk4UW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupccnk4UW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupccnk4UW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupccnk4UW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupccnk4UW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupccnk4UW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupccnk4UW [class^="socicon-"]:before,
.cid-uupccnk4UW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupccnk4UW .mbr-section-title,
.cid-uupccnk4UW .mbr-social-likes {
  color: #ffffff;
}
.cid-uupcco0kj2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupcco0kj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupcco0kj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupcco0kj2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupcco0kj2 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupcco0kj2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupcco0kj2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupcco0kj2 .mbr-text {
  color: #ffffff;
}
.cid-uupcco0kj2 .card-title {
  color: #ffffff;
}
.cid-uupcco0kj2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupcco0kj2 .mbr-section-title {
  color: #ffffff;
}
.cid-uupcco0kj2 .link {
  color: #4479d9;
}
.cid-uupccoJQcm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupccoJQcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupccoJQcm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupccoJQcm .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupccoJQcm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupccoJQcm .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupccoJQcm .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupccoJQcm div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupccoJQcm .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupdbiFpHS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupdbiFpHS nav.navbar {
  position: fixed;
}
.cid-uupdbiFpHS .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-uupdbiFpHS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupdbiFpHS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupdbiFpHS .dropdown-item:hover,
.cid-uupdbiFpHS .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupdbiFpHS .dropdown-item:hover span {
  color: white;
}
.cid-uupdbiFpHS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupdbiFpHS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupdbiFpHS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupdbiFpHS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupdbiFpHS .nav-link {
  position: relative;
}
.cid-uupdbiFpHS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupdbiFpHS .container {
    flex-wrap: wrap;
  }
}
.cid-uupdbiFpHS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupdbiFpHS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupdbiFpHS .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupdbiFpHS .dropdown-menu,
.cid-uupdbiFpHS .navbar.opened {
  background: #000000 !important;
}
.cid-uupdbiFpHS .nav-item:focus,
.cid-uupdbiFpHS .nav-link:focus {
  outline: none;
}
.cid-uupdbiFpHS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupdbiFpHS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupdbiFpHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupdbiFpHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupdbiFpHS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupdbiFpHS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupdbiFpHS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupdbiFpHS .navbar.opened {
  transition: all 0.3s;
}
.cid-uupdbiFpHS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupdbiFpHS .navbar .navbar-logo img {
  width: auto;
}
.cid-uupdbiFpHS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupdbiFpHS .navbar.collapsed {
  justify-content: center;
}
.cid-uupdbiFpHS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupdbiFpHS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupdbiFpHS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupdbiFpHS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupdbiFpHS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupdbiFpHS .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-uupdbiFpHS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupdbiFpHS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupdbiFpHS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupdbiFpHS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupdbiFpHS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupdbiFpHS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupdbiFpHS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupdbiFpHS .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-uupdbiFpHS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupdbiFpHS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupdbiFpHS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupdbiFpHS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupdbiFpHS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupdbiFpHS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupdbiFpHS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupdbiFpHS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupdbiFpHS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupdbiFpHS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupdbiFpHS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupdbiFpHS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupdbiFpHS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupdbiFpHS .dropdown-item.active,
.cid-uupdbiFpHS .dropdown-item:active {
  background-color: transparent;
}
.cid-uupdbiFpHS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupdbiFpHS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupdbiFpHS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupdbiFpHS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupdbiFpHS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupdbiFpHS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupdbiFpHS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupdbiFpHS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupdbiFpHS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupdbiFpHS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupdbiFpHS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupdbiFpHS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupdbiFpHS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupdbiFpHS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupdbiFpHS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupdbiFpHS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupdbiFpHS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupdbiFpHS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupdbiFpHS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupdbiFpHS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupdbiFpHS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupdbiFpHS .navbar {
    height: 70px;
  }
  .cid-uupdbiFpHS .navbar.opened {
    height: auto;
  }
  .cid-uupdbiFpHS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupdbjrpmW {
  background-image: url("../../../assets/images/flameleaf-sumac-banner.webp");
}
.cid-uupdbjrpmW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupdbjrpmW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupdbjrpmW .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupdbjrpmW .mbr-text,
.cid-uupdbjrpmW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupdbjrpmW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupdbk1ITT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupdbk1ITT img,
.cid-uupdbk1ITT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupdbk1ITT .item:focus,
.cid-uupdbk1ITT span:focus {
  outline: none;
}
.cid-uupdbk1ITT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupdbk1ITT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupdbk1ITT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupdbk1ITT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupdbk1ITT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupdbk1ITT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupdbk1ITT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupdbk1ITT .mbr-section-title {
  color: #ffffff;
}
.cid-uupdbk1ITT .mbr-text,
.cid-uupdbk1ITT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupdbk1ITT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupdbk1ITT .item-subtitle {
  text-align: left;
}
.cid-uupdbk1ITT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9P83I5xNm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9P83I5xNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9P83I5xNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9P83I5xNm .mbr-section-title {
  color: #ffffff;
}
.cid-v9P83I5xNm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNshg8iFL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNshg8iFL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNshg8iFL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNshg8iFL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNshg8iFL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsgkY3Kf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNsgkY3Kf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNsgkY3Kf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNsgkY3Kf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNsgkY3Kf .number {
  color: #ffffff;
}
.cid-uYNsgkY3Kf .period {
  display: block;
}
.cid-uYNsgkY3Kf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNsgkY3Kf .period {
    font-size: 0.8rem;
  }
}
.cid-uYNsgkY3Kf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNsgkY3Kf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNsgkY3Kf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNsgkY3Kf .mbr-text {
  color: #ffffff;
}
.cid-uYNsgkY3Kf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNsgkY3Kf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNsgkY3Kf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNsgkY3Kf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupdblyN9n {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupdblyN9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupdblyN9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupdblyN9n .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupdblyN9n .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupdblyN9n .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupdblyN9n .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupdblyN9n .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupdblyN9n .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupdblyN9n .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupdblyN9n .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupdblyN9n .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupdblyN9n [class^="socicon-"]:before,
.cid-uupdblyN9n [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupdblyN9n .mbr-section-title,
.cid-uupdblyN9n .mbr-social-likes {
  color: #ffffff;
}
.cid-uupdbmbZcr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupdbmbZcr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupdbmbZcr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupdbmbZcr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupdbmbZcr .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupdbmbZcr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupdbmbZcr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupdbmbZcr .mbr-text {
  color: #ffffff;
}
.cid-uupdbmbZcr .card-title {
  color: #ffffff;
}
.cid-uupdbmbZcr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupdbmbZcr .mbr-section-title {
  color: #ffffff;
}
.cid-uupdbmbZcr .link {
  color: #4479d9;
}
.cid-uupdbmUSKo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupdbmUSKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupdbmUSKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupdbmUSKo .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupdbmUSKo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupdbmUSKo .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupdbmUSKo .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupdbmUSKo div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupdbmUSKo .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuphPetHKW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuphPetHKW nav.navbar {
  position: fixed;
}
.cid-uuphPetHKW .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-uuphPetHKW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuphPetHKW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuphPetHKW .dropdown-item:hover,
.cid-uuphPetHKW .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuphPetHKW .dropdown-item:hover span {
  color: white;
}
.cid-uuphPetHKW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuphPetHKW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuphPetHKW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuphPetHKW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuphPetHKW .nav-link {
  position: relative;
}
.cid-uuphPetHKW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuphPetHKW .container {
    flex-wrap: wrap;
  }
}
.cid-uuphPetHKW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuphPetHKW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuphPetHKW .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuphPetHKW .dropdown-menu,
.cid-uuphPetHKW .navbar.opened {
  background: #000000 !important;
}
.cid-uuphPetHKW .nav-item:focus,
.cid-uuphPetHKW .nav-link:focus {
  outline: none;
}
.cid-uuphPetHKW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuphPetHKW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuphPetHKW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuphPetHKW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuphPetHKW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuphPetHKW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuphPetHKW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuphPetHKW .navbar.opened {
  transition: all 0.3s;
}
.cid-uuphPetHKW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuphPetHKW .navbar .navbar-logo img {
  width: auto;
}
.cid-uuphPetHKW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuphPetHKW .navbar.collapsed {
  justify-content: center;
}
.cid-uuphPetHKW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuphPetHKW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuphPetHKW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuphPetHKW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuphPetHKW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuphPetHKW .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-uuphPetHKW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuphPetHKW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuphPetHKW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuphPetHKW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuphPetHKW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuphPetHKW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuphPetHKW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuphPetHKW .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-uuphPetHKW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuphPetHKW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuphPetHKW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuphPetHKW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuphPetHKW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuphPetHKW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuphPetHKW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuphPetHKW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuphPetHKW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuphPetHKW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuphPetHKW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuphPetHKW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuphPetHKW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuphPetHKW .dropdown-item.active,
.cid-uuphPetHKW .dropdown-item:active {
  background-color: transparent;
}
.cid-uuphPetHKW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuphPetHKW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuphPetHKW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuphPetHKW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuphPetHKW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuphPetHKW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuphPetHKW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuphPetHKW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuphPetHKW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuphPetHKW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuphPetHKW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuphPetHKW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuphPetHKW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuphPetHKW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuphPetHKW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuphPetHKW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuphPetHKW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuphPetHKW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuphPetHKW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuphPetHKW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuphPetHKW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuphPetHKW .navbar {
    height: 70px;
  }
  .cid-uuphPetHKW .navbar.opened {
    height: auto;
  }
  .cid-uuphPetHKW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuphPh6MLI {
  background-image: url("../../../assets/images/chile-de-arbol-banner.webp");
}
.cid-uuphPh6MLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuphPh6MLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuphPh6MLI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuphPh6MLI .mbr-text,
.cid-uuphPh6MLI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuphPh6MLI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuphPjXGrN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuphPjXGrN img,
.cid-uuphPjXGrN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuphPjXGrN .item:focus,
.cid-uuphPjXGrN span:focus {
  outline: none;
}
.cid-uuphPjXGrN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuphPjXGrN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuphPjXGrN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuphPjXGrN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuphPjXGrN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuphPjXGrN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuphPjXGrN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuphPjXGrN .mbr-section-title {
  color: #ffffff;
}
.cid-uuphPjXGrN .mbr-text,
.cid-uuphPjXGrN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuphPjXGrN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuphPjXGrN .item-subtitle {
  text-align: left;
}
.cid-uuphPjXGrN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhMsFfN4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhMsFfN4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhMsFfN4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhMsFfN4 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhMsFfN4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrTQnJ5Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrTQnJ5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrTQnJ5Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrTQnJ5Q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrTQnJ5Q .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrSKI7Yf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrSKI7Yf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrSKI7Yf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrSKI7Yf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrSKI7Yf .number {
  color: #ffffff;
}
.cid-uYNrSKI7Yf .period {
  display: block;
}
.cid-uYNrSKI7Yf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrSKI7Yf .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrSKI7Yf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrSKI7Yf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrSKI7Yf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrSKI7Yf .mbr-text {
  color: #ffffff;
}
.cid-uYNrSKI7Yf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrSKI7Yf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrSKI7Yf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrSKI7Yf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuphPophv2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuphPophv2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuphPophv2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuphPophv2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuphPophv2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuphPophv2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuphPophv2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuphPophv2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuphPophv2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuphPophv2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuphPophv2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuphPophv2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuphPophv2 [class^="socicon-"]:before,
.cid-uuphPophv2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuphPophv2 .mbr-section-title,
.cid-uuphPophv2 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuphPp9GRp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuphPp9GRp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuphPp9GRp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuphPp9GRp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuphPp9GRp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuphPp9GRp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuphPp9GRp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuphPp9GRp .mbr-text {
  color: #ffffff;
}
.cid-uuphPp9GRp .card-title {
  color: #ffffff;
}
.cid-uuphPp9GRp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuphPp9GRp .mbr-section-title {
  color: #ffffff;
}
.cid-uuphPp9GRp .link {
  color: #4479d9;
}
.cid-uuphPq0S6m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuphPq0S6m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuphPq0S6m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuphPq0S6m .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuphPq0S6m .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuphPq0S6m .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuphPq0S6m .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuphPq0S6m div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuphPq0S6m .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupiOoMupj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupiOoMupj nav.navbar {
  position: fixed;
}
.cid-uupiOoMupj .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-uupiOoMupj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupiOoMupj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupiOoMupj .dropdown-item:hover,
.cid-uupiOoMupj .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupiOoMupj .dropdown-item:hover span {
  color: white;
}
.cid-uupiOoMupj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupiOoMupj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupiOoMupj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupiOoMupj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupiOoMupj .nav-link {
  position: relative;
}
.cid-uupiOoMupj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupiOoMupj .container {
    flex-wrap: wrap;
  }
}
.cid-uupiOoMupj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupiOoMupj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupiOoMupj .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupiOoMupj .dropdown-menu,
.cid-uupiOoMupj .navbar.opened {
  background: #000000 !important;
}
.cid-uupiOoMupj .nav-item:focus,
.cid-uupiOoMupj .nav-link:focus {
  outline: none;
}
.cid-uupiOoMupj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupiOoMupj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupiOoMupj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupiOoMupj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupiOoMupj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupiOoMupj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupiOoMupj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupiOoMupj .navbar.opened {
  transition: all 0.3s;
}
.cid-uupiOoMupj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupiOoMupj .navbar .navbar-logo img {
  width: auto;
}
.cid-uupiOoMupj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupiOoMupj .navbar.collapsed {
  justify-content: center;
}
.cid-uupiOoMupj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupiOoMupj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupiOoMupj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupiOoMupj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupiOoMupj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupiOoMupj .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-uupiOoMupj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupiOoMupj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupiOoMupj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupiOoMupj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupiOoMupj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupiOoMupj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupiOoMupj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupiOoMupj .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-uupiOoMupj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupiOoMupj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupiOoMupj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupiOoMupj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupiOoMupj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupiOoMupj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupiOoMupj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupiOoMupj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupiOoMupj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupiOoMupj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupiOoMupj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupiOoMupj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupiOoMupj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupiOoMupj .dropdown-item.active,
.cid-uupiOoMupj .dropdown-item:active {
  background-color: transparent;
}
.cid-uupiOoMupj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupiOoMupj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupiOoMupj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupiOoMupj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupiOoMupj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupiOoMupj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupiOoMupj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupiOoMupj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupiOoMupj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupiOoMupj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupiOoMupj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupiOoMupj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupiOoMupj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupiOoMupj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupiOoMupj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupiOoMupj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupiOoMupj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupiOoMupj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupiOoMupj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupiOoMupj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupiOoMupj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupiOoMupj .navbar {
    height: 70px;
  }
  .cid-uupiOoMupj .navbar.opened {
    height: auto;
  }
  .cid-uupiOoMupj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupiOpJWHK {
  background-image: url("../../../assets/images/habanero-banner.webp");
}
.cid-uupiOpJWHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupiOpJWHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupiOpJWHK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupiOpJWHK .mbr-text,
.cid-uupiOpJWHK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupiOpJWHK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupiOqkvMi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupiOqkvMi img,
.cid-uupiOqkvMi .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupiOqkvMi .item:focus,
.cid-uupiOqkvMi span:focus {
  outline: none;
}
.cid-uupiOqkvMi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupiOqkvMi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupiOqkvMi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupiOqkvMi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupiOqkvMi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupiOqkvMi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupiOqkvMi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupiOqkvMi .mbr-section-title {
  color: #ffffff;
}
.cid-uupiOqkvMi .mbr-text,
.cid-uupiOqkvMi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupiOqkvMi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupiOqkvMi .item-subtitle {
  text-align: left;
}
.cid-uupiOqkvMi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhJgaiTn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhJgaiTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhJgaiTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhJgaiTn .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhJgaiTn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrNswIxG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrNswIxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrNswIxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrNswIxG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrNswIxG .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrM8yTf1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrM8yTf1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrM8yTf1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrM8yTf1 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrM8yTf1 .number {
  color: #ffffff;
}
.cid-uYNrM8yTf1 .period {
  display: block;
}
.cid-uYNrM8yTf1 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrM8yTf1 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrM8yTf1 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrM8yTf1 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrM8yTf1 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrM8yTf1 .mbr-text {
  color: #ffffff;
}
.cid-uYNrM8yTf1 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrM8yTf1 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrM8yTf1 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrM8yTf1 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupiOuxXnb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupiOuxXnb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupiOuxXnb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupiOuxXnb .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupiOuxXnb .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupiOuxXnb .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupiOuxXnb .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupiOuxXnb .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupiOuxXnb .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupiOuxXnb .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupiOuxXnb .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupiOuxXnb .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupiOuxXnb [class^="socicon-"]:before,
.cid-uupiOuxXnb [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupiOuxXnb .mbr-section-title,
.cid-uupiOuxXnb .mbr-social-likes {
  color: #ffffff;
}
.cid-uupiOviJEV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupiOviJEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupiOviJEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupiOviJEV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupiOviJEV .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupiOviJEV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupiOviJEV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupiOviJEV .mbr-text {
  color: #ffffff;
}
.cid-uupiOviJEV .card-title {
  color: #ffffff;
}
.cid-uupiOviJEV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupiOviJEV .mbr-section-title {
  color: #ffffff;
}
.cid-uupiOviJEV .link {
  color: #4479d9;
}
.cid-uupiOwemr8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupiOwemr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupiOwemr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupiOwemr8 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupiOwemr8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupiOwemr8 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupiOwemr8 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupiOwemr8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupiOwemr8 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupjSiVKKO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupjSiVKKO nav.navbar {
  position: fixed;
}
.cid-uupjSiVKKO .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-uupjSiVKKO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupjSiVKKO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupjSiVKKO .dropdown-item:hover,
.cid-uupjSiVKKO .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupjSiVKKO .dropdown-item:hover span {
  color: white;
}
.cid-uupjSiVKKO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupjSiVKKO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupjSiVKKO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupjSiVKKO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupjSiVKKO .nav-link {
  position: relative;
}
.cid-uupjSiVKKO .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupjSiVKKO .container {
    flex-wrap: wrap;
  }
}
.cid-uupjSiVKKO .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupjSiVKKO .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupjSiVKKO .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupjSiVKKO .dropdown-menu,
.cid-uupjSiVKKO .navbar.opened {
  background: #000000 !important;
}
.cid-uupjSiVKKO .nav-item:focus,
.cid-uupjSiVKKO .nav-link:focus {
  outline: none;
}
.cid-uupjSiVKKO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupjSiVKKO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupjSiVKKO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupjSiVKKO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupjSiVKKO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupjSiVKKO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupjSiVKKO .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupjSiVKKO .navbar.opened {
  transition: all 0.3s;
}
.cid-uupjSiVKKO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupjSiVKKO .navbar .navbar-logo img {
  width: auto;
}
.cid-uupjSiVKKO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupjSiVKKO .navbar.collapsed {
  justify-content: center;
}
.cid-uupjSiVKKO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupjSiVKKO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupjSiVKKO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupjSiVKKO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupjSiVKKO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupjSiVKKO .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-uupjSiVKKO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupjSiVKKO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupjSiVKKO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupjSiVKKO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupjSiVKKO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupjSiVKKO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupjSiVKKO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupjSiVKKO .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-uupjSiVKKO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupjSiVKKO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupjSiVKKO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupjSiVKKO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupjSiVKKO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupjSiVKKO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupjSiVKKO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupjSiVKKO .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupjSiVKKO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupjSiVKKO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupjSiVKKO .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupjSiVKKO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupjSiVKKO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupjSiVKKO .dropdown-item.active,
.cid-uupjSiVKKO .dropdown-item:active {
  background-color: transparent;
}
.cid-uupjSiVKKO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupjSiVKKO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupjSiVKKO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupjSiVKKO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupjSiVKKO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupjSiVKKO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupjSiVKKO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupjSiVKKO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupjSiVKKO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupjSiVKKO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupjSiVKKO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupjSiVKKO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupjSiVKKO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupjSiVKKO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupjSiVKKO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupjSiVKKO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupjSiVKKO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupjSiVKKO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupjSiVKKO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupjSiVKKO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupjSiVKKO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupjSiVKKO .navbar {
    height: 70px;
  }
  .cid-uupjSiVKKO .navbar.opened {
    height: auto;
  }
  .cid-uupjSiVKKO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupjSkjwts {
  background-image: url("../../../assets/images/cayenne-peppers-banner.webp");
}
.cid-uupjSkjwts .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupjSkjwts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupjSkjwts .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupjSkjwts .mbr-text,
.cid-uupjSkjwts .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupjSkjwts .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupjSkXV4e {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupjSkXV4e img,
.cid-uupjSkXV4e .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupjSkXV4e .item:focus,
.cid-uupjSkXV4e span:focus {
  outline: none;
}
.cid-uupjSkXV4e .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupjSkXV4e .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupjSkXV4e .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupjSkXV4e .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupjSkXV4e .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupjSkXV4e .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupjSkXV4e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupjSkXV4e .mbr-section-title {
  color: #ffffff;
}
.cid-uupjSkXV4e .mbr-text,
.cid-uupjSkXV4e .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupjSkXV4e .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupjSkXV4e .item-subtitle {
  text-align: left;
}
.cid-uupjSkXV4e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhFP1uPI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhFP1uPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhFP1uPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhFP1uPI .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhFP1uPI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrHxO4vg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrHxO4vg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrHxO4vg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrHxO4vg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrHxO4vg .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrG7O7j3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrG7O7j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrG7O7j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrG7O7j3 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrG7O7j3 .number {
  color: #ffffff;
}
.cid-uYNrG7O7j3 .period {
  display: block;
}
.cid-uYNrG7O7j3 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrG7O7j3 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrG7O7j3 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrG7O7j3 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrG7O7j3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrG7O7j3 .mbr-text {
  color: #ffffff;
}
.cid-uYNrG7O7j3 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrG7O7j3 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrG7O7j3 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrG7O7j3 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupjSpehS6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupjSpehS6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupjSpehS6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupjSpehS6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupjSpehS6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupjSpehS6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupjSpehS6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupjSpehS6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupjSpehS6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupjSpehS6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupjSpehS6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupjSpehS6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupjSpehS6 [class^="socicon-"]:before,
.cid-uupjSpehS6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupjSpehS6 .mbr-section-title,
.cid-uupjSpehS6 .mbr-social-likes {
  color: #ffffff;
}
.cid-uupjSq0t4z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupjSq0t4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupjSq0t4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupjSq0t4z .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupjSq0t4z .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupjSq0t4z .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupjSq0t4z .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupjSq0t4z .mbr-text {
  color: #ffffff;
}
.cid-uupjSq0t4z .card-title {
  color: #ffffff;
}
.cid-uupjSq0t4z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupjSq0t4z .mbr-section-title {
  color: #ffffff;
}
.cid-uupjSq0t4z .link {
  color: #4479d9;
}
.cid-uupjSqST4v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupjSqST4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupjSqST4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupjSqST4v .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupjSqST4v .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupjSqST4v .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupjSqST4v .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupjSqST4v div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupjSqST4v .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupkEljCg0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupkEljCg0 nav.navbar {
  position: fixed;
}
.cid-uupkEljCg0 .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-uupkEljCg0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupkEljCg0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupkEljCg0 .dropdown-item:hover,
.cid-uupkEljCg0 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupkEljCg0 .dropdown-item:hover span {
  color: white;
}
.cid-uupkEljCg0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupkEljCg0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupkEljCg0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupkEljCg0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupkEljCg0 .nav-link {
  position: relative;
}
.cid-uupkEljCg0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupkEljCg0 .container {
    flex-wrap: wrap;
  }
}
.cid-uupkEljCg0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupkEljCg0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupkEljCg0 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupkEljCg0 .dropdown-menu,
.cid-uupkEljCg0 .navbar.opened {
  background: #000000 !important;
}
.cid-uupkEljCg0 .nav-item:focus,
.cid-uupkEljCg0 .nav-link:focus {
  outline: none;
}
.cid-uupkEljCg0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupkEljCg0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupkEljCg0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupkEljCg0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupkEljCg0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupkEljCg0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupkEljCg0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupkEljCg0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uupkEljCg0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupkEljCg0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uupkEljCg0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupkEljCg0 .navbar.collapsed {
  justify-content: center;
}
.cid-uupkEljCg0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupkEljCg0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupkEljCg0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupkEljCg0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupkEljCg0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupkEljCg0 .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-uupkEljCg0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupkEljCg0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupkEljCg0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupkEljCg0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupkEljCg0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupkEljCg0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupkEljCg0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupkEljCg0 .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-uupkEljCg0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupkEljCg0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupkEljCg0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupkEljCg0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupkEljCg0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupkEljCg0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupkEljCg0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupkEljCg0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupkEljCg0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupkEljCg0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupkEljCg0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupkEljCg0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupkEljCg0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupkEljCg0 .dropdown-item.active,
.cid-uupkEljCg0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uupkEljCg0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupkEljCg0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupkEljCg0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupkEljCg0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupkEljCg0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupkEljCg0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupkEljCg0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupkEljCg0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupkEljCg0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupkEljCg0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupkEljCg0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupkEljCg0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupkEljCg0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupkEljCg0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupkEljCg0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupkEljCg0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupkEljCg0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupkEljCg0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupkEljCg0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupkEljCg0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupkEljCg0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupkEljCg0 .navbar {
    height: 70px;
  }
  .cid-uupkEljCg0 .navbar.opened {
    height: auto;
  }
  .cid-uupkEljCg0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupkEmrcyZ {
  background-image: url("../../../assets/images/himo-togarashi-banner.webp");
}
.cid-uupkEmrcyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupkEmrcyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupkEmrcyZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupkEmrcyZ .mbr-text,
.cid-uupkEmrcyZ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupkEmrcyZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupkEoVlR9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupkEoVlR9 img,
.cid-uupkEoVlR9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupkEoVlR9 .item:focus,
.cid-uupkEoVlR9 span:focus {
  outline: none;
}
.cid-uupkEoVlR9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupkEoVlR9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupkEoVlR9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupkEoVlR9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupkEoVlR9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupkEoVlR9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupkEoVlR9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupkEoVlR9 .mbr-section-title {
  color: #ffffff;
}
.cid-uupkEoVlR9 .mbr-text,
.cid-uupkEoVlR9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupkEoVlR9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupkEoVlR9 .item-subtitle {
  text-align: left;
}
.cid-uupkEoVlR9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhC6BAgN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhC6BAgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhC6BAgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhC6BAgN .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhC6BAgN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrBSJERL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrBSJERL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrBSJERL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrBSJERL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrBSJERL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrAl1YYr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrAl1YYr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrAl1YYr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrAl1YYr .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrAl1YYr .number {
  color: #ffffff;
}
.cid-uYNrAl1YYr .period {
  display: block;
}
.cid-uYNrAl1YYr .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrAl1YYr .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrAl1YYr .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrAl1YYr .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrAl1YYr .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrAl1YYr .mbr-text {
  color: #ffffff;
}
.cid-uYNrAl1YYr .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrAl1YYr .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrAl1YYr .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrAl1YYr .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupkEumtfD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupkEumtfD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupkEumtfD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupkEumtfD .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupkEumtfD .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupkEumtfD .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupkEumtfD .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupkEumtfD .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupkEumtfD .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupkEumtfD .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupkEumtfD .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupkEumtfD .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupkEumtfD [class^="socicon-"]:before,
.cid-uupkEumtfD [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupkEumtfD .mbr-section-title,
.cid-uupkEumtfD .mbr-social-likes {
  color: #ffffff;
}
.cid-uupkEvpboe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupkEvpboe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupkEvpboe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupkEvpboe .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupkEvpboe .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupkEvpboe .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupkEvpboe .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupkEvpboe .mbr-text {
  color: #ffffff;
}
.cid-uupkEvpboe .card-title {
  color: #ffffff;
}
.cid-uupkEvpboe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupkEvpboe .mbr-section-title {
  color: #ffffff;
}
.cid-uupkEvpboe .link {
  color: #4479d9;
}
.cid-uupkEwLTxi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupkEwLTxi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupkEwLTxi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupkEwLTxi .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupkEwLTxi .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupkEwLTxi .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupkEwLTxi .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupkEwLTxi div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupkEwLTxi .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupmxBxRa4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupmxBxRa4 nav.navbar {
  position: fixed;
}
.cid-uupmxBxRa4 .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-uupmxBxRa4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupmxBxRa4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupmxBxRa4 .dropdown-item:hover,
.cid-uupmxBxRa4 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupmxBxRa4 .dropdown-item:hover span {
  color: white;
}
.cid-uupmxBxRa4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupmxBxRa4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupmxBxRa4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupmxBxRa4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupmxBxRa4 .nav-link {
  position: relative;
}
.cid-uupmxBxRa4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupmxBxRa4 .container {
    flex-wrap: wrap;
  }
}
.cid-uupmxBxRa4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupmxBxRa4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupmxBxRa4 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupmxBxRa4 .dropdown-menu,
.cid-uupmxBxRa4 .navbar.opened {
  background: #000000 !important;
}
.cid-uupmxBxRa4 .nav-item:focus,
.cid-uupmxBxRa4 .nav-link:focus {
  outline: none;
}
.cid-uupmxBxRa4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupmxBxRa4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupmxBxRa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupmxBxRa4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupmxBxRa4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupmxBxRa4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupmxBxRa4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupmxBxRa4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uupmxBxRa4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupmxBxRa4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uupmxBxRa4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupmxBxRa4 .navbar.collapsed {
  justify-content: center;
}
.cid-uupmxBxRa4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupmxBxRa4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupmxBxRa4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupmxBxRa4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupmxBxRa4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupmxBxRa4 .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-uupmxBxRa4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupmxBxRa4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupmxBxRa4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupmxBxRa4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupmxBxRa4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupmxBxRa4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupmxBxRa4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupmxBxRa4 .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-uupmxBxRa4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupmxBxRa4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupmxBxRa4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupmxBxRa4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupmxBxRa4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupmxBxRa4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupmxBxRa4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupmxBxRa4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupmxBxRa4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupmxBxRa4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupmxBxRa4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupmxBxRa4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupmxBxRa4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupmxBxRa4 .dropdown-item.active,
.cid-uupmxBxRa4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uupmxBxRa4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupmxBxRa4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupmxBxRa4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupmxBxRa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupmxBxRa4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupmxBxRa4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupmxBxRa4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupmxBxRa4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupmxBxRa4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupmxBxRa4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupmxBxRa4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupmxBxRa4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupmxBxRa4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupmxBxRa4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupmxBxRa4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupmxBxRa4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupmxBxRa4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupmxBxRa4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupmxBxRa4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupmxBxRa4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupmxBxRa4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupmxBxRa4 .navbar {
    height: 70px;
  }
  .cid-uupmxBxRa4 .navbar.opened {
    height: auto;
  }
  .cid-uupmxBxRa4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupmxCmHFb {
  background-image: url("../../../assets/images/jalapeno-banner.webp");
}
.cid-uupmxCmHFb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupmxCmHFb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupmxCmHFb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupmxCmHFb .mbr-text,
.cid-uupmxCmHFb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupmxCmHFb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupmxDMLWu {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupmxDMLWu img,
.cid-uupmxDMLWu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupmxDMLWu .item:focus,
.cid-uupmxDMLWu span:focus {
  outline: none;
}
.cid-uupmxDMLWu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupmxDMLWu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupmxDMLWu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupmxDMLWu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupmxDMLWu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupmxDMLWu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupmxDMLWu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupmxDMLWu .mbr-section-title {
  color: #ffffff;
}
.cid-uupmxDMLWu .mbr-text,
.cid-uupmxDMLWu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupmxDMLWu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupmxDMLWu .item-subtitle {
  text-align: left;
}
.cid-uupmxDMLWu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhyo5Y9d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhyo5Y9d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhyo5Y9d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhyo5Y9d .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhyo5Y9d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrvvScBZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrvvScBZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrvvScBZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrvvScBZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrvvScBZ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrus5Ops {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrus5Ops .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrus5Ops .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrus5Ops .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrus5Ops .number {
  color: #ffffff;
}
.cid-uYNrus5Ops .period {
  display: block;
}
.cid-uYNrus5Ops .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrus5Ops .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrus5Ops .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrus5Ops .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrus5Ops .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrus5Ops .mbr-text {
  color: #ffffff;
}
.cid-uYNrus5Ops .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrus5Ops .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrus5Ops .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrus5Ops .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupmxHdcte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupmxHdcte .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupmxHdcte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupmxHdcte .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupmxHdcte .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupmxHdcte .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupmxHdcte .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupmxHdcte .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupmxHdcte .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupmxHdcte .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupmxHdcte .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupmxHdcte .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupmxHdcte [class^="socicon-"]:before,
.cid-uupmxHdcte [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupmxHdcte .mbr-section-title,
.cid-uupmxHdcte .mbr-social-likes {
  color: #ffffff;
}
.cid-uupmxHYgaf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupmxHYgaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupmxHYgaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupmxHYgaf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupmxHYgaf .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupmxHYgaf .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupmxHYgaf .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupmxHYgaf .mbr-text {
  color: #ffffff;
}
.cid-uupmxHYgaf .card-title {
  color: #ffffff;
}
.cid-uupmxHYgaf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupmxHYgaf .mbr-section-title {
  color: #ffffff;
}
.cid-uupmxHYgaf .link {
  color: #4479d9;
}
.cid-uupmxIUoMC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupmxIUoMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupmxIUoMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupmxIUoMC .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupmxIUoMC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupmxIUoMC .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupmxIUoMC .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupmxIUoMC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupmxIUoMC .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uupoFKn0K5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uupoFKn0K5 nav.navbar {
  position: fixed;
}
.cid-uupoFKn0K5 .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-uupoFKn0K5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uupoFKn0K5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uupoFKn0K5 .dropdown-item:hover,
.cid-uupoFKn0K5 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uupoFKn0K5 .dropdown-item:hover span {
  color: white;
}
.cid-uupoFKn0K5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uupoFKn0K5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uupoFKn0K5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uupoFKn0K5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uupoFKn0K5 .nav-link {
  position: relative;
}
.cid-uupoFKn0K5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupoFKn0K5 .container {
    flex-wrap: wrap;
  }
}
.cid-uupoFKn0K5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uupoFKn0K5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uupoFKn0K5 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uupoFKn0K5 .dropdown-menu,
.cid-uupoFKn0K5 .navbar.opened {
  background: #000000 !important;
}
.cid-uupoFKn0K5 .nav-item:focus,
.cid-uupoFKn0K5 .nav-link:focus {
  outline: none;
}
.cid-uupoFKn0K5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uupoFKn0K5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uupoFKn0K5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uupoFKn0K5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uupoFKn0K5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uupoFKn0K5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uupoFKn0K5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uupoFKn0K5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uupoFKn0K5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uupoFKn0K5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uupoFKn0K5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uupoFKn0K5 .navbar.collapsed {
  justify-content: center;
}
.cid-uupoFKn0K5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uupoFKn0K5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uupoFKn0K5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uupoFKn0K5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uupoFKn0K5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uupoFKn0K5 .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-uupoFKn0K5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uupoFKn0K5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uupoFKn0K5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uupoFKn0K5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uupoFKn0K5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uupoFKn0K5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uupoFKn0K5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uupoFKn0K5 .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-uupoFKn0K5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uupoFKn0K5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uupoFKn0K5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uupoFKn0K5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uupoFKn0K5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uupoFKn0K5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uupoFKn0K5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uupoFKn0K5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uupoFKn0K5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uupoFKn0K5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uupoFKn0K5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uupoFKn0K5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uupoFKn0K5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uupoFKn0K5 .dropdown-item.active,
.cid-uupoFKn0K5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uupoFKn0K5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uupoFKn0K5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uupoFKn0K5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uupoFKn0K5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uupoFKn0K5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uupoFKn0K5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uupoFKn0K5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uupoFKn0K5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uupoFKn0K5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uupoFKn0K5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uupoFKn0K5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uupoFKn0K5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupoFKn0K5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uupoFKn0K5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uupoFKn0K5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupoFKn0K5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uupoFKn0K5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uupoFKn0K5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uupoFKn0K5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uupoFKn0K5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uupoFKn0K5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uupoFKn0K5 .navbar {
    height: 70px;
  }
  .cid-uupoFKn0K5 .navbar.opened {
    height: auto;
  }
  .cid-uupoFKn0K5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uupoFLcozj {
  background-image: url("../../../assets/images/orange-jalapeno-banner.webp");
}
.cid-uupoFLcozj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupoFLcozj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupoFLcozj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uupoFLcozj .mbr-text,
.cid-uupoFLcozj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uupoFLcozj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uupoFMFwTD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uupoFMFwTD img,
.cid-uupoFMFwTD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uupoFMFwTD .item:focus,
.cid-uupoFMFwTD span:focus {
  outline: none;
}
.cid-uupoFMFwTD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uupoFMFwTD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uupoFMFwTD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uupoFMFwTD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uupoFMFwTD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uupoFMFwTD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uupoFMFwTD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uupoFMFwTD .mbr-section-title {
  color: #ffffff;
}
.cid-uupoFMFwTD .mbr-text,
.cid-uupoFMFwTD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uupoFMFwTD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uupoFMFwTD .item-subtitle {
  text-align: left;
}
.cid-uupoFMFwTD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhtbmfHz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhtbmfHz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhtbmfHz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhtbmfHz .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhtbmfHz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrpcUlyT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNrpcUlyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrpcUlyT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrpcUlyT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNrpcUlyT .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrobdLSs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNrobdLSs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNrobdLSs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNrobdLSs .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNrobdLSs .number {
  color: #ffffff;
}
.cid-uYNrobdLSs .period {
  display: block;
}
.cid-uYNrobdLSs .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNrobdLSs .period {
    font-size: 0.8rem;
  }
}
.cid-uYNrobdLSs .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNrobdLSs .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNrobdLSs .mbr-section-title {
  color: #ffffff;
}
.cid-uYNrobdLSs .mbr-text {
  color: #ffffff;
}
.cid-uYNrobdLSs .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNrobdLSs .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNrobdLSs .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNrobdLSs .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uupoFQ6cNU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uupoFQ6cNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupoFQ6cNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupoFQ6cNU .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uupoFQ6cNU .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uupoFQ6cNU .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uupoFQ6cNU .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uupoFQ6cNU .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uupoFQ6cNU .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uupoFQ6cNU .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uupoFQ6cNU .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uupoFQ6cNU .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uupoFQ6cNU [class^="socicon-"]:before,
.cid-uupoFQ6cNU [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uupoFQ6cNU .mbr-section-title,
.cid-uupoFQ6cNU .mbr-social-likes {
  color: #ffffff;
}
.cid-uupoFQRYrn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uupoFQRYrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupoFQRYrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupoFQRYrn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uupoFQRYrn .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uupoFQRYrn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uupoFQRYrn .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uupoFQRYrn .mbr-text {
  color: #ffffff;
}
.cid-uupoFQRYrn .card-title {
  color: #ffffff;
}
.cid-uupoFQRYrn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uupoFQRYrn .mbr-section-title {
  color: #ffffff;
}
.cid-uupoFQRYrn .link {
  color: #4479d9;
}
.cid-uupoFRJSTP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uupoFRJSTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uupoFRJSTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uupoFRJSTP .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uupoFRJSTP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uupoFRJSTP .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uupoFRJSTP .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uupoFRJSTP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uupoFRJSTP .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqsw53kjP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqsw53kjP nav.navbar {
  position: fixed;
}
.cid-uuqsw53kjP .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-uuqsw53kjP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqsw53kjP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqsw53kjP .dropdown-item:hover,
.cid-uuqsw53kjP .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqsw53kjP .dropdown-item:hover span {
  color: white;
}
.cid-uuqsw53kjP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqsw53kjP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqsw53kjP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqsw53kjP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqsw53kjP .nav-link {
  position: relative;
}
.cid-uuqsw53kjP .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqsw53kjP .container {
    flex-wrap: wrap;
  }
}
.cid-uuqsw53kjP .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqsw53kjP .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqsw53kjP .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqsw53kjP .dropdown-menu,
.cid-uuqsw53kjP .navbar.opened {
  background: #000000 !important;
}
.cid-uuqsw53kjP .nav-item:focus,
.cid-uuqsw53kjP .nav-link:focus {
  outline: none;
}
.cid-uuqsw53kjP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqsw53kjP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqsw53kjP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqsw53kjP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqsw53kjP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqsw53kjP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqsw53kjP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqsw53kjP .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqsw53kjP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqsw53kjP .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqsw53kjP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqsw53kjP .navbar.collapsed {
  justify-content: center;
}
.cid-uuqsw53kjP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqsw53kjP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqsw53kjP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqsw53kjP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqsw53kjP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqsw53kjP .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-uuqsw53kjP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqsw53kjP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqsw53kjP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqsw53kjP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqsw53kjP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqsw53kjP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqsw53kjP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqsw53kjP .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-uuqsw53kjP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqsw53kjP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqsw53kjP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqsw53kjP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqsw53kjP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqsw53kjP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqsw53kjP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqsw53kjP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqsw53kjP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqsw53kjP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqsw53kjP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqsw53kjP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqsw53kjP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqsw53kjP .dropdown-item.active,
.cid-uuqsw53kjP .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqsw53kjP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqsw53kjP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqsw53kjP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqsw53kjP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqsw53kjP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqsw53kjP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqsw53kjP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqsw53kjP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqsw53kjP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqsw53kjP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqsw53kjP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqsw53kjP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqsw53kjP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqsw53kjP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqsw53kjP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqsw53kjP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqsw53kjP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqsw53kjP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqsw53kjP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqsw53kjP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqsw53kjP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqsw53kjP .navbar {
    height: 70px;
  }
  .cid-uuqsw53kjP .navbar.opened {
    height: auto;
  }
  .cid-uuqsw53kjP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqsw5PCoW {
  background-image: url("../../../assets/images/chile-pequin-banner.webp");
}
.cid-uuqsw5PCoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqsw5PCoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqsw5PCoW .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqsw5PCoW .mbr-text,
.cid-uuqsw5PCoW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqsw5PCoW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqsw7Q9Gh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqsw7Q9Gh img,
.cid-uuqsw7Q9Gh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqsw7Q9Gh .item:focus,
.cid-uuqsw7Q9Gh span:focus {
  outline: none;
}
.cid-uuqsw7Q9Gh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqsw7Q9Gh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqsw7Q9Gh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqsw7Q9Gh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqsw7Q9Gh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqsw7Q9Gh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqsw7Q9Gh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqsw7Q9Gh .mbr-section-title {
  color: #ffffff;
}
.cid-uuqsw7Q9Gh .mbr-text,
.cid-uuqsw7Q9Gh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqsw7Q9Gh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqsw7Q9Gh .item-subtitle {
  text-align: left;
}
.cid-uuqsw7Q9Gh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhq4sVyE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhq4sVyE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhq4sVyE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhq4sVyE .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhq4sVyE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNr8T2i90 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNr8T2i90 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNr8T2i90 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNr8T2i90 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNr8T2i90 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNr6KsrbM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNr6KsrbM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNr6KsrbM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNr6KsrbM .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNr6KsrbM .number {
  color: #ffffff;
}
.cid-uYNr6KsrbM .period {
  display: block;
}
.cid-uYNr6KsrbM .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNr6KsrbM .period {
    font-size: 0.8rem;
  }
}
.cid-uYNr6KsrbM .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNr6KsrbM .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNr6KsrbM .mbr-section-title {
  color: #ffffff;
}
.cid-uYNr6KsrbM .mbr-text {
  color: #ffffff;
}
.cid-uYNr6KsrbM .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNr6KsrbM .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNr6KsrbM .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNr6KsrbM .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqswa5gh2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqswa5gh2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqswa5gh2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqswa5gh2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqswa5gh2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqswa5gh2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqswa5gh2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqswa5gh2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqswa5gh2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqswa5gh2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqswa5gh2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqswa5gh2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqswa5gh2 [class^="socicon-"]:before,
.cid-uuqswa5gh2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqswa5gh2 .mbr-section-title,
.cid-uuqswa5gh2 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqswaJgkV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqswaJgkV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqswaJgkV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqswaJgkV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqswaJgkV .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqswaJgkV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqswaJgkV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqswaJgkV .mbr-text {
  color: #ffffff;
}
.cid-uuqswaJgkV .card-title {
  color: #ffffff;
}
.cid-uuqswaJgkV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqswaJgkV .mbr-section-title {
  color: #ffffff;
}
.cid-uuqswaJgkV .link {
  color: #4479d9;
}
.cid-uuqswbuI8x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqswbuI8x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqswbuI8x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqswbuI8x .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqswbuI8x .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqswbuI8x .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqswbuI8x .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqswbuI8x div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqswbuI8x .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqtUByDrM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqtUByDrM nav.navbar {
  position: fixed;
}
.cid-uuqtUByDrM .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-uuqtUByDrM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqtUByDrM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqtUByDrM .dropdown-item:hover,
.cid-uuqtUByDrM .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqtUByDrM .dropdown-item:hover span {
  color: white;
}
.cid-uuqtUByDrM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqtUByDrM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqtUByDrM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqtUByDrM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqtUByDrM .nav-link {
  position: relative;
}
.cid-uuqtUByDrM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqtUByDrM .container {
    flex-wrap: wrap;
  }
}
.cid-uuqtUByDrM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqtUByDrM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqtUByDrM .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqtUByDrM .dropdown-menu,
.cid-uuqtUByDrM .navbar.opened {
  background: #000000 !important;
}
.cid-uuqtUByDrM .nav-item:focus,
.cid-uuqtUByDrM .nav-link:focus {
  outline: none;
}
.cid-uuqtUByDrM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqtUByDrM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqtUByDrM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqtUByDrM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqtUByDrM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqtUByDrM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqtUByDrM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqtUByDrM .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqtUByDrM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqtUByDrM .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqtUByDrM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqtUByDrM .navbar.collapsed {
  justify-content: center;
}
.cid-uuqtUByDrM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqtUByDrM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqtUByDrM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqtUByDrM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqtUByDrM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqtUByDrM .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-uuqtUByDrM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqtUByDrM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqtUByDrM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqtUByDrM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqtUByDrM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqtUByDrM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqtUByDrM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqtUByDrM .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-uuqtUByDrM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqtUByDrM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqtUByDrM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqtUByDrM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqtUByDrM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqtUByDrM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqtUByDrM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqtUByDrM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqtUByDrM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqtUByDrM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqtUByDrM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqtUByDrM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqtUByDrM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqtUByDrM .dropdown-item.active,
.cid-uuqtUByDrM .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqtUByDrM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqtUByDrM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqtUByDrM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqtUByDrM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqtUByDrM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqtUByDrM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqtUByDrM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqtUByDrM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqtUByDrM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqtUByDrM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqtUByDrM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqtUByDrM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqtUByDrM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqtUByDrM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqtUByDrM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqtUByDrM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqtUByDrM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqtUByDrM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqtUByDrM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqtUByDrM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqtUByDrM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqtUByDrM .navbar {
    height: 70px;
  }
  .cid-uuqtUByDrM .navbar.opened {
    height: auto;
  }
  .cid-uuqtUByDrM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqtUCBySk {
  background-image: url("../../../assets/images/pimento-banner.webp");
}
.cid-uuqtUCBySk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqtUCBySk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqtUCBySk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqtUCBySk .mbr-text,
.cid-uuqtUCBySk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqtUCBySk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqtUFiAe9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqtUFiAe9 img,
.cid-uuqtUFiAe9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqtUFiAe9 .item:focus,
.cid-uuqtUFiAe9 span:focus {
  outline: none;
}
.cid-uuqtUFiAe9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqtUFiAe9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqtUFiAe9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqtUFiAe9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqtUFiAe9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqtUFiAe9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqtUFiAe9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqtUFiAe9 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqtUFiAe9 .mbr-text,
.cid-uuqtUFiAe9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqtUFiAe9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqtUFiAe9 .item-subtitle {
  text-align: left;
}
.cid-uuqtUFiAe9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhmWjZh6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhmWjZh6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhmWjZh6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhmWjZh6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhmWjZh6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNr1cDmEh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNr1cDmEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNr1cDmEh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNr1cDmEh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNr1cDmEh .mbr-section-title {
  color: #ffffff;
}
.cid-uYNr09qHqk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNr09qHqk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNr09qHqk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNr09qHqk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNr09qHqk .number {
  color: #ffffff;
}
.cid-uYNr09qHqk .period {
  display: block;
}
.cid-uYNr09qHqk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNr09qHqk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNr09qHqk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNr09qHqk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNr09qHqk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNr09qHqk .mbr-text {
  color: #ffffff;
}
.cid-uYNr09qHqk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNr09qHqk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNr09qHqk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNr09qHqk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqtUHF2I3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqtUHF2I3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqtUHF2I3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqtUHF2I3 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqtUHF2I3 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqtUHF2I3 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqtUHF2I3 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqtUHF2I3 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqtUHF2I3 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqtUHF2I3 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqtUHF2I3 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqtUHF2I3 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqtUHF2I3 [class^="socicon-"]:before,
.cid-uuqtUHF2I3 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqtUHF2I3 .mbr-section-title,
.cid-uuqtUHF2I3 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqtUIDGtn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqtUIDGtn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqtUIDGtn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqtUIDGtn .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqtUIDGtn .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqtUIDGtn .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqtUIDGtn .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqtUIDGtn .mbr-text {
  color: #ffffff;
}
.cid-uuqtUIDGtn .card-title {
  color: #ffffff;
}
.cid-uuqtUIDGtn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqtUIDGtn .mbr-section-title {
  color: #ffffff;
}
.cid-uuqtUIDGtn .link {
  color: #4479d9;
}
.cid-uuqtUJud0c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqtUJud0c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqtUJud0c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqtUJud0c .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqtUJud0c .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqtUJud0c .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqtUJud0c .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqtUJud0c div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqtUJud0c .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuquVsqjVH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuquVsqjVH nav.navbar {
  position: fixed;
}
.cid-uuquVsqjVH .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-uuquVsqjVH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuquVsqjVH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuquVsqjVH .dropdown-item:hover,
.cid-uuquVsqjVH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuquVsqjVH .dropdown-item:hover span {
  color: white;
}
.cid-uuquVsqjVH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuquVsqjVH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuquVsqjVH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuquVsqjVH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuquVsqjVH .nav-link {
  position: relative;
}
.cid-uuquVsqjVH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuquVsqjVH .container {
    flex-wrap: wrap;
  }
}
.cid-uuquVsqjVH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuquVsqjVH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuquVsqjVH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuquVsqjVH .dropdown-menu,
.cid-uuquVsqjVH .navbar.opened {
  background: #000000 !important;
}
.cid-uuquVsqjVH .nav-item:focus,
.cid-uuquVsqjVH .nav-link:focus {
  outline: none;
}
.cid-uuquVsqjVH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuquVsqjVH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuquVsqjVH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuquVsqjVH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuquVsqjVH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuquVsqjVH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuquVsqjVH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuquVsqjVH .navbar.opened {
  transition: all 0.3s;
}
.cid-uuquVsqjVH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuquVsqjVH .navbar .navbar-logo img {
  width: auto;
}
.cid-uuquVsqjVH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuquVsqjVH .navbar.collapsed {
  justify-content: center;
}
.cid-uuquVsqjVH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuquVsqjVH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuquVsqjVH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuquVsqjVH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuquVsqjVH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuquVsqjVH .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-uuquVsqjVH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuquVsqjVH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuquVsqjVH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuquVsqjVH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuquVsqjVH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuquVsqjVH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuquVsqjVH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuquVsqjVH .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-uuquVsqjVH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuquVsqjVH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuquVsqjVH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuquVsqjVH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuquVsqjVH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuquVsqjVH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuquVsqjVH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuquVsqjVH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuquVsqjVH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuquVsqjVH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuquVsqjVH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuquVsqjVH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuquVsqjVH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuquVsqjVH .dropdown-item.active,
.cid-uuquVsqjVH .dropdown-item:active {
  background-color: transparent;
}
.cid-uuquVsqjVH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuquVsqjVH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuquVsqjVH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuquVsqjVH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuquVsqjVH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuquVsqjVH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuquVsqjVH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuquVsqjVH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuquVsqjVH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuquVsqjVH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuquVsqjVH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuquVsqjVH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuquVsqjVH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuquVsqjVH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuquVsqjVH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuquVsqjVH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuquVsqjVH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuquVsqjVH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuquVsqjVH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuquVsqjVH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuquVsqjVH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuquVsqjVH .navbar {
    height: 70px;
  }
  .cid-uuquVsqjVH .navbar.opened {
    height: auto;
  }
  .cid-uuquVsqjVH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuquVtbek4 {
  background-image: url("../../../assets/images/sweet-pepper-banner.webp");
}
.cid-uuquVtbek4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuquVtbek4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuquVtbek4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuquVtbek4 .mbr-text,
.cid-uuquVtbek4 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuquVtbek4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuquVvdTNe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuquVvdTNe img,
.cid-uuquVvdTNe .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuquVvdTNe .item:focus,
.cid-uuquVvdTNe span:focus {
  outline: none;
}
.cid-uuquVvdTNe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuquVvdTNe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuquVvdTNe .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuquVvdTNe .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuquVvdTNe .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuquVvdTNe .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuquVvdTNe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuquVvdTNe .mbr-section-title {
  color: #ffffff;
}
.cid-uuquVvdTNe .mbr-text,
.cid-uuquVvdTNe .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuquVvdTNe .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuquVvdTNe .item-subtitle {
  text-align: left;
}
.cid-uuquVvdTNe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhiRmoy8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhiRmoy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhiRmoy8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhiRmoy8 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhiRmoy8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqVfEUzd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqVfEUzd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqVfEUzd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqVfEUzd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqVfEUzd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqUeLw8d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNqUeLw8d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqUeLw8d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqUeLw8d .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNqUeLw8d .number {
  color: #ffffff;
}
.cid-uYNqUeLw8d .period {
  display: block;
}
.cid-uYNqUeLw8d .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNqUeLw8d .period {
    font-size: 0.8rem;
  }
}
.cid-uYNqUeLw8d .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNqUeLw8d .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNqUeLw8d .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqUeLw8d .mbr-text {
  color: #ffffff;
}
.cid-uYNqUeLw8d .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNqUeLw8d .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNqUeLw8d .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNqUeLw8d .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuquVxwfyH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuquVxwfyH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuquVxwfyH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuquVxwfyH .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuquVxwfyH .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuquVxwfyH .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuquVxwfyH .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuquVxwfyH .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuquVxwfyH .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuquVxwfyH .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuquVxwfyH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuquVxwfyH .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuquVxwfyH [class^="socicon-"]:before,
.cid-uuquVxwfyH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuquVxwfyH .mbr-section-title,
.cid-uuquVxwfyH .mbr-social-likes {
  color: #ffffff;
}
.cid-uuquVycU45 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuquVycU45 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuquVycU45 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuquVycU45 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuquVycU45 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuquVycU45 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuquVycU45 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuquVycU45 .mbr-text {
  color: #ffffff;
}
.cid-uuquVycU45 .card-title {
  color: #ffffff;
}
.cid-uuquVycU45 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuquVycU45 .mbr-section-title {
  color: #ffffff;
}
.cid-uuquVycU45 .link {
  color: #4479d9;
}
.cid-uuquVyXk7v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuquVyXk7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuquVyXk7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuquVyXk7v .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuquVyXk7v .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuquVyXk7v .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuquVyXk7v .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuquVyXk7v div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuquVyXk7v .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqvS7OJsL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqvS7OJsL nav.navbar {
  position: fixed;
}
.cid-uuqvS7OJsL .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-uuqvS7OJsL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqvS7OJsL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqvS7OJsL .dropdown-item:hover,
.cid-uuqvS7OJsL .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqvS7OJsL .dropdown-item:hover span {
  color: white;
}
.cid-uuqvS7OJsL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqvS7OJsL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqvS7OJsL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqvS7OJsL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqvS7OJsL .nav-link {
  position: relative;
}
.cid-uuqvS7OJsL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqvS7OJsL .container {
    flex-wrap: wrap;
  }
}
.cid-uuqvS7OJsL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqvS7OJsL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqvS7OJsL .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqvS7OJsL .dropdown-menu,
.cid-uuqvS7OJsL .navbar.opened {
  background: #000000 !important;
}
.cid-uuqvS7OJsL .nav-item:focus,
.cid-uuqvS7OJsL .nav-link:focus {
  outline: none;
}
.cid-uuqvS7OJsL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqvS7OJsL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqvS7OJsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqvS7OJsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqvS7OJsL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqvS7OJsL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqvS7OJsL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqvS7OJsL .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqvS7OJsL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqvS7OJsL .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqvS7OJsL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqvS7OJsL .navbar.collapsed {
  justify-content: center;
}
.cid-uuqvS7OJsL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqvS7OJsL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqvS7OJsL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqvS7OJsL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqvS7OJsL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqvS7OJsL .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-uuqvS7OJsL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqvS7OJsL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqvS7OJsL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqvS7OJsL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqvS7OJsL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqvS7OJsL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqvS7OJsL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqvS7OJsL .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-uuqvS7OJsL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqvS7OJsL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqvS7OJsL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqvS7OJsL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqvS7OJsL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqvS7OJsL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqvS7OJsL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqvS7OJsL .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqvS7OJsL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqvS7OJsL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqvS7OJsL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqvS7OJsL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqvS7OJsL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqvS7OJsL .dropdown-item.active,
.cid-uuqvS7OJsL .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqvS7OJsL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqvS7OJsL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqvS7OJsL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqvS7OJsL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqvS7OJsL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqvS7OJsL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqvS7OJsL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqvS7OJsL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqvS7OJsL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqvS7OJsL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqvS7OJsL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqvS7OJsL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqvS7OJsL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqvS7OJsL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqvS7OJsL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqvS7OJsL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqvS7OJsL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqvS7OJsL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqvS7OJsL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqvS7OJsL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqvS7OJsL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqvS7OJsL .navbar {
    height: 70px;
  }
  .cid-uuqvS7OJsL .navbar.opened {
    height: auto;
  }
  .cid-uuqvS7OJsL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqvS8CAr2 {
  background-image: url("../../../assets/images/tabasco-g061f148bf-1281-696x464.webp");
}
.cid-uuqvS8CAr2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqvS8CAr2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqvS8CAr2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqvS8CAr2 .mbr-text,
.cid-uuqvS8CAr2 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqvS8CAr2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqvSbqLOw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqvSbqLOw img,
.cid-uuqvSbqLOw .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqvSbqLOw .item:focus,
.cid-uuqvSbqLOw span:focus {
  outline: none;
}
.cid-uuqvSbqLOw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqvSbqLOw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqvSbqLOw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqvSbqLOw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqvSbqLOw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqvSbqLOw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqvSbqLOw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqvSbqLOw .mbr-section-title {
  color: #ffffff;
}
.cid-uuqvSbqLOw .mbr-text,
.cid-uuqvSbqLOw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqvSbqLOw .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqvSbqLOw .item-subtitle {
  text-align: left;
}
.cid-uuqvSbqLOw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYheRwek0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYheRwek0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYheRwek0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYheRwek0 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYheRwek0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqPsanWw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqPsanWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqPsanWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqPsanWw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqPsanWw .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqNT57Yu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNqNT57Yu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqNT57Yu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqNT57Yu .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNqNT57Yu .number {
  color: #ffffff;
}
.cid-uYNqNT57Yu .period {
  display: block;
}
.cid-uYNqNT57Yu .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNqNT57Yu .period {
    font-size: 0.8rem;
  }
}
.cid-uYNqNT57Yu .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNqNT57Yu .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNqNT57Yu .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqNT57Yu .mbr-text {
  color: #ffffff;
}
.cid-uYNqNT57Yu .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNqNT57Yu .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNqNT57Yu .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNqNT57Yu .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqvScV5Tj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqvScV5Tj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqvScV5Tj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqvScV5Tj .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqvScV5Tj .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqvScV5Tj .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqvScV5Tj .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqvScV5Tj .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqvScV5Tj .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqvScV5Tj .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqvScV5Tj .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqvScV5Tj .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqvScV5Tj [class^="socicon-"]:before,
.cid-uuqvScV5Tj [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqvScV5Tj .mbr-section-title,
.cid-uuqvScV5Tj .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqvSdEaMC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqvSdEaMC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqvSdEaMC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqvSdEaMC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqvSdEaMC .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqvSdEaMC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqvSdEaMC .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqvSdEaMC .mbr-text {
  color: #ffffff;
}
.cid-uuqvSdEaMC .card-title {
  color: #ffffff;
}
.cid-uuqvSdEaMC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqvSdEaMC .mbr-section-title {
  color: #ffffff;
}
.cid-uuqvSdEaMC .link {
  color: #4479d9;
}
.cid-uuqvSepuSy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqvSepuSy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqvSepuSy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqvSepuSy .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqvSepuSy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqvSepuSy .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqvSepuSy .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqvSepuSy div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqvSepuSy .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqyF2pBZH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqyF2pBZH nav.navbar {
  position: fixed;
}
.cid-uuqyF2pBZH .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-uuqyF2pBZH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqyF2pBZH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqyF2pBZH .dropdown-item:hover,
.cid-uuqyF2pBZH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqyF2pBZH .dropdown-item:hover span {
  color: white;
}
.cid-uuqyF2pBZH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqyF2pBZH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqyF2pBZH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqyF2pBZH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqyF2pBZH .nav-link {
  position: relative;
}
.cid-uuqyF2pBZH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqyF2pBZH .container {
    flex-wrap: wrap;
  }
}
.cid-uuqyF2pBZH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqyF2pBZH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqyF2pBZH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqyF2pBZH .dropdown-menu,
.cid-uuqyF2pBZH .navbar.opened {
  background: #000000 !important;
}
.cid-uuqyF2pBZH .nav-item:focus,
.cid-uuqyF2pBZH .nav-link:focus {
  outline: none;
}
.cid-uuqyF2pBZH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqyF2pBZH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqyF2pBZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqyF2pBZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqyF2pBZH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqyF2pBZH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqyF2pBZH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqyF2pBZH .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqyF2pBZH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqyF2pBZH .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqyF2pBZH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqyF2pBZH .navbar.collapsed {
  justify-content: center;
}
.cid-uuqyF2pBZH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqyF2pBZH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqyF2pBZH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqyF2pBZH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqyF2pBZH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqyF2pBZH .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-uuqyF2pBZH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqyF2pBZH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqyF2pBZH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqyF2pBZH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqyF2pBZH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqyF2pBZH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqyF2pBZH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqyF2pBZH .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-uuqyF2pBZH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqyF2pBZH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqyF2pBZH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqyF2pBZH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqyF2pBZH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqyF2pBZH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqyF2pBZH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqyF2pBZH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqyF2pBZH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqyF2pBZH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqyF2pBZH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqyF2pBZH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqyF2pBZH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqyF2pBZH .dropdown-item.active,
.cid-uuqyF2pBZH .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqyF2pBZH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqyF2pBZH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqyF2pBZH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqyF2pBZH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqyF2pBZH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqyF2pBZH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqyF2pBZH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqyF2pBZH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqyF2pBZH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqyF2pBZH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqyF2pBZH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqyF2pBZH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqyF2pBZH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqyF2pBZH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqyF2pBZH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqyF2pBZH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqyF2pBZH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqyF2pBZH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqyF2pBZH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqyF2pBZH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqyF2pBZH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqyF2pBZH .navbar {
    height: 70px;
  }
  .cid-uuqyF2pBZH .navbar.opened {
    height: auto;
  }
  .cid-uuqyF2pBZH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqyF3e7Lp {
  background-image: url("../../../assets/images/20230703-192104-696x928.webp");
}
.cid-uuqyF3e7Lp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqyF3e7Lp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqyF3e7Lp .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqyF3e7Lp .mbr-text,
.cid-uuqyF3e7Lp .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqyF3e7Lp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqyF66WvK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqyF66WvK img,
.cid-uuqyF66WvK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqyF66WvK .item:focus,
.cid-uuqyF66WvK span:focus {
  outline: none;
}
.cid-uuqyF66WvK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqyF66WvK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqyF66WvK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqyF66WvK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqyF66WvK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqyF66WvK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqyF66WvK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqyF66WvK .mbr-section-title {
  color: #ffffff;
}
.cid-uuqyF66WvK .mbr-text,
.cid-uuqyF66WvK .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqyF66WvK .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqyF66WvK .item-subtitle {
  text-align: left;
}
.cid-uuqyF66WvK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYhaQF54H {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYhaQF54H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYhaQF54H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYhaQF54H .mbr-section-title {
  color: #ffffff;
}
.cid-uZYhaQF54H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqIOZBoA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqIOZBoA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqIOZBoA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqIOZBoA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqIOZBoA .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqHyt1sL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNqHyt1sL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqHyt1sL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqHyt1sL .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNqHyt1sL .number {
  color: #ffffff;
}
.cid-uYNqHyt1sL .period {
  display: block;
}
.cid-uYNqHyt1sL .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNqHyt1sL .period {
    font-size: 0.8rem;
  }
}
.cid-uYNqHyt1sL .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNqHyt1sL .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNqHyt1sL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqHyt1sL .mbr-text {
  color: #ffffff;
}
.cid-uYNqHyt1sL .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNqHyt1sL .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNqHyt1sL .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNqHyt1sL .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqyF7Gzur {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqyF7Gzur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqyF7Gzur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqyF7Gzur .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqyF7Gzur .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqyF7Gzur .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqyF7Gzur .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqyF7Gzur .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqyF7Gzur .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqyF7Gzur .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqyF7Gzur .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqyF7Gzur .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqyF7Gzur [class^="socicon-"]:before,
.cid-uuqyF7Gzur [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqyF7Gzur .mbr-section-title,
.cid-uuqyF7Gzur .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqyF8m306 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqyF8m306 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqyF8m306 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqyF8m306 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqyF8m306 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqyF8m306 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqyF8m306 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqyF8m306 .mbr-text {
  color: #ffffff;
}
.cid-uuqyF8m306 .card-title {
  color: #ffffff;
}
.cid-uuqyF8m306 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqyF8m306 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqyF8m306 .link {
  color: #4479d9;
}
.cid-uuqyF99eBQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqyF99eBQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqyF99eBQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqyF99eBQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqyF99eBQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqyF99eBQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqyF99eBQ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqyF99eBQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqyF99eBQ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqBlnF6CE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqBlnF6CE nav.navbar {
  position: fixed;
}
.cid-uuqBlnF6CE .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-uuqBlnF6CE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqBlnF6CE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqBlnF6CE .dropdown-item:hover,
.cid-uuqBlnF6CE .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqBlnF6CE .dropdown-item:hover span {
  color: white;
}
.cid-uuqBlnF6CE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqBlnF6CE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqBlnF6CE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqBlnF6CE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqBlnF6CE .nav-link {
  position: relative;
}
.cid-uuqBlnF6CE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqBlnF6CE .container {
    flex-wrap: wrap;
  }
}
.cid-uuqBlnF6CE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqBlnF6CE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqBlnF6CE .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqBlnF6CE .dropdown-menu,
.cid-uuqBlnF6CE .navbar.opened {
  background: #000000 !important;
}
.cid-uuqBlnF6CE .nav-item:focus,
.cid-uuqBlnF6CE .nav-link:focus {
  outline: none;
}
.cid-uuqBlnF6CE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqBlnF6CE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqBlnF6CE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqBlnF6CE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqBlnF6CE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqBlnF6CE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqBlnF6CE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqBlnF6CE .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqBlnF6CE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqBlnF6CE .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqBlnF6CE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqBlnF6CE .navbar.collapsed {
  justify-content: center;
}
.cid-uuqBlnF6CE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqBlnF6CE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqBlnF6CE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqBlnF6CE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqBlnF6CE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqBlnF6CE .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-uuqBlnF6CE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqBlnF6CE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqBlnF6CE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqBlnF6CE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqBlnF6CE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqBlnF6CE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqBlnF6CE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqBlnF6CE .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-uuqBlnF6CE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqBlnF6CE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqBlnF6CE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqBlnF6CE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqBlnF6CE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqBlnF6CE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqBlnF6CE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqBlnF6CE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqBlnF6CE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqBlnF6CE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqBlnF6CE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqBlnF6CE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqBlnF6CE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqBlnF6CE .dropdown-item.active,
.cid-uuqBlnF6CE .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqBlnF6CE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqBlnF6CE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqBlnF6CE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqBlnF6CE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqBlnF6CE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqBlnF6CE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqBlnF6CE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqBlnF6CE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqBlnF6CE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqBlnF6CE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqBlnF6CE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqBlnF6CE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqBlnF6CE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqBlnF6CE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqBlnF6CE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqBlnF6CE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqBlnF6CE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqBlnF6CE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqBlnF6CE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqBlnF6CE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqBlnF6CE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqBlnF6CE .navbar {
    height: 70px;
  }
  .cid-uuqBlnF6CE .navbar.opened {
    height: auto;
  }
  .cid-uuqBlnF6CE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqBlor88j {
  background-image: url("../../../assets/images/marina-di-chioggia.webp");
}
.cid-uuqBlor88j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqBlor88j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqBlor88j .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqBlor88j .mbr-text,
.cid-uuqBlor88j .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqBlor88j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqBloXfI0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqBloXfI0 img,
.cid-uuqBloXfI0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqBloXfI0 .item:focus,
.cid-uuqBloXfI0 span:focus {
  outline: none;
}
.cid-uuqBloXfI0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqBloXfI0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqBloXfI0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqBloXfI0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqBloXfI0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqBloXfI0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqBloXfI0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqBloXfI0 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqBloXfI0 .mbr-text,
.cid-uuqBloXfI0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqBloXfI0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqBloXfI0 .item-subtitle {
  text-align: left;
}
.cid-uuqBloXfI0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYfj0B6JW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYfj0B6JW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYfj0B6JW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYfj0B6JW .mbr-section-title {
  color: #ffffff;
}
.cid-uZYfj0B6JW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqnUrqZG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqnUrqZG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqnUrqZG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqnUrqZG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqnUrqZG .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqmScvI6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNqmScvI6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqmScvI6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqmScvI6 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNqmScvI6 .number {
  color: #ffffff;
}
.cid-uYNqmScvI6 .period {
  display: block;
}
.cid-uYNqmScvI6 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNqmScvI6 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNqmScvI6 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNqmScvI6 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNqmScvI6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqmScvI6 .mbr-text {
  color: #ffffff;
}
.cid-uYNqmScvI6 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNqmScvI6 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNqmScvI6 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNqmScvI6 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqBlqgmoe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqBlqgmoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqBlqgmoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqBlqgmoe .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqBlqgmoe .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqBlqgmoe .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqBlqgmoe .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqBlqgmoe .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqBlqgmoe .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqBlqgmoe .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqBlqgmoe .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqBlqgmoe .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqBlqgmoe [class^="socicon-"]:before,
.cid-uuqBlqgmoe [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqBlqgmoe .mbr-section-title,
.cid-uuqBlqgmoe .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqBlqUIQ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqBlqUIQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqBlqUIQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqBlqUIQ8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqBlqUIQ8 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqBlqUIQ8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqBlqUIQ8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqBlqUIQ8 .mbr-text {
  color: #ffffff;
}
.cid-uuqBlqUIQ8 .card-title {
  color: #ffffff;
}
.cid-uuqBlqUIQ8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqBlqUIQ8 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqBlqUIQ8 .link {
  color: #4479d9;
}
.cid-uuqBlryPFJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqBlryPFJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqBlryPFJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqBlryPFJ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqBlryPFJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqBlryPFJ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqBlryPFJ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqBlryPFJ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqBlryPFJ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqCCtUNR5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqCCtUNR5 nav.navbar {
  position: fixed;
}
.cid-uuqCCtUNR5 .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-uuqCCtUNR5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqCCtUNR5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqCCtUNR5 .dropdown-item:hover,
.cid-uuqCCtUNR5 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqCCtUNR5 .dropdown-item:hover span {
  color: white;
}
.cid-uuqCCtUNR5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqCCtUNR5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqCCtUNR5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqCCtUNR5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqCCtUNR5 .nav-link {
  position: relative;
}
.cid-uuqCCtUNR5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqCCtUNR5 .container {
    flex-wrap: wrap;
  }
}
.cid-uuqCCtUNR5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqCCtUNR5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqCCtUNR5 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqCCtUNR5 .dropdown-menu,
.cid-uuqCCtUNR5 .navbar.opened {
  background: #000000 !important;
}
.cid-uuqCCtUNR5 .nav-item:focus,
.cid-uuqCCtUNR5 .nav-link:focus {
  outline: none;
}
.cid-uuqCCtUNR5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqCCtUNR5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqCCtUNR5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqCCtUNR5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqCCtUNR5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqCCtUNR5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqCCtUNR5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqCCtUNR5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqCCtUNR5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqCCtUNR5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqCCtUNR5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqCCtUNR5 .navbar.collapsed {
  justify-content: center;
}
.cid-uuqCCtUNR5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqCCtUNR5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqCCtUNR5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqCCtUNR5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqCCtUNR5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqCCtUNR5 .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-uuqCCtUNR5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqCCtUNR5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqCCtUNR5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqCCtUNR5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqCCtUNR5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqCCtUNR5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqCCtUNR5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqCCtUNR5 .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-uuqCCtUNR5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqCCtUNR5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqCCtUNR5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqCCtUNR5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqCCtUNR5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqCCtUNR5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqCCtUNR5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqCCtUNR5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqCCtUNR5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqCCtUNR5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqCCtUNR5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqCCtUNR5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqCCtUNR5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqCCtUNR5 .dropdown-item.active,
.cid-uuqCCtUNR5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqCCtUNR5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqCCtUNR5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqCCtUNR5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqCCtUNR5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqCCtUNR5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqCCtUNR5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqCCtUNR5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqCCtUNR5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqCCtUNR5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqCCtUNR5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqCCtUNR5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqCCtUNR5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqCCtUNR5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqCCtUNR5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqCCtUNR5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqCCtUNR5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqCCtUNR5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqCCtUNR5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqCCtUNR5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqCCtUNR5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqCCtUNR5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqCCtUNR5 .navbar {
    height: 70px;
  }
  .cid-uuqCCtUNR5 .navbar.opened {
    height: auto;
  }
  .cid-uuqCCtUNR5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqCCuGgLP {
  background-image: url("../../../assets/images/pie-pumpkin-plant.webp");
}
.cid-uuqCCuGgLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqCCuGgLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqCCuGgLP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqCCuGgLP .mbr-text,
.cid-uuqCCuGgLP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqCCuGgLP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqCCveRG7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqCCveRG7 img,
.cid-uuqCCveRG7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqCCveRG7 .item:focus,
.cid-uuqCCveRG7 span:focus {
  outline: none;
}
.cid-uuqCCveRG7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqCCveRG7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqCCveRG7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqCCveRG7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqCCveRG7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqCCveRG7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqCCveRG7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqCCveRG7 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqCCveRG7 .mbr-text,
.cid-uuqCCveRG7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqCCveRG7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqCCveRG7 .item-subtitle {
  text-align: left;
}
.cid-uuqCCveRG7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYf2JRGap {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYf2JRGap .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYf2JRGap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYf2JRGap .mbr-section-title {
  color: #ffffff;
}
.cid-uZYf2JRGap .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNq4WcwUG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNq4WcwUG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNq4WcwUG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNq4WcwUG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNq4WcwUG .mbr-section-title {
  color: #ffffff;
}
.cid-uYNq3TYqRH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNq3TYqRH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNq3TYqRH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNq3TYqRH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNq3TYqRH .number {
  color: #ffffff;
}
.cid-uYNq3TYqRH .period {
  display: block;
}
.cid-uYNq3TYqRH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNq3TYqRH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNq3TYqRH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNq3TYqRH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNq3TYqRH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNq3TYqRH .mbr-text {
  color: #ffffff;
}
.cid-uYNq3TYqRH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNq3TYqRH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNq3TYqRH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNq3TYqRH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqCCwuoLP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqCCwuoLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqCCwuoLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqCCwuoLP .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqCCwuoLP .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqCCwuoLP .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqCCwuoLP .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqCCwuoLP .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqCCwuoLP .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqCCwuoLP .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqCCwuoLP .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqCCwuoLP .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqCCwuoLP [class^="socicon-"]:before,
.cid-uuqCCwuoLP [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqCCwuoLP .mbr-section-title,
.cid-uuqCCwuoLP .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqCCx2EtE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqCCx2EtE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqCCx2EtE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqCCx2EtE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqCCx2EtE .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqCCx2EtE .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqCCx2EtE .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqCCx2EtE .mbr-text {
  color: #ffffff;
}
.cid-uuqCCx2EtE .card-title {
  color: #ffffff;
}
.cid-uuqCCx2EtE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqCCx2EtE .mbr-section-title {
  color: #ffffff;
}
.cid-uuqCCx2EtE .link {
  color: #4479d9;
}
.cid-uuqCCxKzuN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqCCxKzuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqCCxKzuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqCCxKzuN .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqCCxKzuN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqCCxKzuN .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqCCxKzuN .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqCCxKzuN div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqCCxKzuN .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqDuR4Onu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqDuR4Onu nav.navbar {
  position: fixed;
}
.cid-uuqDuR4Onu .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-uuqDuR4Onu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqDuR4Onu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqDuR4Onu .dropdown-item:hover,
.cid-uuqDuR4Onu .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqDuR4Onu .dropdown-item:hover span {
  color: white;
}
.cid-uuqDuR4Onu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqDuR4Onu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqDuR4Onu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqDuR4Onu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqDuR4Onu .nav-link {
  position: relative;
}
.cid-uuqDuR4Onu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqDuR4Onu .container {
    flex-wrap: wrap;
  }
}
.cid-uuqDuR4Onu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqDuR4Onu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqDuR4Onu .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqDuR4Onu .dropdown-menu,
.cid-uuqDuR4Onu .navbar.opened {
  background: #000000 !important;
}
.cid-uuqDuR4Onu .nav-item:focus,
.cid-uuqDuR4Onu .nav-link:focus {
  outline: none;
}
.cid-uuqDuR4Onu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqDuR4Onu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqDuR4Onu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqDuR4Onu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqDuR4Onu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqDuR4Onu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqDuR4Onu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqDuR4Onu .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqDuR4Onu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqDuR4Onu .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqDuR4Onu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqDuR4Onu .navbar.collapsed {
  justify-content: center;
}
.cid-uuqDuR4Onu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqDuR4Onu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqDuR4Onu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqDuR4Onu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqDuR4Onu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqDuR4Onu .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-uuqDuR4Onu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqDuR4Onu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqDuR4Onu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqDuR4Onu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqDuR4Onu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqDuR4Onu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqDuR4Onu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqDuR4Onu .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-uuqDuR4Onu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqDuR4Onu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqDuR4Onu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqDuR4Onu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqDuR4Onu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqDuR4Onu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqDuR4Onu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqDuR4Onu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqDuR4Onu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqDuR4Onu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqDuR4Onu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqDuR4Onu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqDuR4Onu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqDuR4Onu .dropdown-item.active,
.cid-uuqDuR4Onu .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqDuR4Onu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqDuR4Onu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqDuR4Onu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqDuR4Onu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqDuR4Onu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqDuR4Onu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqDuR4Onu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqDuR4Onu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqDuR4Onu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqDuR4Onu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqDuR4Onu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqDuR4Onu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqDuR4Onu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqDuR4Onu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqDuR4Onu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqDuR4Onu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqDuR4Onu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqDuR4Onu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqDuR4Onu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqDuR4Onu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqDuR4Onu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqDuR4Onu .navbar {
    height: 70px;
  }
  .cid-uuqDuR4Onu .navbar.opened {
    height: auto;
  }
  .cid-uuqDuR4Onu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqDuRTksw {
  background-image: url("../../../assets/images/scarlet-globe-radish.webp");
}
.cid-uuqDuRTksw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqDuRTksw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqDuRTksw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqDuRTksw .mbr-text,
.cid-uuqDuRTksw .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqDuRTksw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqDuSp1DJ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqDuSp1DJ img,
.cid-uuqDuSp1DJ .item-img {
  width: 100%;
}
.cid-uuqDuSp1DJ .item:focus,
.cid-uuqDuSp1DJ span:focus {
  outline: none;
}
.cid-uuqDuSp1DJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqDuSp1DJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqDuSp1DJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqDuSp1DJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqDuSp1DJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqDuSp1DJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqDuSp1DJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqDuSp1DJ .mbr-section-title {
  color: #ffffff;
}
.cid-uuqDuSp1DJ .mbr-text,
.cid-uuqDuSp1DJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqDuSp1DJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqDuSp1DJ .item-subtitle {
  text-align: left;
}
.cid-uuqDuSp1DJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYeRTAqCM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYeRTAqCM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYeRTAqCM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYeRTAqCM .mbr-section-title {
  color: #ffffff;
}
.cid-uZYeRTAqCM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpTvH8N1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpTvH8N1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpTvH8N1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpTvH8N1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpTvH8N1 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpSqzuu7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpSqzuu7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpSqzuu7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpSqzuu7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpSqzuu7 .number {
  color: #ffffff;
}
.cid-uYNpSqzuu7 .period {
  display: block;
}
.cid-uYNpSqzuu7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpSqzuu7 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpSqzuu7 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpSqzuu7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpSqzuu7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpSqzuu7 .mbr-text {
  color: #ffffff;
}
.cid-uYNpSqzuu7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpSqzuu7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpSqzuu7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpSqzuu7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqDuTGi60 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqDuTGi60 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqDuTGi60 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqDuTGi60 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqDuTGi60 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqDuTGi60 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqDuTGi60 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqDuTGi60 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqDuTGi60 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqDuTGi60 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqDuTGi60 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqDuTGi60 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqDuTGi60 [class^="socicon-"]:before,
.cid-uuqDuTGi60 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqDuTGi60 .mbr-section-title,
.cid-uuqDuTGi60 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqDuUeKSS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqDuUeKSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqDuUeKSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqDuUeKSS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqDuUeKSS .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqDuUeKSS .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqDuUeKSS .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqDuUeKSS .mbr-text {
  color: #ffffff;
}
.cid-uuqDuUeKSS .card-title {
  color: #ffffff;
}
.cid-uuqDuUeKSS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqDuUeKSS .mbr-section-title {
  color: #ffffff;
}
.cid-uuqDuUeKSS .link {
  color: #4479d9;
}
.cid-uuqDuUTejw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqDuUTejw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqDuUTejw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqDuUTejw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqDuUTejw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqDuUTejw .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqDuUTejw .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqDuUTejw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqDuUTejw .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqEjHCxF1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqEjHCxF1 nav.navbar {
  position: fixed;
}
.cid-uuqEjHCxF1 .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-uuqEjHCxF1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqEjHCxF1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqEjHCxF1 .dropdown-item:hover,
.cid-uuqEjHCxF1 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqEjHCxF1 .dropdown-item:hover span {
  color: white;
}
.cid-uuqEjHCxF1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqEjHCxF1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqEjHCxF1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqEjHCxF1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqEjHCxF1 .nav-link {
  position: relative;
}
.cid-uuqEjHCxF1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqEjHCxF1 .container {
    flex-wrap: wrap;
  }
}
.cid-uuqEjHCxF1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqEjHCxF1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqEjHCxF1 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqEjHCxF1 .dropdown-menu,
.cid-uuqEjHCxF1 .navbar.opened {
  background: #000000 !important;
}
.cid-uuqEjHCxF1 .nav-item:focus,
.cid-uuqEjHCxF1 .nav-link:focus {
  outline: none;
}
.cid-uuqEjHCxF1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqEjHCxF1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqEjHCxF1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqEjHCxF1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqEjHCxF1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqEjHCxF1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqEjHCxF1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqEjHCxF1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqEjHCxF1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqEjHCxF1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqEjHCxF1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqEjHCxF1 .navbar.collapsed {
  justify-content: center;
}
.cid-uuqEjHCxF1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqEjHCxF1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqEjHCxF1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqEjHCxF1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqEjHCxF1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqEjHCxF1 .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-uuqEjHCxF1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqEjHCxF1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqEjHCxF1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqEjHCxF1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqEjHCxF1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqEjHCxF1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqEjHCxF1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqEjHCxF1 .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-uuqEjHCxF1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqEjHCxF1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqEjHCxF1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqEjHCxF1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqEjHCxF1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqEjHCxF1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqEjHCxF1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqEjHCxF1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqEjHCxF1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqEjHCxF1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqEjHCxF1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqEjHCxF1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqEjHCxF1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqEjHCxF1 .dropdown-item.active,
.cid-uuqEjHCxF1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqEjHCxF1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqEjHCxF1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqEjHCxF1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqEjHCxF1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqEjHCxF1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqEjHCxF1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqEjHCxF1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqEjHCxF1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqEjHCxF1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqEjHCxF1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqEjHCxF1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqEjHCxF1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqEjHCxF1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqEjHCxF1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqEjHCxF1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqEjHCxF1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqEjHCxF1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqEjHCxF1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqEjHCxF1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqEjHCxF1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqEjHCxF1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqEjHCxF1 .navbar {
    height: 70px;
  }
  .cid-uuqEjHCxF1 .navbar.opened {
    height: auto;
  }
  .cid-uuqEjHCxF1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqEjImkfw {
  background-image: url("../../../assets/images/spaghetti-squash-banner.webp");
}
.cid-uuqEjImkfw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqEjImkfw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqEjImkfw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqEjImkfw .mbr-text,
.cid-uuqEjImkfw .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqEjImkfw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqEjIR2zt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqEjIR2zt img,
.cid-uuqEjIR2zt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqEjIR2zt .item:focus,
.cid-uuqEjIR2zt span:focus {
  outline: none;
}
.cid-uuqEjIR2zt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqEjIR2zt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqEjIR2zt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqEjIR2zt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqEjIR2zt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqEjIR2zt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqEjIR2zt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqEjIR2zt .mbr-section-title {
  color: #ffffff;
}
.cid-uuqEjIR2zt .mbr-text,
.cid-uuqEjIR2zt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqEjIR2zt .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqEjIR2zt .item-subtitle {
  text-align: left;
}
.cid-uuqEjIR2zt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYdWbSCPy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYdWbSCPy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYdWbSCPy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYdWbSCPy .mbr-section-title {
  color: #ffffff;
}
.cid-uZYdWbSCPy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpqE8EXD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpqE8EXD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpqE8EXD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpqE8EXD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpqE8EXD .mbr-section-title {
  color: #ffffff;
}
.cid-uYNppcN3lm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNppcN3lm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNppcN3lm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNppcN3lm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNppcN3lm .number {
  color: #ffffff;
}
.cid-uYNppcN3lm .period {
  display: block;
}
.cid-uYNppcN3lm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNppcN3lm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNppcN3lm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNppcN3lm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNppcN3lm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNppcN3lm .mbr-text {
  color: #ffffff;
}
.cid-uYNppcN3lm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNppcN3lm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNppcN3lm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNppcN3lm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqEjKVcnR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqEjKVcnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqEjKVcnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqEjKVcnR .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqEjKVcnR .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqEjKVcnR .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqEjKVcnR .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqEjKVcnR .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqEjKVcnR .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqEjKVcnR .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqEjKVcnR .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqEjKVcnR .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqEjKVcnR [class^="socicon-"]:before,
.cid-uuqEjKVcnR [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqEjKVcnR .mbr-section-title,
.cid-uuqEjKVcnR .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqEjLw94n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqEjLw94n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqEjLw94n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqEjLw94n .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqEjLw94n .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqEjLw94n .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqEjLw94n .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqEjLw94n .mbr-text {
  color: #ffffff;
}
.cid-uuqEjLw94n .card-title {
  color: #ffffff;
}
.cid-uuqEjLw94n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqEjLw94n .mbr-section-title {
  color: #ffffff;
}
.cid-uuqEjLw94n .link {
  color: #4479d9;
}
.cid-uuqEjMeHHl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqEjMeHHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqEjMeHHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqEjMeHHl .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqEjMeHHl .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqEjMeHHl .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqEjMeHHl .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqEjMeHHl div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqEjMeHHl .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqFbPMOY0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqFbPMOY0 nav.navbar {
  position: fixed;
}
.cid-uuqFbPMOY0 .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-uuqFbPMOY0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqFbPMOY0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqFbPMOY0 .dropdown-item:hover,
.cid-uuqFbPMOY0 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqFbPMOY0 .dropdown-item:hover span {
  color: white;
}
.cid-uuqFbPMOY0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqFbPMOY0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqFbPMOY0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqFbPMOY0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqFbPMOY0 .nav-link {
  position: relative;
}
.cid-uuqFbPMOY0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqFbPMOY0 .container {
    flex-wrap: wrap;
  }
}
.cid-uuqFbPMOY0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqFbPMOY0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqFbPMOY0 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqFbPMOY0 .dropdown-menu,
.cid-uuqFbPMOY0 .navbar.opened {
  background: #000000 !important;
}
.cid-uuqFbPMOY0 .nav-item:focus,
.cid-uuqFbPMOY0 .nav-link:focus {
  outline: none;
}
.cid-uuqFbPMOY0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqFbPMOY0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqFbPMOY0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqFbPMOY0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqFbPMOY0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqFbPMOY0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqFbPMOY0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqFbPMOY0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqFbPMOY0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqFbPMOY0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqFbPMOY0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqFbPMOY0 .navbar.collapsed {
  justify-content: center;
}
.cid-uuqFbPMOY0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqFbPMOY0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqFbPMOY0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqFbPMOY0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqFbPMOY0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqFbPMOY0 .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-uuqFbPMOY0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqFbPMOY0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqFbPMOY0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqFbPMOY0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqFbPMOY0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqFbPMOY0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqFbPMOY0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqFbPMOY0 .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-uuqFbPMOY0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqFbPMOY0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqFbPMOY0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqFbPMOY0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqFbPMOY0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqFbPMOY0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqFbPMOY0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqFbPMOY0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqFbPMOY0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqFbPMOY0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqFbPMOY0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqFbPMOY0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqFbPMOY0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqFbPMOY0 .dropdown-item.active,
.cid-uuqFbPMOY0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqFbPMOY0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqFbPMOY0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqFbPMOY0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqFbPMOY0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqFbPMOY0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqFbPMOY0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqFbPMOY0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqFbPMOY0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqFbPMOY0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqFbPMOY0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqFbPMOY0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqFbPMOY0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqFbPMOY0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqFbPMOY0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqFbPMOY0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqFbPMOY0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqFbPMOY0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqFbPMOY0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqFbPMOY0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqFbPMOY0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqFbPMOY0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqFbPMOY0 .navbar {
    height: 70px;
  }
  .cid-uuqFbPMOY0 .navbar.opened {
    height: auto;
  }
  .cid-uuqFbPMOY0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqFbQxGtk {
  background-image: url("../../../assets/images/tahitian-squash-banner.webp");
}
.cid-uuqFbQxGtk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqFbQxGtk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqFbQxGtk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqFbQxGtk .mbr-text,
.cid-uuqFbQxGtk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqFbQxGtk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqFbR3h1S {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqFbR3h1S img,
.cid-uuqFbR3h1S .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqFbR3h1S .item:focus,
.cid-uuqFbR3h1S span:focus {
  outline: none;
}
.cid-uuqFbR3h1S .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqFbR3h1S .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqFbR3h1S .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqFbR3h1S .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqFbR3h1S .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqFbR3h1S .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqFbR3h1S .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqFbR3h1S .mbr-section-title {
  color: #ffffff;
}
.cid-uuqFbR3h1S .mbr-text,
.cid-uuqFbR3h1S .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqFbR3h1S .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqFbR3h1S .item-subtitle {
  text-align: left;
}
.cid-uuqFbR3h1S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYdCa4hHc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYdCa4hHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYdCa4hHc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYdCa4hHc .mbr-section-title {
  color: #ffffff;
}
.cid-uZYdCa4hHc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpk4uclW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpk4uclW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpk4uclW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpk4uclW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpk4uclW .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpiFU7Gj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpiFU7Gj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpiFU7Gj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpiFU7Gj .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpiFU7Gj .number {
  color: #ffffff;
}
.cid-uYNpiFU7Gj .period {
  display: block;
}
.cid-uYNpiFU7Gj .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpiFU7Gj .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpiFU7Gj .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpiFU7Gj .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpiFU7Gj .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpiFU7Gj .mbr-text {
  color: #ffffff;
}
.cid-uYNpiFU7Gj .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpiFU7Gj .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpiFU7Gj .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpiFU7Gj .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqFbTfG6v {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqFbTfG6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqFbTfG6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqFbTfG6v .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqFbTfG6v .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqFbTfG6v .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqFbTfG6v .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqFbTfG6v .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqFbTfG6v .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqFbTfG6v .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqFbTfG6v .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqFbTfG6v .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqFbTfG6v [class^="socicon-"]:before,
.cid-uuqFbTfG6v [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqFbTfG6v .mbr-section-title,
.cid-uuqFbTfG6v .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqFbTSsfU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqFbTSsfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqFbTSsfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqFbTSsfU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqFbTSsfU .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqFbTSsfU .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqFbTSsfU .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqFbTSsfU .mbr-text {
  color: #ffffff;
}
.cid-uuqFbTSsfU .card-title {
  color: #ffffff;
}
.cid-uuqFbTSsfU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqFbTSsfU .mbr-section-title {
  color: #ffffff;
}
.cid-uuqFbTSsfU .link {
  color: #4479d9;
}
.cid-uuqFbUBsl2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqFbUBsl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqFbUBsl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqFbUBsl2 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqFbUBsl2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqFbUBsl2 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqFbUBsl2 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqFbUBsl2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqFbUBsl2 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqITHC3UK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqITHC3UK nav.navbar {
  position: fixed;
}
.cid-uuqITHC3UK .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-uuqITHC3UK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqITHC3UK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqITHC3UK .dropdown-item:hover,
.cid-uuqITHC3UK .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqITHC3UK .dropdown-item:hover span {
  color: white;
}
.cid-uuqITHC3UK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqITHC3UK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqITHC3UK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqITHC3UK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqITHC3UK .nav-link {
  position: relative;
}
.cid-uuqITHC3UK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqITHC3UK .container {
    flex-wrap: wrap;
  }
}
.cid-uuqITHC3UK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqITHC3UK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqITHC3UK .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqITHC3UK .dropdown-menu,
.cid-uuqITHC3UK .navbar.opened {
  background: #000000 !important;
}
.cid-uuqITHC3UK .nav-item:focus,
.cid-uuqITHC3UK .nav-link:focus {
  outline: none;
}
.cid-uuqITHC3UK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqITHC3UK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqITHC3UK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqITHC3UK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqITHC3UK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqITHC3UK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqITHC3UK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqITHC3UK .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqITHC3UK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqITHC3UK .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqITHC3UK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqITHC3UK .navbar.collapsed {
  justify-content: center;
}
.cid-uuqITHC3UK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqITHC3UK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqITHC3UK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqITHC3UK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqITHC3UK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqITHC3UK .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-uuqITHC3UK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqITHC3UK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqITHC3UK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqITHC3UK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqITHC3UK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqITHC3UK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqITHC3UK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqITHC3UK .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-uuqITHC3UK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqITHC3UK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqITHC3UK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqITHC3UK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqITHC3UK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqITHC3UK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqITHC3UK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqITHC3UK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqITHC3UK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqITHC3UK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqITHC3UK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqITHC3UK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqITHC3UK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqITHC3UK .dropdown-item.active,
.cid-uuqITHC3UK .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqITHC3UK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqITHC3UK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqITHC3UK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqITHC3UK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqITHC3UK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqITHC3UK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqITHC3UK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqITHC3UK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqITHC3UK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqITHC3UK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqITHC3UK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqITHC3UK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqITHC3UK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqITHC3UK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqITHC3UK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqITHC3UK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqITHC3UK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqITHC3UK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqITHC3UK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqITHC3UK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqITHC3UK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqITHC3UK .navbar {
    height: 70px;
  }
  .cid-uuqITHC3UK .navbar.opened {
    height: auto;
  }
  .cid-uuqITHC3UK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqITIpst1 {
  background-image: url("../../../assets/images/zucchini-squash-banner.webp");
}
.cid-uuqITIpst1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqITIpst1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqITIpst1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqITIpst1 .mbr-text,
.cid-uuqITIpst1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqITIpst1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqITJHJxf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqITJHJxf img,
.cid-uuqITJHJxf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqITJHJxf .item:focus,
.cid-uuqITJHJxf span:focus {
  outline: none;
}
.cid-uuqITJHJxf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqITJHJxf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqITJHJxf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqITJHJxf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqITJHJxf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqITJHJxf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqITJHJxf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqITJHJxf .mbr-section-title {
  color: #ffffff;
}
.cid-uuqITJHJxf .mbr-text,
.cid-uuqITJHJxf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqITJHJxf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqITJHJxf .item-subtitle {
  text-align: left;
}
.cid-uuqITJHJxf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYdniRByI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYdniRByI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYdniRByI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYdniRByI .mbr-section-title {
  color: #ffffff;
}
.cid-uZYdniRByI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNo2jztYm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNo2jztYm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNo2jztYm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNo2jztYm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNo2jztYm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNo1098ia {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNo1098ia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNo1098ia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNo1098ia .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNo1098ia .number {
  color: #ffffff;
}
.cid-uYNo1098ia .period {
  display: block;
}
.cid-uYNo1098ia .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNo1098ia .period {
    font-size: 0.8rem;
  }
}
.cid-uYNo1098ia .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNo1098ia .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNo1098ia .mbr-section-title {
  color: #ffffff;
}
.cid-uYNo1098ia .mbr-text {
  color: #ffffff;
}
.cid-uYNo1098ia .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNo1098ia .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNo1098ia .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNo1098ia .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqITLaa85 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqITLaa85 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqITLaa85 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqITLaa85 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqITLaa85 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqITLaa85 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqITLaa85 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqITLaa85 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqITLaa85 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqITLaa85 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqITLaa85 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqITLaa85 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqITLaa85 [class^="socicon-"]:before,
.cid-uuqITLaa85 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqITLaa85 .mbr-section-title,
.cid-uuqITLaa85 .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqITLNxia {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqITLNxia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqITLNxia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqITLNxia .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqITLNxia .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqITLNxia .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqITLNxia .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqITLNxia .mbr-text {
  color: #ffffff;
}
.cid-uuqITLNxia .card-title {
  color: #ffffff;
}
.cid-uuqITLNxia .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqITLNxia .mbr-section-title {
  color: #ffffff;
}
.cid-uuqITLNxia .link {
  color: #4479d9;
}
.cid-uuqITMxO6A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqITMxO6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqITMxO6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqITMxO6A .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqITMxO6A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqITMxO6A .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqITMxO6A .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqITMxO6A div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqITMxO6A .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqJMQoXJh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqJMQoXJh nav.navbar {
  position: fixed;
}
.cid-uuqJMQoXJh .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-uuqJMQoXJh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqJMQoXJh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqJMQoXJh .dropdown-item:hover,
.cid-uuqJMQoXJh .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqJMQoXJh .dropdown-item:hover span {
  color: white;
}
.cid-uuqJMQoXJh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqJMQoXJh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqJMQoXJh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqJMQoXJh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqJMQoXJh .nav-link {
  position: relative;
}
.cid-uuqJMQoXJh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqJMQoXJh .container {
    flex-wrap: wrap;
  }
}
.cid-uuqJMQoXJh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqJMQoXJh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqJMQoXJh .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqJMQoXJh .dropdown-menu,
.cid-uuqJMQoXJh .navbar.opened {
  background: #000000 !important;
}
.cid-uuqJMQoXJh .nav-item:focus,
.cid-uuqJMQoXJh .nav-link:focus {
  outline: none;
}
.cid-uuqJMQoXJh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqJMQoXJh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqJMQoXJh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqJMQoXJh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqJMQoXJh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqJMQoXJh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqJMQoXJh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqJMQoXJh .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqJMQoXJh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqJMQoXJh .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqJMQoXJh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqJMQoXJh .navbar.collapsed {
  justify-content: center;
}
.cid-uuqJMQoXJh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqJMQoXJh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqJMQoXJh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqJMQoXJh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqJMQoXJh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqJMQoXJh .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-uuqJMQoXJh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqJMQoXJh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqJMQoXJh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqJMQoXJh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqJMQoXJh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqJMQoXJh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqJMQoXJh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqJMQoXJh .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-uuqJMQoXJh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqJMQoXJh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqJMQoXJh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqJMQoXJh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqJMQoXJh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqJMQoXJh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqJMQoXJh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqJMQoXJh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqJMQoXJh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqJMQoXJh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqJMQoXJh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqJMQoXJh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqJMQoXJh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqJMQoXJh .dropdown-item.active,
.cid-uuqJMQoXJh .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqJMQoXJh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqJMQoXJh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqJMQoXJh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqJMQoXJh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqJMQoXJh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqJMQoXJh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqJMQoXJh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqJMQoXJh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqJMQoXJh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqJMQoXJh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqJMQoXJh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqJMQoXJh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqJMQoXJh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqJMQoXJh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqJMQoXJh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqJMQoXJh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqJMQoXJh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqJMQoXJh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqJMQoXJh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqJMQoXJh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqJMQoXJh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqJMQoXJh .navbar {
    height: 70px;
  }
  .cid-uuqJMQoXJh .navbar.opened {
    height: auto;
  }
  .cid-uuqJMQoXJh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqJMRbgvF {
  background-image: url("../../../assets/images/zucchino-rampicante-squash-banner.webp");
}
.cid-uuqJMRbgvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqJMRbgvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqJMRbgvF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqJMRbgvF .mbr-text,
.cid-uuqJMRbgvF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqJMRbgvF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqJMSwPQD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqJMSwPQD img,
.cid-uuqJMSwPQD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqJMSwPQD .item:focus,
.cid-uuqJMSwPQD span:focus {
  outline: none;
}
.cid-uuqJMSwPQD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqJMSwPQD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqJMSwPQD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqJMSwPQD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqJMSwPQD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqJMSwPQD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqJMSwPQD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqJMSwPQD .mbr-section-title {
  color: #ffffff;
}
.cid-uuqJMSwPQD .mbr-text,
.cid-uuqJMSwPQD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqJMSwPQD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqJMSwPQD .item-subtitle {
  text-align: left;
}
.cid-uuqJMSwPQD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZY9fYwsU9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZY9fYwsU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZY9fYwsU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZY9fYwsU9 .mbr-section-title {
  color: #ffffff;
}
.cid-uZY9fYwsU9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnW6ct26 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnW6ct26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnW6ct26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnW6ct26 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnW6ct26 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnV8yXCy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnV8yXCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnV8yXCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnV8yXCy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnV8yXCy .number {
  color: #ffffff;
}
.cid-uYNnV8yXCy .period {
  display: block;
}
.cid-uYNnV8yXCy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnV8yXCy .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnV8yXCy .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnV8yXCy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnV8yXCy .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnV8yXCy .mbr-text {
  color: #ffffff;
}
.cid-uYNnV8yXCy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnV8yXCy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnV8yXCy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnV8yXCy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqJMU0KWc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqJMU0KWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqJMU0KWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqJMU0KWc .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqJMU0KWc .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqJMU0KWc .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqJMU0KWc .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqJMU0KWc .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqJMU0KWc .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqJMU0KWc .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqJMU0KWc .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqJMU0KWc .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqJMU0KWc [class^="socicon-"]:before,
.cid-uuqJMU0KWc [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqJMU0KWc .mbr-section-title,
.cid-uuqJMU0KWc .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqJMUDeAA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqJMUDeAA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqJMUDeAA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqJMUDeAA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqJMUDeAA .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqJMUDeAA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqJMUDeAA .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqJMUDeAA .mbr-text {
  color: #ffffff;
}
.cid-uuqJMUDeAA .card-title {
  color: #ffffff;
}
.cid-uuqJMUDeAA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqJMUDeAA .mbr-section-title {
  color: #ffffff;
}
.cid-uuqJMUDeAA .link {
  color: #4479d9;
}
.cid-uuqJMVn43F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqJMVn43F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqJMVn43F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqJMVn43F .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqJMVn43F .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqJMVn43F .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqJMVn43F .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqJMVn43F div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqJMVn43F .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqLMPBp83 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqLMPBp83 nav.navbar {
  position: fixed;
}
.cid-uuqLMPBp83 .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-uuqLMPBp83 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqLMPBp83 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqLMPBp83 .dropdown-item:hover,
.cid-uuqLMPBp83 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqLMPBp83 .dropdown-item:hover span {
  color: white;
}
.cid-uuqLMPBp83 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqLMPBp83 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqLMPBp83 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqLMPBp83 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqLMPBp83 .nav-link {
  position: relative;
}
.cid-uuqLMPBp83 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqLMPBp83 .container {
    flex-wrap: wrap;
  }
}
.cid-uuqLMPBp83 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqLMPBp83 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqLMPBp83 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqLMPBp83 .dropdown-menu,
.cid-uuqLMPBp83 .navbar.opened {
  background: #000000 !important;
}
.cid-uuqLMPBp83 .nav-item:focus,
.cid-uuqLMPBp83 .nav-link:focus {
  outline: none;
}
.cid-uuqLMPBp83 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqLMPBp83 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqLMPBp83 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqLMPBp83 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqLMPBp83 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqLMPBp83 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqLMPBp83 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqLMPBp83 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqLMPBp83 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqLMPBp83 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqLMPBp83 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqLMPBp83 .navbar.collapsed {
  justify-content: center;
}
.cid-uuqLMPBp83 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqLMPBp83 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqLMPBp83 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqLMPBp83 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqLMPBp83 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqLMPBp83 .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-uuqLMPBp83 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqLMPBp83 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqLMPBp83 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqLMPBp83 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqLMPBp83 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqLMPBp83 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqLMPBp83 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqLMPBp83 .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-uuqLMPBp83 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqLMPBp83 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqLMPBp83 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqLMPBp83 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqLMPBp83 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqLMPBp83 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqLMPBp83 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqLMPBp83 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqLMPBp83 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqLMPBp83 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqLMPBp83 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqLMPBp83 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqLMPBp83 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqLMPBp83 .dropdown-item.active,
.cid-uuqLMPBp83 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqLMPBp83 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqLMPBp83 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqLMPBp83 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqLMPBp83 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqLMPBp83 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqLMPBp83 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqLMPBp83 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqLMPBp83 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqLMPBp83 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqLMPBp83 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqLMPBp83 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqLMPBp83 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqLMPBp83 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqLMPBp83 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqLMPBp83 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqLMPBp83 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqLMPBp83 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqLMPBp83 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqLMPBp83 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqLMPBp83 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqLMPBp83 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqLMPBp83 .navbar {
    height: 70px;
  }
  .cid-uuqLMPBp83 .navbar.opened {
    height: auto;
  }
  .cid-uuqLMPBp83 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqLMQmQYg {
  background-image: url("../../../assets/images/wiggins-corn-banner.webp");
}
.cid-uuqLMQmQYg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqLMQmQYg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqLMQmQYg .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqLMQmQYg .mbr-text,
.cid-uuqLMQmQYg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqLMQmQYg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqLMQSmmW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqLMQSmmW img,
.cid-uuqLMQSmmW .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqLMQSmmW .item:focus,
.cid-uuqLMQSmmW span:focus {
  outline: none;
}
.cid-uuqLMQSmmW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqLMQSmmW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqLMQSmmW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqLMQSmmW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqLMQSmmW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqLMQSmmW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqLMQSmmW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqLMQSmmW .mbr-section-title {
  color: #ffffff;
}
.cid-uuqLMQSmmW .mbr-text,
.cid-uuqLMQSmmW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqLMQSmmW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqLMQSmmW .item-subtitle {
  text-align: left;
}
.cid-uuqLMQSmmW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50zqx9ZjG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50zqx9ZjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50zqx9ZjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50zqx9ZjG .mbr-section-title {
  color: #ffffff;
}
.cid-v50zqx9ZjG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNns2zvqx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNns2zvqx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNns2zvqx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNns2zvqx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNns2zvqx .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnqkRQMW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnqkRQMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnqkRQMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnqkRQMW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnqkRQMW .number {
  color: #ffffff;
}
.cid-uYNnqkRQMW .period {
  display: block;
}
.cid-uYNnqkRQMW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnqkRQMW .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnqkRQMW .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnqkRQMW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnqkRQMW .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnqkRQMW .mbr-text {
  color: #ffffff;
}
.cid-uYNnqkRQMW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnqkRQMW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnqkRQMW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnqkRQMW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqLMSaz3O {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqLMSaz3O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqLMSaz3O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqLMSaz3O .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqLMSaz3O .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqLMSaz3O .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqLMSaz3O .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqLMSaz3O .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqLMSaz3O .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqLMSaz3O .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqLMSaz3O .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqLMSaz3O .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqLMSaz3O [class^="socicon-"]:before,
.cid-uuqLMSaz3O [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqLMSaz3O .mbr-section-title,
.cid-uuqLMSaz3O .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqLMSPpB4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqLMSPpB4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqLMSPpB4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqLMSPpB4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqLMSPpB4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqLMSPpB4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqLMSPpB4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqLMSPpB4 .mbr-text {
  color: #ffffff;
}
.cid-uuqLMSPpB4 .card-title {
  color: #ffffff;
}
.cid-uuqLMSPpB4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqLMSPpB4 .mbr-section-title {
  color: #ffffff;
}
.cid-uuqLMSPpB4 .link {
  color: #4479d9;
}
.cid-uuqLMTtSdE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqLMTtSdE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqLMTtSdE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqLMTtSdE .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqLMTtSdE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqLMTtSdE .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqLMTtSdE .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqLMTtSdE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqLMTtSdE .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqN7wenGl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqN7wenGl nav.navbar {
  position: fixed;
}
.cid-uuqN7wenGl .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-uuqN7wenGl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqN7wenGl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqN7wenGl .dropdown-item:hover,
.cid-uuqN7wenGl .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqN7wenGl .dropdown-item:hover span {
  color: white;
}
.cid-uuqN7wenGl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqN7wenGl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqN7wenGl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqN7wenGl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqN7wenGl .nav-link {
  position: relative;
}
.cid-uuqN7wenGl .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqN7wenGl .container {
    flex-wrap: wrap;
  }
}
.cid-uuqN7wenGl .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqN7wenGl .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqN7wenGl .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqN7wenGl .dropdown-menu,
.cid-uuqN7wenGl .navbar.opened {
  background: #000000 !important;
}
.cid-uuqN7wenGl .nav-item:focus,
.cid-uuqN7wenGl .nav-link:focus {
  outline: none;
}
.cid-uuqN7wenGl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqN7wenGl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqN7wenGl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqN7wenGl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqN7wenGl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqN7wenGl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqN7wenGl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqN7wenGl .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqN7wenGl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqN7wenGl .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqN7wenGl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqN7wenGl .navbar.collapsed {
  justify-content: center;
}
.cid-uuqN7wenGl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqN7wenGl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqN7wenGl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqN7wenGl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqN7wenGl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqN7wenGl .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-uuqN7wenGl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqN7wenGl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqN7wenGl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqN7wenGl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqN7wenGl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqN7wenGl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqN7wenGl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqN7wenGl .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-uuqN7wenGl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqN7wenGl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqN7wenGl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqN7wenGl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqN7wenGl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqN7wenGl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqN7wenGl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqN7wenGl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqN7wenGl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqN7wenGl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqN7wenGl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqN7wenGl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqN7wenGl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqN7wenGl .dropdown-item.active,
.cid-uuqN7wenGl .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqN7wenGl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqN7wenGl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqN7wenGl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqN7wenGl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqN7wenGl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqN7wenGl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqN7wenGl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqN7wenGl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqN7wenGl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqN7wenGl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqN7wenGl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqN7wenGl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqN7wenGl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqN7wenGl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqN7wenGl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqN7wenGl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqN7wenGl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqN7wenGl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqN7wenGl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqN7wenGl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqN7wenGl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqN7wenGl .navbar {
    height: 70px;
  }
  .cid-uuqN7wenGl .navbar.opened {
    height: auto;
  }
  .cid-uuqN7wenGl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqN7x7TS0 {
  background-image: url("../../../assets/images/sorghum-banner.webp");
}
.cid-uuqN7x7TS0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqN7x7TS0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqN7x7TS0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqN7x7TS0 .mbr-text,
.cid-uuqN7x7TS0 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqN7x7TS0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqN7xHR4q {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqN7xHR4q img,
.cid-uuqN7xHR4q .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqN7xHR4q .item:focus,
.cid-uuqN7xHR4q span:focus {
  outline: none;
}
.cid-uuqN7xHR4q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqN7xHR4q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqN7xHR4q .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqN7xHR4q .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqN7xHR4q .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqN7xHR4q .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqN7xHR4q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqN7xHR4q .mbr-section-title {
  color: #ffffff;
}
.cid-uuqN7xHR4q .mbr-text,
.cid-uuqN7xHR4q .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqN7xHR4q .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqN7xHR4q .item-subtitle {
  text-align: left;
}
.cid-uuqN7xHR4q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50zuXxXFR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50zuXxXFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50zuXxXFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50zuXxXFR .mbr-section-title {
  color: #ffffff;
}
.cid-v50zuXxXFR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnm4uxIN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnm4uxIN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnm4uxIN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnm4uxIN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnm4uxIN .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnl6sgHa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNnl6sgHa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnl6sgHa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnl6sgHa .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNnl6sgHa .number {
  color: #ffffff;
}
.cid-uYNnl6sgHa .period {
  display: block;
}
.cid-uYNnl6sgHa .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNnl6sgHa .period {
    font-size: 0.8rem;
  }
}
.cid-uYNnl6sgHa .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNnl6sgHa .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNnl6sgHa .mbr-section-title {
  color: #ffffff;
}
.cid-uYNnl6sgHa .mbr-text {
  color: #ffffff;
}
.cid-uYNnl6sgHa .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNnl6sgHa .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNnl6sgHa .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNnl6sgHa .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqN7z74ze {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqN7z74ze .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqN7z74ze .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqN7z74ze .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqN7z74ze .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqN7z74ze .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqN7z74ze .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqN7z74ze .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqN7z74ze .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqN7z74ze .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqN7z74ze .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqN7z74ze .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqN7z74ze [class^="socicon-"]:before,
.cid-uuqN7z74ze [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqN7z74ze .mbr-section-title,
.cid-uuqN7z74ze .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqN7zKcHw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqN7zKcHw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqN7zKcHw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqN7zKcHw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqN7zKcHw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqN7zKcHw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqN7zKcHw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqN7zKcHw .mbr-text {
  color: #ffffff;
}
.cid-uuqN7zKcHw .card-title {
  color: #ffffff;
}
.cid-uuqN7zKcHw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqN7zKcHw .mbr-section-title {
  color: #ffffff;
}
.cid-uuqN7zKcHw .link {
  color: #4479d9;
}
.cid-uuqN7As9CR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqN7As9CR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqN7As9CR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqN7As9CR .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqN7As9CR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqN7As9CR .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqN7As9CR .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqN7As9CR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqN7As9CR .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uut5IHiTsV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uut5IHiTsV nav.navbar {
  position: fixed;
}
.cid-uut5IHiTsV .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-uut5IHiTsV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uut5IHiTsV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uut5IHiTsV .dropdown-item:hover,
.cid-uut5IHiTsV .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uut5IHiTsV .dropdown-item:hover span {
  color: white;
}
.cid-uut5IHiTsV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uut5IHiTsV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uut5IHiTsV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uut5IHiTsV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uut5IHiTsV .nav-link {
  position: relative;
}
.cid-uut5IHiTsV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut5IHiTsV .container {
    flex-wrap: wrap;
  }
}
.cid-uut5IHiTsV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut5IHiTsV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uut5IHiTsV .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uut5IHiTsV .dropdown-menu,
.cid-uut5IHiTsV .navbar.opened {
  background: #000000 !important;
}
.cid-uut5IHiTsV .nav-item:focus,
.cid-uut5IHiTsV .nav-link:focus {
  outline: none;
}
.cid-uut5IHiTsV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uut5IHiTsV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uut5IHiTsV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uut5IHiTsV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uut5IHiTsV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uut5IHiTsV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uut5IHiTsV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uut5IHiTsV .navbar.opened {
  transition: all 0.3s;
}
.cid-uut5IHiTsV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uut5IHiTsV .navbar .navbar-logo img {
  width: auto;
}
.cid-uut5IHiTsV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uut5IHiTsV .navbar.collapsed {
  justify-content: center;
}
.cid-uut5IHiTsV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uut5IHiTsV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uut5IHiTsV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uut5IHiTsV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uut5IHiTsV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uut5IHiTsV .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-uut5IHiTsV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uut5IHiTsV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uut5IHiTsV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uut5IHiTsV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uut5IHiTsV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uut5IHiTsV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uut5IHiTsV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uut5IHiTsV .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-uut5IHiTsV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uut5IHiTsV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uut5IHiTsV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uut5IHiTsV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uut5IHiTsV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uut5IHiTsV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uut5IHiTsV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uut5IHiTsV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uut5IHiTsV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uut5IHiTsV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uut5IHiTsV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uut5IHiTsV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uut5IHiTsV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uut5IHiTsV .dropdown-item.active,
.cid-uut5IHiTsV .dropdown-item:active {
  background-color: transparent;
}
.cid-uut5IHiTsV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uut5IHiTsV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uut5IHiTsV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uut5IHiTsV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uut5IHiTsV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uut5IHiTsV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uut5IHiTsV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uut5IHiTsV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uut5IHiTsV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uut5IHiTsV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uut5IHiTsV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uut5IHiTsV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut5IHiTsV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut5IHiTsV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uut5IHiTsV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut5IHiTsV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uut5IHiTsV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uut5IHiTsV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut5IHiTsV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uut5IHiTsV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uut5IHiTsV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uut5IHiTsV .navbar {
    height: 70px;
  }
  .cid-uut5IHiTsV .navbar.opened {
    height: auto;
  }
  .cid-uut5IHiTsV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uut5II2Khg {
  background-image: url("../../../assets/images/cherokee-purple-tomato-banner.webp");
}
.cid-uut5II2Khg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut5II2Khg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut5II2Khg .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uut5II2Khg .mbr-text,
.cid-uut5II2Khg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uut5II2Khg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uut5IIxkqy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uut5IIxkqy img,
.cid-uut5IIxkqy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uut5IIxkqy .item:focus,
.cid-uut5IIxkqy span:focus {
  outline: none;
}
.cid-uut5IIxkqy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uut5IIxkqy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uut5IIxkqy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uut5IIxkqy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uut5IIxkqy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uut5IIxkqy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uut5IIxkqy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uut5IIxkqy .mbr-section-title {
  color: #ffffff;
}
.cid-uut5IIxkqy .mbr-text,
.cid-uut5IIxkqy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uut5IIxkqy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uut5IIxkqy .item-subtitle {
  text-align: left;
}
.cid-uut5IIxkqy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZY92Pg8Ts {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZY92Pg8Ts .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZY92Pg8Ts .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZY92Pg8Ts .mbr-section-title {
  color: #ffffff;
}
.cid-uZY92Pg8Ts .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnauXneq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNnauXneq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNnauXneq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNnauXneq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNnauXneq .mbr-section-title {
  color: #ffffff;
}
.cid-uYNn9oUuPg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNn9oUuPg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNn9oUuPg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNn9oUuPg .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNn9oUuPg .number {
  color: #ffffff;
}
.cid-uYNn9oUuPg .period {
  display: block;
}
.cid-uYNn9oUuPg .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNn9oUuPg .period {
    font-size: 0.8rem;
  }
}
.cid-uYNn9oUuPg .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNn9oUuPg .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNn9oUuPg .mbr-section-title {
  color: #ffffff;
}
.cid-uYNn9oUuPg .mbr-text {
  color: #ffffff;
}
.cid-uYNn9oUuPg .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNn9oUuPg .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNn9oUuPg .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNn9oUuPg .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uut5IKu1Mv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uut5IKu1Mv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut5IKu1Mv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut5IKu1Mv .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uut5IKu1Mv .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uut5IKu1Mv .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uut5IKu1Mv .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uut5IKu1Mv .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uut5IKu1Mv .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uut5IKu1Mv .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uut5IKu1Mv .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uut5IKu1Mv .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uut5IKu1Mv [class^="socicon-"]:before,
.cid-uut5IKu1Mv [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uut5IKu1Mv .mbr-section-title,
.cid-uut5IKu1Mv .mbr-social-likes {
  color: #ffffff;
}
.cid-uut5IL2x2s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uut5IL2x2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut5IL2x2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut5IL2x2s .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uut5IL2x2s .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uut5IL2x2s .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uut5IL2x2s .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uut5IL2x2s .mbr-text {
  color: #ffffff;
}
.cid-uut5IL2x2s .card-title {
  color: #ffffff;
}
.cid-uut5IL2x2s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uut5IL2x2s .mbr-section-title {
  color: #ffffff;
}
.cid-uut5IL2x2s .link {
  color: #4479d9;
}
.cid-uut5ILGGE6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uut5ILGGE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut5ILGGE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut5ILGGE6 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uut5ILGGE6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uut5ILGGE6 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uut5ILGGE6 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uut5ILGGE6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uut5ILGGE6 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uut72y0Zvw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uut72y0Zvw nav.navbar {
  position: fixed;
}
.cid-uut72y0Zvw .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-uut72y0Zvw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uut72y0Zvw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uut72y0Zvw .dropdown-item:hover,
.cid-uut72y0Zvw .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uut72y0Zvw .dropdown-item:hover span {
  color: white;
}
.cid-uut72y0Zvw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uut72y0Zvw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uut72y0Zvw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uut72y0Zvw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uut72y0Zvw .nav-link {
  position: relative;
}
.cid-uut72y0Zvw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut72y0Zvw .container {
    flex-wrap: wrap;
  }
}
.cid-uut72y0Zvw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut72y0Zvw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uut72y0Zvw .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uut72y0Zvw .dropdown-menu,
.cid-uut72y0Zvw .navbar.opened {
  background: #000000 !important;
}
.cid-uut72y0Zvw .nav-item:focus,
.cid-uut72y0Zvw .nav-link:focus {
  outline: none;
}
.cid-uut72y0Zvw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uut72y0Zvw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uut72y0Zvw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uut72y0Zvw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uut72y0Zvw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uut72y0Zvw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uut72y0Zvw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uut72y0Zvw .navbar.opened {
  transition: all 0.3s;
}
.cid-uut72y0Zvw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uut72y0Zvw .navbar .navbar-logo img {
  width: auto;
}
.cid-uut72y0Zvw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uut72y0Zvw .navbar.collapsed {
  justify-content: center;
}
.cid-uut72y0Zvw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uut72y0Zvw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uut72y0Zvw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uut72y0Zvw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uut72y0Zvw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uut72y0Zvw .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-uut72y0Zvw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uut72y0Zvw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uut72y0Zvw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uut72y0Zvw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uut72y0Zvw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uut72y0Zvw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uut72y0Zvw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uut72y0Zvw .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-uut72y0Zvw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uut72y0Zvw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uut72y0Zvw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uut72y0Zvw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uut72y0Zvw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uut72y0Zvw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uut72y0Zvw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uut72y0Zvw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uut72y0Zvw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uut72y0Zvw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uut72y0Zvw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uut72y0Zvw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uut72y0Zvw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uut72y0Zvw .dropdown-item.active,
.cid-uut72y0Zvw .dropdown-item:active {
  background-color: transparent;
}
.cid-uut72y0Zvw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uut72y0Zvw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uut72y0Zvw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uut72y0Zvw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uut72y0Zvw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uut72y0Zvw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uut72y0Zvw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uut72y0Zvw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uut72y0Zvw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uut72y0Zvw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uut72y0Zvw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uut72y0Zvw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut72y0Zvw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut72y0Zvw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uut72y0Zvw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut72y0Zvw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uut72y0Zvw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uut72y0Zvw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut72y0Zvw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uut72y0Zvw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uut72y0Zvw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uut72y0Zvw .navbar {
    height: 70px;
  }
  .cid-uut72y0Zvw .navbar.opened {
    height: auto;
  }
  .cid-uut72y0Zvw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uut72yLWJo {
  background-image: url("../../../assets/images/veasley-cherry-tomato-banner.webp");
}
.cid-uut72yLWJo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut72yLWJo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut72yLWJo .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uut72yLWJo .mbr-text,
.cid-uut72yLWJo .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uut72yLWJo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uut72znzyl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uut72znzyl img,
.cid-uut72znzyl .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uut72znzyl .item:focus,
.cid-uut72znzyl span:focus {
  outline: none;
}
.cid-uut72znzyl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uut72znzyl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uut72znzyl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uut72znzyl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uut72znzyl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uut72znzyl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uut72znzyl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uut72znzyl .mbr-section-title {
  color: #ffffff;
}
.cid-uut72znzyl .mbr-text,
.cid-uut72znzyl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uut72znzyl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uut72znzyl .item-subtitle {
  text-align: left;
}
.cid-uut72znzyl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZY8Z6MvAW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZY8Z6MvAW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZY8Z6MvAW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZY8Z6MvAW .mbr-section-title {
  color: #ffffff;
}
.cid-uZY8Z6MvAW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNn4VkMPe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNn4VkMPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNn4VkMPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNn4VkMPe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNn4VkMPe .mbr-section-title {
  color: #ffffff;
}
.cid-uYNn40meo6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNn40meo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNn40meo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNn40meo6 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNn40meo6 .number {
  color: #ffffff;
}
.cid-uYNn40meo6 .period {
  display: block;
}
.cid-uYNn40meo6 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNn40meo6 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNn40meo6 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNn40meo6 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNn40meo6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNn40meo6 .mbr-text {
  color: #ffffff;
}
.cid-uYNn40meo6 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNn40meo6 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNn40meo6 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNn40meo6 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uut72BlSOg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uut72BlSOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut72BlSOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut72BlSOg .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uut72BlSOg .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uut72BlSOg .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uut72BlSOg .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uut72BlSOg .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uut72BlSOg .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uut72BlSOg .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uut72BlSOg .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uut72BlSOg .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uut72BlSOg [class^="socicon-"]:before,
.cid-uut72BlSOg [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uut72BlSOg .mbr-section-title,
.cid-uut72BlSOg .mbr-social-likes {
  color: #ffffff;
}
.cid-uut72BUb1j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uut72BUb1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut72BUb1j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut72BUb1j .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uut72BUb1j .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uut72BUb1j .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uut72BUb1j .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uut72BUb1j .mbr-text {
  color: #ffffff;
}
.cid-uut72BUb1j .card-title {
  color: #ffffff;
}
.cid-uut72BUb1j .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uut72BUb1j .mbr-section-title {
  color: #ffffff;
}
.cid-uut72BUb1j .link {
  color: #4479d9;
}
.cid-uut72CzIRC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uut72CzIRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut72CzIRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut72CzIRC .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uut72CzIRC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uut72CzIRC .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uut72CzIRC .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uut72CzIRC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uut72CzIRC .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uut7NiDedJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uut7NiDedJ nav.navbar {
  position: fixed;
}
.cid-uut7NiDedJ .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-uut7NiDedJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uut7NiDedJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uut7NiDedJ .dropdown-item:hover,
.cid-uut7NiDedJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uut7NiDedJ .dropdown-item:hover span {
  color: white;
}
.cid-uut7NiDedJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uut7NiDedJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uut7NiDedJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uut7NiDedJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uut7NiDedJ .nav-link {
  position: relative;
}
.cid-uut7NiDedJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut7NiDedJ .container {
    flex-wrap: wrap;
  }
}
.cid-uut7NiDedJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut7NiDedJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uut7NiDedJ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uut7NiDedJ .dropdown-menu,
.cid-uut7NiDedJ .navbar.opened {
  background: #000000 !important;
}
.cid-uut7NiDedJ .nav-item:focus,
.cid-uut7NiDedJ .nav-link:focus {
  outline: none;
}
.cid-uut7NiDedJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uut7NiDedJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uut7NiDedJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uut7NiDedJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uut7NiDedJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uut7NiDedJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uut7NiDedJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uut7NiDedJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uut7NiDedJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uut7NiDedJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uut7NiDedJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uut7NiDedJ .navbar.collapsed {
  justify-content: center;
}
.cid-uut7NiDedJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uut7NiDedJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uut7NiDedJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uut7NiDedJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uut7NiDedJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uut7NiDedJ .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-uut7NiDedJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uut7NiDedJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uut7NiDedJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uut7NiDedJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uut7NiDedJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uut7NiDedJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uut7NiDedJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uut7NiDedJ .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-uut7NiDedJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uut7NiDedJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uut7NiDedJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uut7NiDedJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uut7NiDedJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uut7NiDedJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uut7NiDedJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uut7NiDedJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uut7NiDedJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uut7NiDedJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uut7NiDedJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uut7NiDedJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uut7NiDedJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uut7NiDedJ .dropdown-item.active,
.cid-uut7NiDedJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uut7NiDedJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uut7NiDedJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uut7NiDedJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uut7NiDedJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uut7NiDedJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uut7NiDedJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uut7NiDedJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uut7NiDedJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uut7NiDedJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uut7NiDedJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uut7NiDedJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uut7NiDedJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut7NiDedJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut7NiDedJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uut7NiDedJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut7NiDedJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uut7NiDedJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uut7NiDedJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut7NiDedJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uut7NiDedJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uut7NiDedJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uut7NiDedJ .navbar {
    height: 70px;
  }
  .cid-uut7NiDedJ .navbar.opened {
    height: auto;
  }
  .cid-uut7NiDedJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uut7NjmmD0 {
  background-image: url("../../../assets/images/marianas-peace-tomato-banner.webp");
}
.cid-uut7NjmmD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut7NjmmD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut7NjmmD0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uut7NjmmD0 .mbr-text,
.cid-uut7NjmmD0 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uut7NjmmD0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uut7NjRb55 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uut7NjRb55 img,
.cid-uut7NjRb55 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uut7NjRb55 .item:focus,
.cid-uut7NjRb55 span:focus {
  outline: none;
}
.cid-uut7NjRb55 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uut7NjRb55 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uut7NjRb55 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uut7NjRb55 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uut7NjRb55 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uut7NjRb55 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uut7NjRb55 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uut7NjRb55 .mbr-section-title {
  color: #ffffff;
}
.cid-uut7NjRb55 .mbr-text,
.cid-uut7NjRb55 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uut7NjRb55 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uut7NjRb55 .item-subtitle {
  text-align: left;
}
.cid-uut7NjRb55 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZY8V4dSe1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZY8V4dSe1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZY8V4dSe1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZY8V4dSe1 .mbr-section-title {
  color: #ffffff;
}
.cid-uZY8V4dSe1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmZvy8DI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmZvy8DI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmZvy8DI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmZvy8DI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmZvy8DI .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmYz9TjD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmYz9TjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmYz9TjD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmYz9TjD .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmYz9TjD .number {
  color: #ffffff;
}
.cid-uYNmYz9TjD .period {
  display: block;
}
.cid-uYNmYz9TjD .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmYz9TjD .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmYz9TjD .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmYz9TjD .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmYz9TjD .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmYz9TjD .mbr-text {
  color: #ffffff;
}
.cid-uYNmYz9TjD .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmYz9TjD .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmYz9TjD .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmYz9TjD .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uut7NlOuGY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uut7NlOuGY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut7NlOuGY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut7NlOuGY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uut7NlOuGY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uut7NlOuGY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uut7NlOuGY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uut7NlOuGY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uut7NlOuGY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uut7NlOuGY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uut7NlOuGY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uut7NlOuGY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uut7NlOuGY [class^="socicon-"]:before,
.cid-uut7NlOuGY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uut7NlOuGY .mbr-section-title,
.cid-uut7NlOuGY .mbr-social-likes {
  color: #ffffff;
}
.cid-uut7NmmhPp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uut7NmmhPp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut7NmmhPp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut7NmmhPp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uut7NmmhPp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uut7NmmhPp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uut7NmmhPp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uut7NmmhPp .mbr-text {
  color: #ffffff;
}
.cid-uut7NmmhPp .card-title {
  color: #ffffff;
}
.cid-uut7NmmhPp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uut7NmmhPp .mbr-section-title {
  color: #ffffff;
}
.cid-uut7NmmhPp .link {
  color: #4479d9;
}
.cid-uut7Nn10n6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uut7Nn10n6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut7Nn10n6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut7Nn10n6 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uut7Nn10n6 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uut7Nn10n6 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uut7Nn10n6 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uut7Nn10n6 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uut7Nn10n6 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uut8R2Vve0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uut8R2Vve0 nav.navbar {
  position: fixed;
}
.cid-uut8R2Vve0 .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-uut8R2Vve0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uut8R2Vve0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uut8R2Vve0 .dropdown-item:hover,
.cid-uut8R2Vve0 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uut8R2Vve0 .dropdown-item:hover span {
  color: white;
}
.cid-uut8R2Vve0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uut8R2Vve0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uut8R2Vve0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uut8R2Vve0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uut8R2Vve0 .nav-link {
  position: relative;
}
.cid-uut8R2Vve0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut8R2Vve0 .container {
    flex-wrap: wrap;
  }
}
.cid-uut8R2Vve0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uut8R2Vve0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uut8R2Vve0 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uut8R2Vve0 .dropdown-menu,
.cid-uut8R2Vve0 .navbar.opened {
  background: #000000 !important;
}
.cid-uut8R2Vve0 .nav-item:focus,
.cid-uut8R2Vve0 .nav-link:focus {
  outline: none;
}
.cid-uut8R2Vve0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uut8R2Vve0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uut8R2Vve0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uut8R2Vve0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uut8R2Vve0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uut8R2Vve0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uut8R2Vve0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uut8R2Vve0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uut8R2Vve0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uut8R2Vve0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uut8R2Vve0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uut8R2Vve0 .navbar.collapsed {
  justify-content: center;
}
.cid-uut8R2Vve0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uut8R2Vve0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uut8R2Vve0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uut8R2Vve0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uut8R2Vve0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uut8R2Vve0 .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-uut8R2Vve0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uut8R2Vve0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uut8R2Vve0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uut8R2Vve0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uut8R2Vve0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uut8R2Vve0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uut8R2Vve0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uut8R2Vve0 .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-uut8R2Vve0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uut8R2Vve0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uut8R2Vve0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uut8R2Vve0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uut8R2Vve0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uut8R2Vve0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uut8R2Vve0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uut8R2Vve0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uut8R2Vve0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uut8R2Vve0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uut8R2Vve0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uut8R2Vve0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uut8R2Vve0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uut8R2Vve0 .dropdown-item.active,
.cid-uut8R2Vve0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uut8R2Vve0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uut8R2Vve0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uut8R2Vve0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uut8R2Vve0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uut8R2Vve0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uut8R2Vve0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uut8R2Vve0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uut8R2Vve0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uut8R2Vve0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uut8R2Vve0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uut8R2Vve0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uut8R2Vve0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut8R2Vve0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uut8R2Vve0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uut8R2Vve0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut8R2Vve0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uut8R2Vve0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uut8R2Vve0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uut8R2Vve0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uut8R2Vve0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uut8R2Vve0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uut8R2Vve0 .navbar {
    height: 70px;
  }
  .cid-uut8R2Vve0 .navbar.opened {
    height: auto;
  }
  .cid-uut8R2Vve0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uut8R3GCBF {
  background-image: url("../../../assets/images/watermelon-beefsteak-tomato-banner.webp");
}
.cid-uut8R3GCBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut8R3GCBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut8R3GCBF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uut8R3GCBF .mbr-text,
.cid-uut8R3GCBF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uut8R3GCBF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uut8R4UIrM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uut8R4UIrM img,
.cid-uut8R4UIrM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uut8R4UIrM .item:focus,
.cid-uut8R4UIrM span:focus {
  outline: none;
}
.cid-uut8R4UIrM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uut8R4UIrM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uut8R4UIrM .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uut8R4UIrM .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uut8R4UIrM .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uut8R4UIrM .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uut8R4UIrM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uut8R4UIrM .mbr-section-title {
  color: #ffffff;
}
.cid-uut8R4UIrM .mbr-text,
.cid-uut8R4UIrM .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uut8R4UIrM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uut8R4UIrM .item-subtitle {
  text-align: left;
}
.cid-uut8R4UIrM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZY8lNF11B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZY8lNF11B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZY8lNF11B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZY8lNF11B .mbr-section-title {
  color: #ffffff;
}
.cid-uZY8lNF11B .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmRp1OC2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmRp1OC2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmRp1OC2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmRp1OC2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmRp1OC2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmQckp40 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmQckp40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmQckp40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmQckp40 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmQckp40 .number {
  color: #ffffff;
}
.cid-uYNmQckp40 .period {
  display: block;
}
.cid-uYNmQckp40 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmQckp40 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmQckp40 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmQckp40 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmQckp40 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmQckp40 .mbr-text {
  color: #ffffff;
}
.cid-uYNmQckp40 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmQckp40 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmQckp40 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmQckp40 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uut8R68uAs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uut8R68uAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut8R68uAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut8R68uAs .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uut8R68uAs .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uut8R68uAs .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uut8R68uAs .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uut8R68uAs .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uut8R68uAs .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uut8R68uAs .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uut8R68uAs .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uut8R68uAs .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uut8R68uAs [class^="socicon-"]:before,
.cid-uut8R68uAs [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uut8R68uAs .mbr-section-title,
.cid-uut8R68uAs .mbr-social-likes {
  color: #ffffff;
}
.cid-uut8R6G4jk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uut8R6G4jk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut8R6G4jk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut8R6G4jk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uut8R6G4jk .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uut8R6G4jk .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uut8R6G4jk .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uut8R6G4jk .mbr-text {
  color: #ffffff;
}
.cid-uut8R6G4jk .card-title {
  color: #ffffff;
}
.cid-uut8R6G4jk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uut8R6G4jk .mbr-section-title {
  color: #ffffff;
}
.cid-uut8R6G4jk .link {
  color: #4479d9;
}
.cid-uut8R7oQyk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uut8R7oQyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uut8R7oQyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uut8R7oQyk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uut8R7oQyk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uut8R7oQyk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uut8R7oQyk .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uut8R7oQyk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uut8R7oQyk .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuta5OkjiY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuta5OkjiY nav.navbar {
  position: fixed;
}
.cid-uuta5OkjiY .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-uuta5OkjiY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuta5OkjiY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuta5OkjiY .dropdown-item:hover,
.cid-uuta5OkjiY .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuta5OkjiY .dropdown-item:hover span {
  color: white;
}
.cid-uuta5OkjiY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuta5OkjiY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuta5OkjiY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuta5OkjiY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuta5OkjiY .nav-link {
  position: relative;
}
.cid-uuta5OkjiY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuta5OkjiY .container {
    flex-wrap: wrap;
  }
}
.cid-uuta5OkjiY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuta5OkjiY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuta5OkjiY .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuta5OkjiY .dropdown-menu,
.cid-uuta5OkjiY .navbar.opened {
  background: #000000 !important;
}
.cid-uuta5OkjiY .nav-item:focus,
.cid-uuta5OkjiY .nav-link:focus {
  outline: none;
}
.cid-uuta5OkjiY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuta5OkjiY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuta5OkjiY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuta5OkjiY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuta5OkjiY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuta5OkjiY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuta5OkjiY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuta5OkjiY .navbar.opened {
  transition: all 0.3s;
}
.cid-uuta5OkjiY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuta5OkjiY .navbar .navbar-logo img {
  width: auto;
}
.cid-uuta5OkjiY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuta5OkjiY .navbar.collapsed {
  justify-content: center;
}
.cid-uuta5OkjiY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuta5OkjiY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuta5OkjiY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuta5OkjiY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuta5OkjiY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuta5OkjiY .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-uuta5OkjiY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuta5OkjiY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuta5OkjiY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuta5OkjiY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuta5OkjiY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuta5OkjiY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuta5OkjiY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuta5OkjiY .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-uuta5OkjiY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuta5OkjiY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuta5OkjiY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuta5OkjiY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuta5OkjiY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuta5OkjiY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuta5OkjiY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuta5OkjiY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuta5OkjiY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuta5OkjiY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuta5OkjiY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuta5OkjiY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuta5OkjiY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuta5OkjiY .dropdown-item.active,
.cid-uuta5OkjiY .dropdown-item:active {
  background-color: transparent;
}
.cid-uuta5OkjiY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuta5OkjiY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuta5OkjiY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuta5OkjiY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuta5OkjiY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuta5OkjiY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuta5OkjiY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuta5OkjiY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuta5OkjiY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuta5OkjiY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuta5OkjiY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuta5OkjiY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuta5OkjiY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuta5OkjiY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuta5OkjiY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuta5OkjiY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuta5OkjiY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuta5OkjiY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuta5OkjiY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuta5OkjiY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuta5OkjiY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuta5OkjiY .navbar {
    height: 70px;
  }
  .cid-uuta5OkjiY .navbar.opened {
    height: auto;
  }
  .cid-uuta5OkjiY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuta5P3TG9 {
  background-image: url("../../../assets/images/marigold-banner.webp");
}
.cid-uuta5P3TG9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuta5P3TG9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuta5P3TG9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuta5P3TG9 .mbr-text,
.cid-uuta5P3TG9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuta5P3TG9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuta5Px6J5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuta5Px6J5 img,
.cid-uuta5Px6J5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuta5Px6J5 .item:focus,
.cid-uuta5Px6J5 span:focus {
  outline: none;
}
.cid-uuta5Px6J5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuta5Px6J5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuta5Px6J5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuta5Px6J5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuta5Px6J5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuta5Px6J5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuta5Px6J5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuta5Px6J5 .mbr-section-title {
  color: #ffffff;
}
.cid-uuta5Px6J5 .mbr-text,
.cid-uuta5Px6J5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuta5Px6J5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuta5Px6J5 .item-subtitle {
  text-align: left;
}
.cid-uuta5Px6J5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWu2yctoG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWu2yctoG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWu2yctoG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWu2yctoG .mbr-section-title {
  color: #ffffff;
}
.cid-uZWu2yctoG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmEKK8iP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmEKK8iP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmEKK8iP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmEKK8iP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmEKK8iP .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmDFwVsk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmDFwVsk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmDFwVsk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmDFwVsk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmDFwVsk .number {
  color: #ffffff;
}
.cid-uYNmDFwVsk .period {
  display: block;
}
.cid-uYNmDFwVsk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmDFwVsk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmDFwVsk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmDFwVsk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmDFwVsk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmDFwVsk .mbr-text {
  color: #ffffff;
}
.cid-uYNmDFwVsk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmDFwVsk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmDFwVsk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmDFwVsk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuta5QOaDK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuta5QOaDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuta5QOaDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuta5QOaDK .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuta5QOaDK .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuta5QOaDK .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuta5QOaDK .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuta5QOaDK .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuta5QOaDK .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuta5QOaDK .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuta5QOaDK .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuta5QOaDK .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuta5QOaDK [class^="socicon-"]:before,
.cid-uuta5QOaDK [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuta5QOaDK .mbr-section-title,
.cid-uuta5QOaDK .mbr-social-likes {
  color: #ffffff;
}
.cid-uuta5RlE4y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuta5RlE4y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuta5RlE4y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuta5RlE4y .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuta5RlE4y .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuta5RlE4y .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuta5RlE4y .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuta5RlE4y .mbr-text {
  color: #ffffff;
}
.cid-uuta5RlE4y .card-title {
  color: #ffffff;
}
.cid-uuta5RlE4y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuta5RlE4y .mbr-section-title {
  color: #ffffff;
}
.cid-uuta5RlE4y .link {
  color: #4479d9;
}
.cid-uuta5RYMJf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuta5RYMJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuta5RYMJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuta5RYMJf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuta5RYMJf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuta5RYMJf .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuta5RYMJf .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuta5RYMJf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuta5RYMJf .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutb5hwe7r {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutb5hwe7r nav.navbar {
  position: fixed;
}
.cid-uutb5hwe7r .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-uutb5hwe7r .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutb5hwe7r .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutb5hwe7r .dropdown-item:hover,
.cid-uutb5hwe7r .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutb5hwe7r .dropdown-item:hover span {
  color: white;
}
.cid-uutb5hwe7r .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutb5hwe7r .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutb5hwe7r .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutb5hwe7r .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutb5hwe7r .nav-link {
  position: relative;
}
.cid-uutb5hwe7r .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutb5hwe7r .container {
    flex-wrap: wrap;
  }
}
.cid-uutb5hwe7r .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutb5hwe7r .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutb5hwe7r .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutb5hwe7r .dropdown-menu,
.cid-uutb5hwe7r .navbar.opened {
  background: #000000 !important;
}
.cid-uutb5hwe7r .nav-item:focus,
.cid-uutb5hwe7r .nav-link:focus {
  outline: none;
}
.cid-uutb5hwe7r .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutb5hwe7r .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutb5hwe7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutb5hwe7r .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutb5hwe7r .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutb5hwe7r .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutb5hwe7r .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutb5hwe7r .navbar.opened {
  transition: all 0.3s;
}
.cid-uutb5hwe7r .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutb5hwe7r .navbar .navbar-logo img {
  width: auto;
}
.cid-uutb5hwe7r .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutb5hwe7r .navbar.collapsed {
  justify-content: center;
}
.cid-uutb5hwe7r .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutb5hwe7r .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutb5hwe7r .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutb5hwe7r .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutb5hwe7r .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutb5hwe7r .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-uutb5hwe7r .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutb5hwe7r .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutb5hwe7r .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutb5hwe7r .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutb5hwe7r .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutb5hwe7r .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutb5hwe7r .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutb5hwe7r .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-uutb5hwe7r .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutb5hwe7r .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutb5hwe7r .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutb5hwe7r .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutb5hwe7r .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutb5hwe7r .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutb5hwe7r .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutb5hwe7r .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutb5hwe7r .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutb5hwe7r .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutb5hwe7r .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutb5hwe7r .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutb5hwe7r .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutb5hwe7r .dropdown-item.active,
.cid-uutb5hwe7r .dropdown-item:active {
  background-color: transparent;
}
.cid-uutb5hwe7r .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutb5hwe7r .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutb5hwe7r .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutb5hwe7r .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutb5hwe7r .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutb5hwe7r .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutb5hwe7r ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutb5hwe7r .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutb5hwe7r button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutb5hwe7r button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutb5hwe7r button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutb5hwe7r button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutb5hwe7r button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutb5hwe7r button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutb5hwe7r nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutb5hwe7r nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutb5hwe7r nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutb5hwe7r nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutb5hwe7r .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutb5hwe7r a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutb5hwe7r .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutb5hwe7r .navbar {
    height: 70px;
  }
  .cid-uutb5hwe7r .navbar.opened {
    height: auto;
  }
  .cid-uutb5hwe7r .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutb5iiLSH {
  background-image: url("../../../assets/images/sunflower-banner.webp");
}
.cid-uutb5iiLSH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutb5iiLSH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutb5iiLSH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutb5iiLSH .mbr-text,
.cid-uutb5iiLSH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutb5iiLSH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutb5iOgxP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uutb5iOgxP img,
.cid-uutb5iOgxP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutb5iOgxP .item:focus,
.cid-uutb5iOgxP span:focus {
  outline: none;
}
.cid-uutb5iOgxP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutb5iOgxP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutb5iOgxP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutb5iOgxP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutb5iOgxP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutb5iOgxP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutb5iOgxP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutb5iOgxP .mbr-section-title {
  color: #ffffff;
}
.cid-uutb5iOgxP .mbr-text,
.cid-uutb5iOgxP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutb5iOgxP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutb5iOgxP .item-subtitle {
  text-align: left;
}
.cid-uutb5iOgxP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWtXZKl2h {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWtXZKl2h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWtXZKl2h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWtXZKl2h .mbr-section-title {
  color: #ffffff;
}
.cid-uZWtXZKl2h .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmxML0kI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmxML0kI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmxML0kI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmxML0kI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmxML0kI .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmwH6iMm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmwH6iMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmwH6iMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmwH6iMm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmwH6iMm .number {
  color: #ffffff;
}
.cid-uYNmwH6iMm .period {
  display: block;
}
.cid-uYNmwH6iMm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmwH6iMm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmwH6iMm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmwH6iMm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmwH6iMm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmwH6iMm .mbr-text {
  color: #ffffff;
}
.cid-uYNmwH6iMm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmwH6iMm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmwH6iMm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmwH6iMm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutb5k5aUk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutb5k5aUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutb5k5aUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutb5k5aUk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutb5k5aUk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutb5k5aUk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutb5k5aUk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutb5k5aUk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutb5k5aUk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutb5k5aUk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutb5k5aUk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutb5k5aUk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutb5k5aUk [class^="socicon-"]:before,
.cid-uutb5k5aUk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutb5k5aUk .mbr-section-title,
.cid-uutb5k5aUk .mbr-social-likes {
  color: #ffffff;
}
.cid-uutb5kDhg0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutb5kDhg0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutb5kDhg0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutb5kDhg0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutb5kDhg0 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutb5kDhg0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutb5kDhg0 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutb5kDhg0 .mbr-text {
  color: #ffffff;
}
.cid-uutb5kDhg0 .card-title {
  color: #ffffff;
}
.cid-uutb5kDhg0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutb5kDhg0 .mbr-section-title {
  color: #ffffff;
}
.cid-uutb5kDhg0 .link {
  color: #4479d9;
}
.cid-uutb5ljFZr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutb5ljFZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutb5ljFZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutb5ljFZr .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutb5ljFZr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutb5ljFZr .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutb5ljFZr .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutb5ljFZr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutb5ljFZr .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutgu1yfgG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutgu1yfgG nav.navbar {
  position: fixed;
}
.cid-uutgu1yfgG .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-uutgu1yfgG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutgu1yfgG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutgu1yfgG .dropdown-item:hover,
.cid-uutgu1yfgG .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutgu1yfgG .dropdown-item:hover span {
  color: white;
}
.cid-uutgu1yfgG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutgu1yfgG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutgu1yfgG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutgu1yfgG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutgu1yfgG .nav-link {
  position: relative;
}
.cid-uutgu1yfgG .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutgu1yfgG .container {
    flex-wrap: wrap;
  }
}
.cid-uutgu1yfgG .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutgu1yfgG .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutgu1yfgG .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutgu1yfgG .dropdown-menu,
.cid-uutgu1yfgG .navbar.opened {
  background: #000000 !important;
}
.cid-uutgu1yfgG .nav-item:focus,
.cid-uutgu1yfgG .nav-link:focus {
  outline: none;
}
.cid-uutgu1yfgG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutgu1yfgG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutgu1yfgG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutgu1yfgG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutgu1yfgG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutgu1yfgG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutgu1yfgG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutgu1yfgG .navbar.opened {
  transition: all 0.3s;
}
.cid-uutgu1yfgG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutgu1yfgG .navbar .navbar-logo img {
  width: auto;
}
.cid-uutgu1yfgG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutgu1yfgG .navbar.collapsed {
  justify-content: center;
}
.cid-uutgu1yfgG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutgu1yfgG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutgu1yfgG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutgu1yfgG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutgu1yfgG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutgu1yfgG .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-uutgu1yfgG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutgu1yfgG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutgu1yfgG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutgu1yfgG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutgu1yfgG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutgu1yfgG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutgu1yfgG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutgu1yfgG .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-uutgu1yfgG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutgu1yfgG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutgu1yfgG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutgu1yfgG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutgu1yfgG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutgu1yfgG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutgu1yfgG .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutgu1yfgG .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutgu1yfgG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutgu1yfgG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutgu1yfgG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutgu1yfgG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutgu1yfgG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutgu1yfgG .dropdown-item.active,
.cid-uutgu1yfgG .dropdown-item:active {
  background-color: transparent;
}
.cid-uutgu1yfgG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutgu1yfgG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutgu1yfgG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutgu1yfgG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutgu1yfgG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutgu1yfgG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutgu1yfgG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutgu1yfgG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutgu1yfgG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutgu1yfgG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutgu1yfgG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutgu1yfgG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutgu1yfgG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutgu1yfgG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutgu1yfgG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutgu1yfgG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutgu1yfgG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutgu1yfgG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutgu1yfgG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutgu1yfgG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutgu1yfgG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutgu1yfgG .navbar {
    height: 70px;
  }
  .cid-uutgu1yfgG .navbar.opened {
    height: auto;
  }
  .cid-uutgu1yfgG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutgu2nFbP {
  background-image: url("../../../assets/images/zinnias-banner.webp");
}
.cid-uutgu2nFbP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutgu2nFbP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutgu2nFbP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutgu2nFbP .mbr-text,
.cid-uutgu2nFbP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutgu2nFbP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutgu3F8uu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutgu3F8uu img,
.cid-uutgu3F8uu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutgu3F8uu .item:focus,
.cid-uutgu3F8uu span:focus {
  outline: none;
}
.cid-uutgu3F8uu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutgu3F8uu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutgu3F8uu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutgu3F8uu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutgu3F8uu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutgu3F8uu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutgu3F8uu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutgu3F8uu .mbr-section-title {
  color: #ffffff;
}
.cid-uutgu3F8uu .mbr-text,
.cid-uutgu3F8uu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutgu3F8uu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutgu3F8uu .item-subtitle {
  text-align: left;
}
.cid-uutgu3F8uu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWts0CIB6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWts0CIB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWts0CIB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWts0CIB6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWts0CIB6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmrPYCYd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNmrPYCYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmrPYCYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmrPYCYd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNmrPYCYd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmqNjRD5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNmqNjRD5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNmqNjRD5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNmqNjRD5 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNmqNjRD5 .number {
  color: #ffffff;
}
.cid-uYNmqNjRD5 .period {
  display: block;
}
.cid-uYNmqNjRD5 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNmqNjRD5 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNmqNjRD5 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNmqNjRD5 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNmqNjRD5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNmqNjRD5 .mbr-text {
  color: #ffffff;
}
.cid-uYNmqNjRD5 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNmqNjRD5 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNmqNjRD5 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNmqNjRD5 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutgu51beh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutgu51beh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutgu51beh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutgu51beh .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutgu51beh .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutgu51beh .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutgu51beh .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutgu51beh .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutgu51beh .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutgu51beh .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutgu51beh .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutgu51beh .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutgu51beh [class^="socicon-"]:before,
.cid-uutgu51beh [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutgu51beh .mbr-section-title,
.cid-uutgu51beh .mbr-social-likes {
  color: #ffffff;
}
.cid-uutgu5CpL4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutgu5CpL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutgu5CpL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutgu5CpL4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutgu5CpL4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutgu5CpL4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutgu5CpL4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutgu5CpL4 .mbr-text {
  color: #ffffff;
}
.cid-uutgu5CpL4 .card-title {
  color: #ffffff;
}
.cid-uutgu5CpL4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutgu5CpL4 .mbr-section-title {
  color: #ffffff;
}
.cid-uutgu5CpL4 .link {
  color: #4479d9;
}
.cid-uutgu6kdft {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutgu6kdft .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutgu6kdft .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutgu6kdft .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutgu6kdft .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutgu6kdft .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutgu6kdft .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutgu6kdft div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutgu6kdft .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutjloyWYC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutjloyWYC nav.navbar {
  position: fixed;
}
.cid-uutjloyWYC .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-uutjloyWYC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutjloyWYC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutjloyWYC .dropdown-item:hover,
.cid-uutjloyWYC .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutjloyWYC .dropdown-item:hover span {
  color: white;
}
.cid-uutjloyWYC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutjloyWYC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutjloyWYC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutjloyWYC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutjloyWYC .nav-link {
  position: relative;
}
.cid-uutjloyWYC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutjloyWYC .container {
    flex-wrap: wrap;
  }
}
.cid-uutjloyWYC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutjloyWYC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutjloyWYC .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutjloyWYC .dropdown-menu,
.cid-uutjloyWYC .navbar.opened {
  background: #000000 !important;
}
.cid-uutjloyWYC .nav-item:focus,
.cid-uutjloyWYC .nav-link:focus {
  outline: none;
}
.cid-uutjloyWYC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutjloyWYC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutjloyWYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutjloyWYC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutjloyWYC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutjloyWYC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutjloyWYC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutjloyWYC .navbar.opened {
  transition: all 0.3s;
}
.cid-uutjloyWYC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutjloyWYC .navbar .navbar-logo img {
  width: auto;
}
.cid-uutjloyWYC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutjloyWYC .navbar.collapsed {
  justify-content: center;
}
.cid-uutjloyWYC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutjloyWYC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutjloyWYC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutjloyWYC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutjloyWYC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutjloyWYC .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-uutjloyWYC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutjloyWYC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutjloyWYC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutjloyWYC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutjloyWYC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutjloyWYC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutjloyWYC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutjloyWYC .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-uutjloyWYC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutjloyWYC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutjloyWYC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutjloyWYC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutjloyWYC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutjloyWYC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutjloyWYC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutjloyWYC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutjloyWYC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutjloyWYC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutjloyWYC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutjloyWYC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutjloyWYC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutjloyWYC .dropdown-item.active,
.cid-uutjloyWYC .dropdown-item:active {
  background-color: transparent;
}
.cid-uutjloyWYC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutjloyWYC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutjloyWYC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutjloyWYC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutjloyWYC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutjloyWYC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutjloyWYC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutjloyWYC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutjloyWYC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutjloyWYC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutjloyWYC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutjloyWYC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutjloyWYC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutjloyWYC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutjloyWYC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutjloyWYC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutjloyWYC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutjloyWYC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutjloyWYC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutjloyWYC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutjloyWYC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutjloyWYC .navbar {
    height: 70px;
  }
  .cid-uutjloyWYC .navbar.opened {
    height: auto;
  }
  .cid-uutjloyWYC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutjlpmkju {
  background-image: url("../../../assets/images/blackberries-banner.webp");
}
.cid-uutjlpmkju .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutjlpmkju .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutjlpmkju .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutjlpmkju .mbr-text,
.cid-uutjlpmkju .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutjlpmkju .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutjlpUeox {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutjlpUeox img,
.cid-uutjlpUeox .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutjlpUeox .item:focus,
.cid-uutjlpUeox span:focus {
  outline: none;
}
.cid-uutjlpUeox .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutjlpUeox .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutjlpUeox .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutjlpUeox .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutjlpUeox .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutjlpUeox .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutjlpUeox .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutjlpUeox .mbr-section-title {
  color: #ffffff;
}
.cid-uutjlpUeox .mbr-text,
.cid-uutjlpUeox .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutjlpUeox .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutjlpUeox .item-subtitle {
  text-align: left;
}
.cid-uutjlpUeox .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWt66gOJO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWt66gOJO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWt66gOJO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWt66gOJO .mbr-section-title {
  color: #ffffff;
}
.cid-uZWt66gOJO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNm90Tn2e {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNm90Tn2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNm90Tn2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNm90Tn2e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNm90Tn2e .mbr-section-title {
  color: #ffffff;
}
.cid-uYNm7E2cot {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNm7E2cot .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNm7E2cot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNm7E2cot .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNm7E2cot .number {
  color: #ffffff;
}
.cid-uYNm7E2cot .period {
  display: block;
}
.cid-uYNm7E2cot .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNm7E2cot .period {
    font-size: 0.8rem;
  }
}
.cid-uYNm7E2cot .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNm7E2cot .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNm7E2cot .mbr-section-title {
  color: #ffffff;
}
.cid-uYNm7E2cot .mbr-text {
  color: #ffffff;
}
.cid-uYNm7E2cot .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNm7E2cot .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNm7E2cot .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNm7E2cot .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutjlsG3ji {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutjlsG3ji .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutjlsG3ji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutjlsG3ji .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutjlsG3ji .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutjlsG3ji .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutjlsG3ji .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutjlsG3ji .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutjlsG3ji .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutjlsG3ji .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutjlsG3ji .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutjlsG3ji .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutjlsG3ji [class^="socicon-"]:before,
.cid-uutjlsG3ji [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutjlsG3ji .mbr-section-title,
.cid-uutjlsG3ji .mbr-social-likes {
  color: #ffffff;
}
.cid-uutjltnUmN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutjltnUmN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutjltnUmN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutjltnUmN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutjltnUmN .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutjltnUmN .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutjltnUmN .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutjltnUmN .mbr-text {
  color: #ffffff;
}
.cid-uutjltnUmN .card-title {
  color: #ffffff;
}
.cid-uutjltnUmN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutjltnUmN .mbr-section-title {
  color: #ffffff;
}
.cid-uutjltnUmN .link {
  color: #4479d9;
}
.cid-uutjlu8Pik {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutjlu8Pik .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutjlu8Pik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutjlu8Pik .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutjlu8Pik .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutjlu8Pik .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutjlu8Pik .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutjlu8Pik div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutjlu8Pik .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutkb89csn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutkb89csn nav.navbar {
  position: fixed;
}
.cid-uutkb89csn .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-uutkb89csn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutkb89csn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutkb89csn .dropdown-item:hover,
.cid-uutkb89csn .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutkb89csn .dropdown-item:hover span {
  color: white;
}
.cid-uutkb89csn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutkb89csn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutkb89csn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutkb89csn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutkb89csn .nav-link {
  position: relative;
}
.cid-uutkb89csn .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutkb89csn .container {
    flex-wrap: wrap;
  }
}
.cid-uutkb89csn .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutkb89csn .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutkb89csn .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutkb89csn .dropdown-menu,
.cid-uutkb89csn .navbar.opened {
  background: #000000 !important;
}
.cid-uutkb89csn .nav-item:focus,
.cid-uutkb89csn .nav-link:focus {
  outline: none;
}
.cid-uutkb89csn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutkb89csn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutkb89csn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutkb89csn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutkb89csn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutkb89csn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutkb89csn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutkb89csn .navbar.opened {
  transition: all 0.3s;
}
.cid-uutkb89csn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutkb89csn .navbar .navbar-logo img {
  width: auto;
}
.cid-uutkb89csn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutkb89csn .navbar.collapsed {
  justify-content: center;
}
.cid-uutkb89csn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutkb89csn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutkb89csn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutkb89csn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutkb89csn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutkb89csn .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-uutkb89csn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutkb89csn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutkb89csn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutkb89csn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutkb89csn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutkb89csn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutkb89csn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutkb89csn .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-uutkb89csn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutkb89csn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutkb89csn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutkb89csn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutkb89csn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutkb89csn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutkb89csn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutkb89csn .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutkb89csn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutkb89csn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutkb89csn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutkb89csn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutkb89csn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutkb89csn .dropdown-item.active,
.cid-uutkb89csn .dropdown-item:active {
  background-color: transparent;
}
.cid-uutkb89csn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutkb89csn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutkb89csn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutkb89csn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutkb89csn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutkb89csn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutkb89csn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutkb89csn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutkb89csn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutkb89csn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutkb89csn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutkb89csn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutkb89csn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutkb89csn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutkb89csn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutkb89csn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutkb89csn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutkb89csn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutkb89csn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutkb89csn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutkb89csn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutkb89csn .navbar {
    height: 70px;
  }
  .cid-uutkb89csn .navbar.opened {
    height: auto;
  }
  .cid-uutkb89csn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutkb8VNRR {
  background-image: url("../../../assets/images/black-cherry-banner.webp");
}
.cid-uutkb8VNRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutkb8VNRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutkb8VNRR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutkb8VNRR .mbr-text,
.cid-uutkb8VNRR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutkb8VNRR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutkb9w9uX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutkb9w9uX img,
.cid-uutkb9w9uX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutkb9w9uX .item:focus,
.cid-uutkb9w9uX span:focus {
  outline: none;
}
.cid-uutkb9w9uX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutkb9w9uX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutkb9w9uX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutkb9w9uX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutkb9w9uX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutkb9w9uX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutkb9w9uX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutkb9w9uX .mbr-section-title {
  color: #ffffff;
}
.cid-uutkb9w9uX .mbr-text,
.cid-uutkb9w9uX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutkb9w9uX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutkb9w9uX .item-subtitle {
  text-align: left;
}
.cid-uutkb9w9uX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWt2rU15P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWt2rU15P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWt2rU15P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWt2rU15P .mbr-section-title {
  color: #ffffff;
}
.cid-uZWt2rU15P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNm2Q11fN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNm2Q11fN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNm2Q11fN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNm2Q11fN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNm2Q11fN .mbr-section-title {
  color: #ffffff;
}
.cid-uYNm1IXiyF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNm1IXiyF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNm1IXiyF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNm1IXiyF .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNm1IXiyF .number {
  color: #ffffff;
}
.cid-uYNm1IXiyF .period {
  display: block;
}
.cid-uYNm1IXiyF .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNm1IXiyF .period {
    font-size: 0.8rem;
  }
}
.cid-uYNm1IXiyF .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNm1IXiyF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNm1IXiyF .mbr-section-title {
  color: #ffffff;
}
.cid-uYNm1IXiyF .mbr-text {
  color: #ffffff;
}
.cid-uYNm1IXiyF .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNm1IXiyF .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNm1IXiyF .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNm1IXiyF .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutkbcin0l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutkbcin0l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutkbcin0l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutkbcin0l .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutkbcin0l .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutkbcin0l .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutkbcin0l .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutkbcin0l .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutkbcin0l .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutkbcin0l .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutkbcin0l .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutkbcin0l .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutkbcin0l [class^="socicon-"]:before,
.cid-uutkbcin0l [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutkbcin0l .mbr-section-title,
.cid-uutkbcin0l .mbr-social-likes {
  color: #ffffff;
}
.cid-uutkbcVMAN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutkbcVMAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutkbcVMAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutkbcVMAN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutkbcVMAN .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutkbcVMAN .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutkbcVMAN .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutkbcVMAN .mbr-text {
  color: #ffffff;
}
.cid-uutkbcVMAN .card-title {
  color: #ffffff;
}
.cid-uutkbcVMAN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutkbcVMAN .mbr-section-title {
  color: #ffffff;
}
.cid-uutkbcVMAN .link {
  color: #4479d9;
}
.cid-uutkbdKxgP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutkbdKxgP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutkbdKxgP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutkbdKxgP .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutkbdKxgP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutkbdKxgP .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutkbdKxgP .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutkbdKxgP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutkbdKxgP .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutmsDaYA1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutmsDaYA1 nav.navbar {
  position: fixed;
}
.cid-uutmsDaYA1 .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-uutmsDaYA1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutmsDaYA1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutmsDaYA1 .dropdown-item:hover,
.cid-uutmsDaYA1 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutmsDaYA1 .dropdown-item:hover span {
  color: white;
}
.cid-uutmsDaYA1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutmsDaYA1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutmsDaYA1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutmsDaYA1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutmsDaYA1 .nav-link {
  position: relative;
}
.cid-uutmsDaYA1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutmsDaYA1 .container {
    flex-wrap: wrap;
  }
}
.cid-uutmsDaYA1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutmsDaYA1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutmsDaYA1 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutmsDaYA1 .dropdown-menu,
.cid-uutmsDaYA1 .navbar.opened {
  background: #000000 !important;
}
.cid-uutmsDaYA1 .nav-item:focus,
.cid-uutmsDaYA1 .nav-link:focus {
  outline: none;
}
.cid-uutmsDaYA1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutmsDaYA1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutmsDaYA1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutmsDaYA1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutmsDaYA1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutmsDaYA1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutmsDaYA1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutmsDaYA1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uutmsDaYA1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutmsDaYA1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uutmsDaYA1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutmsDaYA1 .navbar.collapsed {
  justify-content: center;
}
.cid-uutmsDaYA1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutmsDaYA1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutmsDaYA1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutmsDaYA1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutmsDaYA1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutmsDaYA1 .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-uutmsDaYA1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutmsDaYA1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutmsDaYA1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutmsDaYA1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutmsDaYA1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutmsDaYA1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutmsDaYA1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutmsDaYA1 .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-uutmsDaYA1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutmsDaYA1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutmsDaYA1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutmsDaYA1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutmsDaYA1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutmsDaYA1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutmsDaYA1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutmsDaYA1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutmsDaYA1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutmsDaYA1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutmsDaYA1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutmsDaYA1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutmsDaYA1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutmsDaYA1 .dropdown-item.active,
.cid-uutmsDaYA1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uutmsDaYA1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutmsDaYA1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutmsDaYA1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutmsDaYA1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutmsDaYA1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutmsDaYA1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutmsDaYA1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutmsDaYA1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutmsDaYA1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutmsDaYA1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutmsDaYA1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutmsDaYA1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutmsDaYA1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutmsDaYA1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutmsDaYA1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutmsDaYA1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutmsDaYA1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutmsDaYA1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutmsDaYA1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutmsDaYA1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutmsDaYA1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutmsDaYA1 .navbar {
    height: 70px;
  }
  .cid-uutmsDaYA1 .navbar.opened {
    height: auto;
  }
  .cid-uutmsDaYA1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutmsDWWa7 {
  background-image: url("../../../assets/images/elderberry-banner.webp");
}
.cid-uutmsDWWa7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutmsDWWa7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutmsDWWa7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutmsDWWa7 .mbr-text,
.cid-uutmsDWWa7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutmsDWWa7 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutmsEySys {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutmsEySys img,
.cid-uutmsEySys .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutmsEySys .item:focus,
.cid-uutmsEySys span:focus {
  outline: none;
}
.cid-uutmsEySys .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutmsEySys .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutmsEySys .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutmsEySys .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutmsEySys .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutmsEySys .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutmsEySys .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutmsEySys .mbr-section-title {
  color: #ffffff;
}
.cid-uutmsEySys .mbr-text,
.cid-uutmsEySys .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutmsEySys .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutmsEySys .item-subtitle {
  text-align: left;
}
.cid-uutmsEySys .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWsYbRZsV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWsYbRZsV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWsYbRZsV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWsYbRZsV .mbr-section-title {
  color: #ffffff;
}
.cid-uZWsYbRZsV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlXU3LLr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNlXU3LLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlXU3LLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlXU3LLr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlXU3LLr .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlWVeA4v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlWVeA4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlWVeA4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlWVeA4v .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlWVeA4v .number {
  color: #ffffff;
}
.cid-uYNlWVeA4v .period {
  display: block;
}
.cid-uYNlWVeA4v .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlWVeA4v .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlWVeA4v .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlWVeA4v .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlWVeA4v .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlWVeA4v .mbr-text {
  color: #ffffff;
}
.cid-uYNlWVeA4v .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlWVeA4v .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlWVeA4v .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlWVeA4v .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutmsHmhNm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutmsHmhNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutmsHmhNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutmsHmhNm .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutmsHmhNm .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutmsHmhNm .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutmsHmhNm .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutmsHmhNm .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutmsHmhNm .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutmsHmhNm .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutmsHmhNm .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutmsHmhNm .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutmsHmhNm [class^="socicon-"]:before,
.cid-uutmsHmhNm [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutmsHmhNm .mbr-section-title,
.cid-uutmsHmhNm .mbr-social-likes {
  color: #ffffff;
}
.cid-uutmsHYQH4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutmsHYQH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutmsHYQH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutmsHYQH4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutmsHYQH4 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutmsHYQH4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutmsHYQH4 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutmsHYQH4 .mbr-text {
  color: #ffffff;
}
.cid-uutmsHYQH4 .card-title {
  color: #ffffff;
}
.cid-uutmsHYQH4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutmsHYQH4 .mbr-section-title {
  color: #ffffff;
}
.cid-uutmsHYQH4 .link {
  color: #4479d9;
}
.cid-uutmsIIi6T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutmsIIi6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutmsIIi6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutmsIIi6T .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutmsIIi6T .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutmsIIi6T .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutmsIIi6T .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutmsIIi6T div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutmsIIi6T .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutoXCqmCp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutoXCqmCp nav.navbar {
  position: fixed;
}
.cid-uutoXCqmCp .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-uutoXCqmCp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutoXCqmCp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutoXCqmCp .dropdown-item:hover,
.cid-uutoXCqmCp .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutoXCqmCp .dropdown-item:hover span {
  color: white;
}
.cid-uutoXCqmCp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutoXCqmCp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutoXCqmCp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutoXCqmCp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutoXCqmCp .nav-link {
  position: relative;
}
.cid-uutoXCqmCp .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutoXCqmCp .container {
    flex-wrap: wrap;
  }
}
.cid-uutoXCqmCp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutoXCqmCp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutoXCqmCp .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutoXCqmCp .dropdown-menu,
.cid-uutoXCqmCp .navbar.opened {
  background: #000000 !important;
}
.cid-uutoXCqmCp .nav-item:focus,
.cid-uutoXCqmCp .nav-link:focus {
  outline: none;
}
.cid-uutoXCqmCp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutoXCqmCp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutoXCqmCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutoXCqmCp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutoXCqmCp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutoXCqmCp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutoXCqmCp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutoXCqmCp .navbar.opened {
  transition: all 0.3s;
}
.cid-uutoXCqmCp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutoXCqmCp .navbar .navbar-logo img {
  width: auto;
}
.cid-uutoXCqmCp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutoXCqmCp .navbar.collapsed {
  justify-content: center;
}
.cid-uutoXCqmCp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutoXCqmCp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutoXCqmCp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutoXCqmCp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutoXCqmCp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutoXCqmCp .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-uutoXCqmCp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutoXCqmCp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutoXCqmCp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutoXCqmCp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutoXCqmCp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutoXCqmCp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutoXCqmCp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutoXCqmCp .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-uutoXCqmCp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutoXCqmCp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutoXCqmCp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutoXCqmCp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutoXCqmCp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutoXCqmCp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutoXCqmCp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutoXCqmCp .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutoXCqmCp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutoXCqmCp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutoXCqmCp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutoXCqmCp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutoXCqmCp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutoXCqmCp .dropdown-item.active,
.cid-uutoXCqmCp .dropdown-item:active {
  background-color: transparent;
}
.cid-uutoXCqmCp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutoXCqmCp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutoXCqmCp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutoXCqmCp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutoXCqmCp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutoXCqmCp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutoXCqmCp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutoXCqmCp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutoXCqmCp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutoXCqmCp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutoXCqmCp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutoXCqmCp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutoXCqmCp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutoXCqmCp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutoXCqmCp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutoXCqmCp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutoXCqmCp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutoXCqmCp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutoXCqmCp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutoXCqmCp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutoXCqmCp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutoXCqmCp .navbar {
    height: 70px;
  }
  .cid-uutoXCqmCp .navbar.opened {
    height: auto;
  }
  .cid-uutoXCqmCp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutoXDdXHL {
  background-image: url("../../../assets/images/muscadine-grapes.webp");
}
.cid-uutoXDdXHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutoXDdXHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutoXDdXHL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutoXDdXHL .mbr-text,
.cid-uutoXDdXHL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutoXDdXHL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutoXEARVp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutoXEARVp img,
.cid-uutoXEARVp .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutoXEARVp .item:focus,
.cid-uutoXEARVp span:focus {
  outline: none;
}
.cid-uutoXEARVp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutoXEARVp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutoXEARVp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutoXEARVp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutoXEARVp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutoXEARVp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutoXEARVp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutoXEARVp .mbr-section-title {
  color: #ffffff;
}
.cid-uutoXEARVp .mbr-text,
.cid-uutoXEARVp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutoXEARVp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutoXEARVp .item-subtitle {
  text-align: left;
}
.cid-uutoXEARVp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWsS14lOF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWsS14lOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWsS14lOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWsS14lOF .mbr-section-title {
  color: #ffffff;
}
.cid-uZWsS14lOF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlSGrSbJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNlSGrSbJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlSGrSbJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlSGrSbJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlSGrSbJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlRJwUAY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlRJwUAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlRJwUAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlRJwUAY .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlRJwUAY .number {
  color: #ffffff;
}
.cid-uYNlRJwUAY .period {
  display: block;
}
.cid-uYNlRJwUAY .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlRJwUAY .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlRJwUAY .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlRJwUAY .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlRJwUAY .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlRJwUAY .mbr-text {
  color: #ffffff;
}
.cid-uYNlRJwUAY .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlRJwUAY .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlRJwUAY .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlRJwUAY .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutoXGD4Cr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutoXGD4Cr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutoXGD4Cr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutoXGD4Cr .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutoXGD4Cr .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutoXGD4Cr .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutoXGD4Cr .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutoXGD4Cr .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutoXGD4Cr .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutoXGD4Cr .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutoXGD4Cr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutoXGD4Cr .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutoXGD4Cr [class^="socicon-"]:before,
.cid-uutoXGD4Cr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutoXGD4Cr .mbr-section-title,
.cid-uutoXGD4Cr .mbr-social-likes {
  color: #ffffff;
}
.cid-uutoXHkka9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutoXHkka9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutoXHkka9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutoXHkka9 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutoXHkka9 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutoXHkka9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutoXHkka9 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutoXHkka9 .mbr-text {
  color: #ffffff;
}
.cid-uutoXHkka9 .card-title {
  color: #ffffff;
}
.cid-uutoXHkka9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutoXHkka9 .mbr-section-title {
  color: #ffffff;
}
.cid-uutoXHkka9 .link {
  color: #4479d9;
}
.cid-uutoXI2Mo4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutoXI2Mo4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutoXI2Mo4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutoXI2Mo4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutoXI2Mo4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutoXI2Mo4 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutoXI2Mo4 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutoXI2Mo4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutoXI2Mo4 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutqorAWeJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutqorAWeJ nav.navbar {
  position: fixed;
}
.cid-uutqorAWeJ .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-uutqorAWeJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutqorAWeJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutqorAWeJ .dropdown-item:hover,
.cid-uutqorAWeJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutqorAWeJ .dropdown-item:hover span {
  color: white;
}
.cid-uutqorAWeJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutqorAWeJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutqorAWeJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutqorAWeJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutqorAWeJ .nav-link {
  position: relative;
}
.cid-uutqorAWeJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutqorAWeJ .container {
    flex-wrap: wrap;
  }
}
.cid-uutqorAWeJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutqorAWeJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutqorAWeJ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutqorAWeJ .dropdown-menu,
.cid-uutqorAWeJ .navbar.opened {
  background: #000000 !important;
}
.cid-uutqorAWeJ .nav-item:focus,
.cid-uutqorAWeJ .nav-link:focus {
  outline: none;
}
.cid-uutqorAWeJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutqorAWeJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutqorAWeJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutqorAWeJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutqorAWeJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutqorAWeJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutqorAWeJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutqorAWeJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uutqorAWeJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutqorAWeJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uutqorAWeJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutqorAWeJ .navbar.collapsed {
  justify-content: center;
}
.cid-uutqorAWeJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutqorAWeJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutqorAWeJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutqorAWeJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutqorAWeJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutqorAWeJ .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-uutqorAWeJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutqorAWeJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutqorAWeJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutqorAWeJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutqorAWeJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutqorAWeJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutqorAWeJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutqorAWeJ .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-uutqorAWeJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutqorAWeJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutqorAWeJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutqorAWeJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutqorAWeJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutqorAWeJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutqorAWeJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutqorAWeJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutqorAWeJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutqorAWeJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutqorAWeJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutqorAWeJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutqorAWeJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutqorAWeJ .dropdown-item.active,
.cid-uutqorAWeJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uutqorAWeJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutqorAWeJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutqorAWeJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutqorAWeJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutqorAWeJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutqorAWeJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutqorAWeJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutqorAWeJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutqorAWeJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutqorAWeJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutqorAWeJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutqorAWeJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutqorAWeJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutqorAWeJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutqorAWeJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutqorAWeJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutqorAWeJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutqorAWeJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutqorAWeJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutqorAWeJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutqorAWeJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutqorAWeJ .navbar {
    height: 70px;
  }
  .cid-uutqorAWeJ .navbar.opened {
    height: auto;
  }
  .cid-uutqorAWeJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutqosmv16 {
  background-image: url("../../../assets/images/alpine-strawberries-banner.webp");
}
.cid-uutqosmv16 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutqosmv16 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutqosmv16 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutqosmv16 .mbr-text,
.cid-uutqosmv16 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutqosmv16 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutqotH2wX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutqotH2wX img,
.cid-uutqotH2wX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutqotH2wX .item:focus,
.cid-uutqotH2wX span:focus {
  outline: none;
}
.cid-uutqotH2wX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutqotH2wX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutqotH2wX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutqotH2wX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutqotH2wX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutqotH2wX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutqotH2wX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutqotH2wX .mbr-section-title {
  color: #ffffff;
}
.cid-uutqotH2wX .mbr-text,
.cid-uutqotH2wX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutqotH2wX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutqotH2wX .item-subtitle {
  text-align: left;
}
.cid-uutqotH2wX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWsOimXgS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWsOimXgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWsOimXgS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWsOimXgS .mbr-section-title {
  color: #ffffff;
}
.cid-uZWsOimXgS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlMtoYMe {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNlMtoYMe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlMtoYMe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlMtoYMe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlMtoYMe .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlLqHJXm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlLqHJXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlLqHJXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlLqHJXm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlLqHJXm .number {
  color: #ffffff;
}
.cid-uYNlLqHJXm .period {
  display: block;
}
.cid-uYNlLqHJXm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlLqHJXm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlLqHJXm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlLqHJXm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlLqHJXm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlLqHJXm .mbr-text {
  color: #ffffff;
}
.cid-uYNlLqHJXm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlLqHJXm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlLqHJXm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlLqHJXm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutqovMLJS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutqovMLJS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutqovMLJS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutqovMLJS .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutqovMLJS .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutqovMLJS .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutqovMLJS .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutqovMLJS .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutqovMLJS .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutqovMLJS .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutqovMLJS .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutqovMLJS .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutqovMLJS [class^="socicon-"]:before,
.cid-uutqovMLJS [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutqovMLJS .mbr-section-title,
.cid-uutqovMLJS .mbr-social-likes {
  color: #ffffff;
}
.cid-uutqowpCmp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutqowpCmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutqowpCmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutqowpCmp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutqowpCmp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutqowpCmp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutqowpCmp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutqowpCmp .mbr-text {
  color: #ffffff;
}
.cid-uutqowpCmp .card-title {
  color: #ffffff;
}
.cid-uutqowpCmp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutqowpCmp .mbr-section-title {
  color: #ffffff;
}
.cid-uutqowpCmp .link {
  color: #4479d9;
}
.cid-uutqox8E0Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutqox8E0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutqox8E0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutqox8E0Z .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutqox8E0Z .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutqox8E0Z .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutqox8E0Z .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutqox8E0Z div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutqox8E0Z .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uutwVrWmML {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uutwVrWmML nav.navbar {
  position: fixed;
}
.cid-uutwVrWmML .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-uutwVrWmML .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uutwVrWmML .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uutwVrWmML .dropdown-item:hover,
.cid-uutwVrWmML .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uutwVrWmML .dropdown-item:hover span {
  color: white;
}
.cid-uutwVrWmML .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uutwVrWmML .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uutwVrWmML .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uutwVrWmML .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uutwVrWmML .nav-link {
  position: relative;
}
.cid-uutwVrWmML .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutwVrWmML .container {
    flex-wrap: wrap;
  }
}
.cid-uutwVrWmML .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uutwVrWmML .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uutwVrWmML .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uutwVrWmML .dropdown-menu,
.cid-uutwVrWmML .navbar.opened {
  background: #000000 !important;
}
.cid-uutwVrWmML .nav-item:focus,
.cid-uutwVrWmML .nav-link:focus {
  outline: none;
}
.cid-uutwVrWmML .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uutwVrWmML .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uutwVrWmML .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uutwVrWmML .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uutwVrWmML .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uutwVrWmML .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uutwVrWmML .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uutwVrWmML .navbar.opened {
  transition: all 0.3s;
}
.cid-uutwVrWmML .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uutwVrWmML .navbar .navbar-logo img {
  width: auto;
}
.cid-uutwVrWmML .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uutwVrWmML .navbar.collapsed {
  justify-content: center;
}
.cid-uutwVrWmML .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uutwVrWmML .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uutwVrWmML .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uutwVrWmML .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uutwVrWmML .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uutwVrWmML .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-uutwVrWmML .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uutwVrWmML .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uutwVrWmML .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uutwVrWmML .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uutwVrWmML .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uutwVrWmML .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uutwVrWmML .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uutwVrWmML .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-uutwVrWmML .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uutwVrWmML .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uutwVrWmML .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uutwVrWmML .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uutwVrWmML .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uutwVrWmML .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uutwVrWmML .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uutwVrWmML .navbar.navbar-short {
  min-height: 60px;
}
.cid-uutwVrWmML .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uutwVrWmML .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uutwVrWmML .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uutwVrWmML .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uutwVrWmML .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uutwVrWmML .dropdown-item.active,
.cid-uutwVrWmML .dropdown-item:active {
  background-color: transparent;
}
.cid-uutwVrWmML .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uutwVrWmML .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uutwVrWmML .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uutwVrWmML .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uutwVrWmML .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uutwVrWmML .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uutwVrWmML ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uutwVrWmML .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uutwVrWmML button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uutwVrWmML button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uutwVrWmML button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uutwVrWmML button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutwVrWmML button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uutwVrWmML button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uutwVrWmML nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutwVrWmML nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uutwVrWmML nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uutwVrWmML nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uutwVrWmML .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uutwVrWmML a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uutwVrWmML .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uutwVrWmML .navbar {
    height: 70px;
  }
  .cid-uutwVrWmML .navbar.opened {
    height: auto;
  }
  .cid-uutwVrWmML .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uutwVtl7DO {
  background-image: url("../../../assets/images/rabbiteye-blueberries-banner.webp");
}
.cid-uutwVtl7DO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutwVtl7DO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutwVtl7DO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uutwVtl7DO .mbr-text,
.cid-uutwVtl7DO .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uutwVtl7DO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uutwVvjMRK {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutwVvjMRK img,
.cid-uutwVvjMRK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uutwVvjMRK .item:focus,
.cid-uutwVvjMRK span:focus {
  outline: none;
}
.cid-uutwVvjMRK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uutwVvjMRK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uutwVvjMRK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uutwVvjMRK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uutwVvjMRK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uutwVvjMRK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uutwVvjMRK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uutwVvjMRK .mbr-section-title {
  color: #ffffff;
}
.cid-uutwVvjMRK .mbr-text,
.cid-uutwVvjMRK .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uutwVvjMRK .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uutwVvjMRK .item-subtitle {
  text-align: center;
}
.cid-uutwVvjMRK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWselA5qd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWselA5qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWselA5qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWselA5qd .mbr-section-title {
  color: #ffffff;
}
.cid-uZWselA5qd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlA1wuTP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNlA1wuTP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlA1wuTP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlA1wuTP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNlA1wuTP .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlyXZ67C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNlyXZ67C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNlyXZ67C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNlyXZ67C .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNlyXZ67C .number {
  color: #ffffff;
}
.cid-uYNlyXZ67C .period {
  display: block;
}
.cid-uYNlyXZ67C .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNlyXZ67C .period {
    font-size: 0.8rem;
  }
}
.cid-uYNlyXZ67C .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNlyXZ67C .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNlyXZ67C .mbr-section-title {
  color: #ffffff;
}
.cid-uYNlyXZ67C .mbr-text {
  color: #ffffff;
}
.cid-uYNlyXZ67C .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNlyXZ67C .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNlyXZ67C .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNlyXZ67C .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uutwVwJhHC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uutwVwJhHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutwVwJhHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutwVwJhHC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uutwVwJhHC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uutwVwJhHC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uutwVwJhHC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uutwVwJhHC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uutwVwJhHC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uutwVwJhHC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uutwVwJhHC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uutwVwJhHC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uutwVwJhHC [class^="socicon-"]:before,
.cid-uutwVwJhHC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uutwVwJhHC .mbr-section-title,
.cid-uutwVwJhHC .mbr-social-likes {
  color: #ffffff;
}
.cid-uutwVxqfRw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uutwVxqfRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutwVxqfRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutwVxqfRw .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uutwVxqfRw .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uutwVxqfRw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uutwVxqfRw .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uutwVxqfRw .mbr-text {
  color: #ffffff;
}
.cid-uutwVxqfRw .card-title {
  color: #ffffff;
}
.cid-uutwVxqfRw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uutwVxqfRw .mbr-section-title {
  color: #ffffff;
}
.cid-uutwVxqfRw .link {
  color: #4479d9;
}
.cid-uutwVyaAz7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uutwVyaAz7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uutwVyaAz7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uutwVyaAz7 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uutwVyaAz7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uutwVyaAz7 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uutwVyaAz7 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uutwVyaAz7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uutwVyaAz7 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvTX54zycf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvTX54zycf nav.navbar {
  position: fixed;
}
.cid-uvTX54zycf .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-uvTX54zycf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvTX54zycf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvTX54zycf .dropdown-item:hover,
.cid-uvTX54zycf .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvTX54zycf .dropdown-item:hover span {
  color: white;
}
.cid-uvTX54zycf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvTX54zycf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvTX54zycf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvTX54zycf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvTX54zycf .nav-link {
  position: relative;
}
.cid-uvTX54zycf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvTX54zycf .container {
    flex-wrap: wrap;
  }
}
.cid-uvTX54zycf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvTX54zycf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvTX54zycf .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvTX54zycf .dropdown-menu,
.cid-uvTX54zycf .navbar.opened {
  background: #000000 !important;
}
.cid-uvTX54zycf .nav-item:focus,
.cid-uvTX54zycf .nav-link:focus {
  outline: none;
}
.cid-uvTX54zycf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvTX54zycf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvTX54zycf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvTX54zycf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvTX54zycf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvTX54zycf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvTX54zycf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvTX54zycf .navbar.opened {
  transition: all 0.3s;
}
.cid-uvTX54zycf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvTX54zycf .navbar .navbar-logo img {
  width: auto;
}
.cid-uvTX54zycf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvTX54zycf .navbar.collapsed {
  justify-content: center;
}
.cid-uvTX54zycf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvTX54zycf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvTX54zycf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvTX54zycf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvTX54zycf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvTX54zycf .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-uvTX54zycf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvTX54zycf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvTX54zycf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvTX54zycf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvTX54zycf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvTX54zycf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvTX54zycf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvTX54zycf .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-uvTX54zycf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvTX54zycf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvTX54zycf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvTX54zycf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvTX54zycf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvTX54zycf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvTX54zycf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvTX54zycf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvTX54zycf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvTX54zycf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvTX54zycf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvTX54zycf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvTX54zycf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvTX54zycf .dropdown-item.active,
.cid-uvTX54zycf .dropdown-item:active {
  background-color: transparent;
}
.cid-uvTX54zycf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvTX54zycf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvTX54zycf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvTX54zycf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvTX54zycf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvTX54zycf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvTX54zycf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvTX54zycf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvTX54zycf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvTX54zycf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvTX54zycf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvTX54zycf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvTX54zycf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvTX54zycf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvTX54zycf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvTX54zycf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvTX54zycf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvTX54zycf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvTX54zycf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvTX54zycf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvTX54zycf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvTX54zycf .navbar {
    height: 70px;
  }
  .cid-uvTX54zycf .navbar.opened {
    height: auto;
  }
  .cid-uvTX54zycf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvTX55raJ2 {
  background-image: url("../../../assets/images/img-20241106-0910376741-2000x2667.webp");
}
.cid-uvTX55raJ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX55raJ2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTX55raJ2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvTX55raJ2 .mbr-text,
.cid-uvTX55raJ2 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvTX55raJ2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvTX55Z9K5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvTX55Z9K5 img,
.cid-uvTX55Z9K5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvTX55Z9K5 .item:focus,
.cid-uvTX55Z9K5 span:focus {
  outline: none;
}
.cid-uvTX55Z9K5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvTX55Z9K5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvTX55Z9K5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvTX55Z9K5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvTX55Z9K5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvTX55Z9K5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvTX55Z9K5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvTX55Z9K5 .mbr-section-title {
  color: #ffffff;
}
.cid-uvTX55Z9K5 .mbr-text,
.cid-uvTX55Z9K5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvTX55Z9K5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvTX55Z9K5 .item-subtitle {
  text-align: left;
}
.cid-uvTX55Z9K5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWq6TEMF9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWq6TEMF9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWq6TEMF9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWq6TEMF9 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWq6TEMF9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN76gFXQH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN76gFXQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN76gFXQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN76gFXQH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN76gFXQH .mbr-section-title {
  color: #ffffff;
}
.cid-uYN74S7E8L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN74S7E8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN74S7E8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN74S7E8L .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN74S7E8L .number {
  color: #ffffff;
}
.cid-uYN74S7E8L .period {
  display: block;
}
.cid-uYN74S7E8L .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN74S7E8L .period {
    font-size: 0.8rem;
  }
}
.cid-uYN74S7E8L .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN74S7E8L .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN74S7E8L .mbr-section-title {
  color: #ffffff;
}
.cid-uYN74S7E8L .mbr-text {
  color: #ffffff;
}
.cid-uYN74S7E8L .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN74S7E8L .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN74S7E8L .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN74S7E8L .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvTX580riI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvTX580riI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX580riI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTX580riI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvTX580riI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvTX580riI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvTX580riI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvTX580riI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvTX580riI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvTX580riI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvTX580riI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvTX580riI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvTX580riI [class^="socicon-"]:before,
.cid-uvTX580riI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvTX580riI .mbr-section-title,
.cid-uvTX580riI .mbr-social-likes {
  color: #ffffff;
}
.cid-uvTX58xfKV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvTX58xfKV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX58xfKV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTX58xfKV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvTX58xfKV .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvTX58xfKV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvTX58xfKV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvTX58xfKV .mbr-text {
  color: #ffffff;
}
.cid-uvTX58xfKV .card-title {
  color: #ffffff;
}
.cid-uvTX58xfKV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvTX58xfKV .mbr-section-title {
  color: #ffffff;
}
.cid-uvTX58xfKV .link {
  color: #4479d9;
}
.cid-uvTX59camC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvTX59camC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvTX59camC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvTX59camC .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvTX59camC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvTX59camC .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvTX59camC .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvTX59camC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvTX59camC .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvU41DKJXb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvU41DKJXb nav.navbar {
  position: fixed;
}
.cid-uvU41DKJXb .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-uvU41DKJXb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvU41DKJXb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvU41DKJXb .dropdown-item:hover,
.cid-uvU41DKJXb .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvU41DKJXb .dropdown-item:hover span {
  color: white;
}
.cid-uvU41DKJXb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvU41DKJXb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvU41DKJXb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvU41DKJXb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvU41DKJXb .nav-link {
  position: relative;
}
.cid-uvU41DKJXb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvU41DKJXb .container {
    flex-wrap: wrap;
  }
}
.cid-uvU41DKJXb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvU41DKJXb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvU41DKJXb .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvU41DKJXb .dropdown-menu,
.cid-uvU41DKJXb .navbar.opened {
  background: #000000 !important;
}
.cid-uvU41DKJXb .nav-item:focus,
.cid-uvU41DKJXb .nav-link:focus {
  outline: none;
}
.cid-uvU41DKJXb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvU41DKJXb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvU41DKJXb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvU41DKJXb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvU41DKJXb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvU41DKJXb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvU41DKJXb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvU41DKJXb .navbar.opened {
  transition: all 0.3s;
}
.cid-uvU41DKJXb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvU41DKJXb .navbar .navbar-logo img {
  width: auto;
}
.cid-uvU41DKJXb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvU41DKJXb .navbar.collapsed {
  justify-content: center;
}
.cid-uvU41DKJXb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvU41DKJXb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvU41DKJXb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvU41DKJXb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvU41DKJXb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvU41DKJXb .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-uvU41DKJXb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvU41DKJXb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvU41DKJXb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvU41DKJXb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvU41DKJXb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvU41DKJXb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvU41DKJXb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvU41DKJXb .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-uvU41DKJXb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvU41DKJXb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvU41DKJXb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvU41DKJXb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvU41DKJXb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvU41DKJXb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvU41DKJXb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvU41DKJXb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvU41DKJXb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvU41DKJXb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvU41DKJXb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvU41DKJXb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvU41DKJXb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvU41DKJXb .dropdown-item.active,
.cid-uvU41DKJXb .dropdown-item:active {
  background-color: transparent;
}
.cid-uvU41DKJXb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvU41DKJXb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvU41DKJXb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvU41DKJXb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvU41DKJXb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvU41DKJXb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvU41DKJXb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvU41DKJXb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvU41DKJXb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvU41DKJXb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvU41DKJXb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvU41DKJXb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvU41DKJXb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvU41DKJXb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvU41DKJXb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvU41DKJXb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvU41DKJXb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvU41DKJXb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvU41DKJXb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvU41DKJXb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvU41DKJXb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU41DKJXb .navbar {
    height: 70px;
  }
  .cid-uvU41DKJXb .navbar.opened {
    height: auto;
  }
  .cid-uvU41DKJXb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvU41Ev8sf {
  background-image: url("../../../assets/images/20230730-70747-2000x2667.webp");
}
.cid-uvU41Ev8sf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU41Ev8sf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU41Ev8sf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvU41Ev8sf .mbr-text,
.cid-uvU41Ev8sf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvU41Ev8sf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvU41F5zcP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvU41F5zcP img,
.cid-uvU41F5zcP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvU41F5zcP .item:focus,
.cid-uvU41F5zcP span:focus {
  outline: none;
}
.cid-uvU41F5zcP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvU41F5zcP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvU41F5zcP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvU41F5zcP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU41F5zcP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvU41F5zcP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvU41F5zcP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvU41F5zcP .mbr-section-title {
  color: #ffffff;
}
.cid-uvU41F5zcP .mbr-text,
.cid-uvU41F5zcP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvU41F5zcP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvU41F5zcP .item-subtitle {
  text-align: left;
}
.cid-uvU41F5zcP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWq2uCyaG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWq2uCyaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWq2uCyaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWq2uCyaG .mbr-section-title {
  color: #ffffff;
}
.cid-uZWq2uCyaG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN70EZ8mr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN70EZ8mr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN70EZ8mr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN70EZ8mr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN70EZ8mr .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6Zyzbgt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN6Zyzbgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6Zyzbgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6Zyzbgt .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN6Zyzbgt .number {
  color: #ffffff;
}
.cid-uYN6Zyzbgt .period {
  display: block;
}
.cid-uYN6Zyzbgt .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN6Zyzbgt .period {
    font-size: 0.8rem;
  }
}
.cid-uYN6Zyzbgt .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN6Zyzbgt .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN6Zyzbgt .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6Zyzbgt .mbr-text {
  color: #ffffff;
}
.cid-uYN6Zyzbgt .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN6Zyzbgt .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN6Zyzbgt .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN6Zyzbgt .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvU41GUSNd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU41GUSNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU41GUSNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU41GUSNd .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvU41GUSNd .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvU41GUSNd .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvU41GUSNd .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvU41GUSNd .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvU41GUSNd .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvU41GUSNd .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvU41GUSNd .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvU41GUSNd .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvU41GUSNd [class^="socicon-"]:before,
.cid-uvU41GUSNd [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvU41GUSNd .mbr-section-title,
.cid-uvU41GUSNd .mbr-social-likes {
  color: #ffffff;
}
.cid-uvU41HtR57 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvU41HtR57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU41HtR57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU41HtR57 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvU41HtR57 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvU41HtR57 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvU41HtR57 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvU41HtR57 .mbr-text {
  color: #ffffff;
}
.cid-uvU41HtR57 .card-title {
  color: #ffffff;
}
.cid-uvU41HtR57 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvU41HtR57 .mbr-section-title {
  color: #ffffff;
}
.cid-uvU41HtR57 .link {
  color: #4479d9;
}
.cid-uvU41I75Vr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvU41I75Vr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU41I75Vr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU41I75Vr .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvU41I75Vr .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvU41I75Vr .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvU41I75Vr .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvU41I75Vr div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvU41I75Vr .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvU67Ww25k {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvU67Ww25k nav.navbar {
  position: fixed;
}
.cid-uvU67Ww25k .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-uvU67Ww25k .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvU67Ww25k .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvU67Ww25k .dropdown-item:hover,
.cid-uvU67Ww25k .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvU67Ww25k .dropdown-item:hover span {
  color: white;
}
.cid-uvU67Ww25k .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvU67Ww25k .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvU67Ww25k .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvU67Ww25k .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvU67Ww25k .nav-link {
  position: relative;
}
.cid-uvU67Ww25k .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvU67Ww25k .container {
    flex-wrap: wrap;
  }
}
.cid-uvU67Ww25k .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvU67Ww25k .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvU67Ww25k .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvU67Ww25k .dropdown-menu,
.cid-uvU67Ww25k .navbar.opened {
  background: #000000 !important;
}
.cid-uvU67Ww25k .nav-item:focus,
.cid-uvU67Ww25k .nav-link:focus {
  outline: none;
}
.cid-uvU67Ww25k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvU67Ww25k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvU67Ww25k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvU67Ww25k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvU67Ww25k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvU67Ww25k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvU67Ww25k .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvU67Ww25k .navbar.opened {
  transition: all 0.3s;
}
.cid-uvU67Ww25k .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvU67Ww25k .navbar .navbar-logo img {
  width: auto;
}
.cid-uvU67Ww25k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvU67Ww25k .navbar.collapsed {
  justify-content: center;
}
.cid-uvU67Ww25k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvU67Ww25k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvU67Ww25k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvU67Ww25k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvU67Ww25k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvU67Ww25k .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-uvU67Ww25k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvU67Ww25k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvU67Ww25k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvU67Ww25k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvU67Ww25k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvU67Ww25k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvU67Ww25k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvU67Ww25k .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-uvU67Ww25k .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvU67Ww25k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvU67Ww25k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvU67Ww25k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvU67Ww25k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvU67Ww25k .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvU67Ww25k .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvU67Ww25k .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvU67Ww25k .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvU67Ww25k .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvU67Ww25k .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvU67Ww25k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvU67Ww25k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvU67Ww25k .dropdown-item.active,
.cid-uvU67Ww25k .dropdown-item:active {
  background-color: transparent;
}
.cid-uvU67Ww25k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvU67Ww25k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvU67Ww25k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvU67Ww25k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvU67Ww25k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvU67Ww25k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvU67Ww25k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvU67Ww25k .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvU67Ww25k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvU67Ww25k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvU67Ww25k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvU67Ww25k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvU67Ww25k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvU67Ww25k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvU67Ww25k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvU67Ww25k nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvU67Ww25k nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvU67Ww25k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvU67Ww25k .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvU67Ww25k a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvU67Ww25k .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvU67Ww25k .navbar {
    height: 70px;
  }
  .cid-uvU67Ww25k .navbar.opened {
    height: auto;
  }
  .cid-uvU67Ww25k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvU67XlPHk {
  background-image: url("../../../assets/images/20230725-185829-2000x2667.webp");
}
.cid-uvU67XlPHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU67XlPHk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU67XlPHk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvU67XlPHk .mbr-text,
.cid-uvU67XlPHk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvU67XlPHk .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvU67XStKK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvU67XStKK img,
.cid-uvU67XStKK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvU67XStKK .item:focus,
.cid-uvU67XStKK span:focus {
  outline: none;
}
.cid-uvU67XStKK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvU67XStKK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvU67XStKK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvU67XStKK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvU67XStKK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvU67XStKK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvU67XStKK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvU67XStKK .mbr-section-title {
  color: #ffffff;
}
.cid-uvU67XStKK .mbr-text,
.cid-uvU67XStKK .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvU67XStKK .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvU67XStKK .item-subtitle {
  text-align: left;
}
.cid-uvU67XStKK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWpXPizBA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWpXPizBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWpXPizBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWpXPizBA .mbr-section-title {
  color: #ffffff;
}
.cid-uZWpXPizBA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6TEpBZF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN6TEpBZF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6TEpBZF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6TEpBZF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6TEpBZF .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6SGhIDt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN6SGhIDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6SGhIDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6SGhIDt .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN6SGhIDt .number {
  color: #ffffff;
}
.cid-uYN6SGhIDt .period {
  display: block;
}
.cid-uYN6SGhIDt .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN6SGhIDt .period {
    font-size: 0.8rem;
  }
}
.cid-uYN6SGhIDt .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN6SGhIDt .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN6SGhIDt .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6SGhIDt .mbr-text {
  color: #ffffff;
}
.cid-uYN6SGhIDt .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN6SGhIDt .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN6SGhIDt .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN6SGhIDt .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvU67ZJ2dV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvU67ZJ2dV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU67ZJ2dV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU67ZJ2dV .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvU67ZJ2dV .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvU67ZJ2dV .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvU67ZJ2dV .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvU67ZJ2dV .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvU67ZJ2dV .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvU67ZJ2dV .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvU67ZJ2dV .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvU67ZJ2dV .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvU67ZJ2dV [class^="socicon-"]:before,
.cid-uvU67ZJ2dV [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvU67ZJ2dV .mbr-section-title,
.cid-uvU67ZJ2dV .mbr-social-likes {
  color: #ffffff;
}
.cid-uvU680hUt8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvU680hUt8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU680hUt8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU680hUt8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvU680hUt8 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvU680hUt8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvU680hUt8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvU680hUt8 .mbr-text {
  color: #ffffff;
}
.cid-uvU680hUt8 .card-title {
  color: #ffffff;
}
.cid-uvU680hUt8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvU680hUt8 .mbr-section-title {
  color: #ffffff;
}
.cid-uvU680hUt8 .link {
  color: #4479d9;
}
.cid-uvU6810Ldz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvU6810Ldz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvU6810Ldz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvU6810Ldz .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvU6810Ldz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvU6810Ldz .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvU6810Ldz .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvU6810Ldz div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvU6810Ldz .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvUbxyjXqz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvUbxyjXqz nav.navbar {
  position: fixed;
}
.cid-uvUbxyjXqz .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-uvUbxyjXqz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvUbxyjXqz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvUbxyjXqz .dropdown-item:hover,
.cid-uvUbxyjXqz .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvUbxyjXqz .dropdown-item:hover span {
  color: white;
}
.cid-uvUbxyjXqz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvUbxyjXqz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvUbxyjXqz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvUbxyjXqz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvUbxyjXqz .nav-link {
  position: relative;
}
.cid-uvUbxyjXqz .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvUbxyjXqz .container {
    flex-wrap: wrap;
  }
}
.cid-uvUbxyjXqz .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvUbxyjXqz .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvUbxyjXqz .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvUbxyjXqz .dropdown-menu,
.cid-uvUbxyjXqz .navbar.opened {
  background: #000000 !important;
}
.cid-uvUbxyjXqz .nav-item:focus,
.cid-uvUbxyjXqz .nav-link:focus {
  outline: none;
}
.cid-uvUbxyjXqz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvUbxyjXqz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvUbxyjXqz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvUbxyjXqz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvUbxyjXqz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvUbxyjXqz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvUbxyjXqz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvUbxyjXqz .navbar.opened {
  transition: all 0.3s;
}
.cid-uvUbxyjXqz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvUbxyjXqz .navbar .navbar-logo img {
  width: auto;
}
.cid-uvUbxyjXqz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvUbxyjXqz .navbar.collapsed {
  justify-content: center;
}
.cid-uvUbxyjXqz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvUbxyjXqz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvUbxyjXqz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvUbxyjXqz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvUbxyjXqz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvUbxyjXqz .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-uvUbxyjXqz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvUbxyjXqz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvUbxyjXqz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvUbxyjXqz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvUbxyjXqz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvUbxyjXqz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvUbxyjXqz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvUbxyjXqz .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-uvUbxyjXqz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvUbxyjXqz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvUbxyjXqz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvUbxyjXqz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvUbxyjXqz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvUbxyjXqz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvUbxyjXqz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvUbxyjXqz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvUbxyjXqz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvUbxyjXqz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvUbxyjXqz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvUbxyjXqz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvUbxyjXqz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvUbxyjXqz .dropdown-item.active,
.cid-uvUbxyjXqz .dropdown-item:active {
  background-color: transparent;
}
.cid-uvUbxyjXqz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvUbxyjXqz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvUbxyjXqz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvUbxyjXqz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvUbxyjXqz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvUbxyjXqz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvUbxyjXqz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvUbxyjXqz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvUbxyjXqz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvUbxyjXqz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvUbxyjXqz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvUbxyjXqz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvUbxyjXqz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvUbxyjXqz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvUbxyjXqz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvUbxyjXqz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvUbxyjXqz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvUbxyjXqz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvUbxyjXqz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvUbxyjXqz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvUbxyjXqz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvUbxyjXqz .navbar {
    height: 70px;
  }
  .cid-uvUbxyjXqz .navbar.opened {
    height: auto;
  }
  .cid-uvUbxyjXqz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvUbxznrV9 {
  background-image: url("../../../assets/images/jalapeno-peppers-2708676-1280-853x1280.webp");
}
.cid-uvUbxznrV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUbxznrV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUbxznrV9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvUbxznrV9 .mbr-text,
.cid-uvUbxznrV9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvUbxznrV9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvUbxAYo4t {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvUbxAYo4t img,
.cid-uvUbxAYo4t .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvUbxAYo4t .item:focus,
.cid-uvUbxAYo4t span:focus {
  outline: none;
}
.cid-uvUbxAYo4t .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvUbxAYo4t .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvUbxAYo4t .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvUbxAYo4t .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvUbxAYo4t .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvUbxAYo4t .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvUbxAYo4t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvUbxAYo4t .mbr-section-title {
  color: #ffffff;
}
.cid-uvUbxAYo4t .mbr-text,
.cid-uvUbxAYo4t .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvUbxAYo4t .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvUbxAYo4t .item-subtitle {
  text-align: left;
}
.cid-uvUbxAYo4t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWpR6RzEv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWpR6RzEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWpR6RzEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWpR6RzEv .mbr-section-title {
  color: #ffffff;
}
.cid-uZWpR6RzEv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6MUWG9A {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN6MUWG9A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6MUWG9A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6MUWG9A .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6MUWG9A .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6M2g64M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN6M2g64M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6M2g64M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6M2g64M .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN6M2g64M .number {
  color: #ffffff;
}
.cid-uYN6M2g64M .period {
  display: block;
}
.cid-uYN6M2g64M .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN6M2g64M .period {
    font-size: 0.8rem;
  }
}
.cid-uYN6M2g64M .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN6M2g64M .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN6M2g64M .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6M2g64M .mbr-text {
  color: #ffffff;
}
.cid-uYN6M2g64M .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN6M2g64M .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN6M2g64M .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN6M2g64M .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvUbxCMFCW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvUbxCMFCW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUbxCMFCW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUbxCMFCW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvUbxCMFCW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvUbxCMFCW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvUbxCMFCW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvUbxCMFCW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvUbxCMFCW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvUbxCMFCW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvUbxCMFCW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvUbxCMFCW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvUbxCMFCW [class^="socicon-"]:before,
.cid-uvUbxCMFCW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvUbxCMFCW .mbr-section-title,
.cid-uvUbxCMFCW .mbr-social-likes {
  color: #ffffff;
}
.cid-uvUbxDmmHq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvUbxDmmHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUbxDmmHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUbxDmmHq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvUbxDmmHq .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvUbxDmmHq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvUbxDmmHq .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvUbxDmmHq .mbr-text {
  color: #ffffff;
}
.cid-uvUbxDmmHq .card-title {
  color: #ffffff;
}
.cid-uvUbxDmmHq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvUbxDmmHq .mbr-section-title {
  color: #ffffff;
}
.cid-uvUbxDmmHq .link {
  color: #4479d9;
}
.cid-uvUbxE3BzG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvUbxE3BzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUbxE3BzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUbxE3BzG .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvUbxE3BzG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvUbxE3BzG .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvUbxE3BzG .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvUbxE3BzG div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvUbxE3BzG .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvUmsU6aAB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvUmsU6aAB nav.navbar {
  position: fixed;
}
.cid-uvUmsU6aAB .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-uvUmsU6aAB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvUmsU6aAB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvUmsU6aAB .dropdown-item:hover,
.cid-uvUmsU6aAB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvUmsU6aAB .dropdown-item:hover span {
  color: white;
}
.cid-uvUmsU6aAB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvUmsU6aAB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvUmsU6aAB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvUmsU6aAB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvUmsU6aAB .nav-link {
  position: relative;
}
.cid-uvUmsU6aAB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvUmsU6aAB .container {
    flex-wrap: wrap;
  }
}
.cid-uvUmsU6aAB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvUmsU6aAB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvUmsU6aAB .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvUmsU6aAB .dropdown-menu,
.cid-uvUmsU6aAB .navbar.opened {
  background: #000000 !important;
}
.cid-uvUmsU6aAB .nav-item:focus,
.cid-uvUmsU6aAB .nav-link:focus {
  outline: none;
}
.cid-uvUmsU6aAB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvUmsU6aAB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvUmsU6aAB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvUmsU6aAB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvUmsU6aAB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvUmsU6aAB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvUmsU6aAB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvUmsU6aAB .navbar.opened {
  transition: all 0.3s;
}
.cid-uvUmsU6aAB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvUmsU6aAB .navbar .navbar-logo img {
  width: auto;
}
.cid-uvUmsU6aAB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvUmsU6aAB .navbar.collapsed {
  justify-content: center;
}
.cid-uvUmsU6aAB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvUmsU6aAB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvUmsU6aAB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvUmsU6aAB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvUmsU6aAB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvUmsU6aAB .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-uvUmsU6aAB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvUmsU6aAB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvUmsU6aAB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvUmsU6aAB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvUmsU6aAB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvUmsU6aAB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvUmsU6aAB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvUmsU6aAB .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-uvUmsU6aAB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvUmsU6aAB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvUmsU6aAB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvUmsU6aAB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvUmsU6aAB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvUmsU6aAB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvUmsU6aAB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvUmsU6aAB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvUmsU6aAB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvUmsU6aAB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvUmsU6aAB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvUmsU6aAB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvUmsU6aAB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvUmsU6aAB .dropdown-item.active,
.cid-uvUmsU6aAB .dropdown-item:active {
  background-color: transparent;
}
.cid-uvUmsU6aAB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvUmsU6aAB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvUmsU6aAB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvUmsU6aAB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvUmsU6aAB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvUmsU6aAB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvUmsU6aAB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvUmsU6aAB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvUmsU6aAB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvUmsU6aAB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvUmsU6aAB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvUmsU6aAB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvUmsU6aAB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvUmsU6aAB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvUmsU6aAB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvUmsU6aAB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvUmsU6aAB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvUmsU6aAB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvUmsU6aAB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvUmsU6aAB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvUmsU6aAB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvUmsU6aAB .navbar {
    height: 70px;
  }
  .cid-uvUmsU6aAB .navbar.opened {
    height: auto;
  }
  .cid-uvUmsU6aAB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvUmsUYQLw {
  background-image: url("../../../assets/images/chili-pepper-ge4e6f1522-1280-1280x960.webp");
}
.cid-uvUmsUYQLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUmsUYQLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUmsUYQLw .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmsUYQLw .mbr-text,
.cid-uvUmsUYQLw .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmsUYQLw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvUmsWZ2A7 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvUmsWZ2A7 img,
.cid-uvUmsWZ2A7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvUmsWZ2A7 .item:focus,
.cid-uvUmsWZ2A7 span:focus {
  outline: none;
}
.cid-uvUmsWZ2A7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvUmsWZ2A7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvUmsWZ2A7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvUmsWZ2A7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvUmsWZ2A7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvUmsWZ2A7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvUmsWZ2A7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvUmsWZ2A7 .mbr-section-title {
  color: #ffffff;
}
.cid-uvUmsWZ2A7 .mbr-text,
.cid-uvUmsWZ2A7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvUmsWZ2A7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvUmsWZ2A7 .item-subtitle {
  text-align: left;
}
.cid-uvUmsWZ2A7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWp1nyQro {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWp1nyQro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWp1nyQro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWp1nyQro .mbr-section-title {
  color: #ffffff;
}
.cid-uZWp1nyQro .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6Dv6Y9v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN6Dv6Y9v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6Dv6Y9v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6Dv6Y9v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN6Dv6Y9v .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6BZCZ4L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN6BZCZ4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN6BZCZ4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN6BZCZ4L .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN6BZCZ4L .number {
  color: #ffffff;
}
.cid-uYN6BZCZ4L .period {
  display: block;
}
.cid-uYN6BZCZ4L .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN6BZCZ4L .period {
    font-size: 0.8rem;
  }
}
.cid-uYN6BZCZ4L .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN6BZCZ4L .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN6BZCZ4L .mbr-section-title {
  color: #ffffff;
}
.cid-uYN6BZCZ4L .mbr-text {
  color: #ffffff;
}
.cid-uYN6BZCZ4L .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN6BZCZ4L .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN6BZCZ4L .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN6BZCZ4L .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvUmsYrni5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvUmsYrni5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUmsYrni5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUmsYrni5 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvUmsYrni5 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvUmsYrni5 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvUmsYrni5 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvUmsYrni5 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvUmsYrni5 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvUmsYrni5 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvUmsYrni5 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvUmsYrni5 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvUmsYrni5 [class^="socicon-"]:before,
.cid-uvUmsYrni5 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvUmsYrni5 .mbr-section-title,
.cid-uvUmsYrni5 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvUmsZ6yrq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvUmsZ6yrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUmsZ6yrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUmsZ6yrq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvUmsZ6yrq .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvUmsZ6yrq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvUmsZ6yrq .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvUmsZ6yrq .mbr-text {
  color: #ffffff;
}
.cid-uvUmsZ6yrq .card-title {
  color: #ffffff;
}
.cid-uvUmsZ6yrq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvUmsZ6yrq .mbr-section-title {
  color: #ffffff;
}
.cid-uvUmsZ6yrq .link {
  color: #4479d9;
}
.cid-uvUmsZR2Zg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvUmsZR2Zg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvUmsZR2Zg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvUmsZR2Zg .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvUmsZR2Zg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvUmsZR2Zg .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvUmsZR2Zg .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvUmsZR2Zg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvUmsZR2Zg .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVxXyVFjg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVxXyVFjg nav.navbar {
  position: fixed;
}
.cid-uvVxXyVFjg .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-uvVxXyVFjg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVxXyVFjg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVxXyVFjg .dropdown-item:hover,
.cid-uvVxXyVFjg .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVxXyVFjg .dropdown-item:hover span {
  color: white;
}
.cid-uvVxXyVFjg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVxXyVFjg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVxXyVFjg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVxXyVFjg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVxXyVFjg .nav-link {
  position: relative;
}
.cid-uvVxXyVFjg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVxXyVFjg .container {
    flex-wrap: wrap;
  }
}
.cid-uvVxXyVFjg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVxXyVFjg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVxXyVFjg .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVxXyVFjg .dropdown-menu,
.cid-uvVxXyVFjg .navbar.opened {
  background: #000000 !important;
}
.cid-uvVxXyVFjg .nav-item:focus,
.cid-uvVxXyVFjg .nav-link:focus {
  outline: none;
}
.cid-uvVxXyVFjg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVxXyVFjg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVxXyVFjg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVxXyVFjg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVxXyVFjg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVxXyVFjg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVxXyVFjg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVxXyVFjg .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVxXyVFjg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVxXyVFjg .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVxXyVFjg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVxXyVFjg .navbar.collapsed {
  justify-content: center;
}
.cid-uvVxXyVFjg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVxXyVFjg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVxXyVFjg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVxXyVFjg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVxXyVFjg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVxXyVFjg .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-uvVxXyVFjg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVxXyVFjg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVxXyVFjg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVxXyVFjg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVxXyVFjg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVxXyVFjg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVxXyVFjg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVxXyVFjg .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-uvVxXyVFjg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVxXyVFjg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVxXyVFjg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVxXyVFjg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVxXyVFjg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVxXyVFjg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVxXyVFjg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVxXyVFjg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVxXyVFjg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVxXyVFjg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVxXyVFjg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVxXyVFjg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVxXyVFjg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVxXyVFjg .dropdown-item.active,
.cid-uvVxXyVFjg .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVxXyVFjg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVxXyVFjg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVxXyVFjg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVxXyVFjg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVxXyVFjg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVxXyVFjg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVxXyVFjg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVxXyVFjg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVxXyVFjg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVxXyVFjg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVxXyVFjg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVxXyVFjg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVxXyVFjg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVxXyVFjg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVxXyVFjg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVxXyVFjg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVxXyVFjg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVxXyVFjg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVxXyVFjg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVxXyVFjg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVxXyVFjg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVxXyVFjg .navbar {
    height: 70px;
  }
  .cid-uvVxXyVFjg .navbar.opened {
    height: auto;
  }
  .cid-uvVxXyVFjg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVxXzHJlN {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVxXzHJlN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVxXzHJlN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVxXzHJlN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVxXzHJlN .mbr-text,
.cid-uvVxXzHJlN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVxXzHJlN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVxXAgI2i {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVxXAgI2i img,
.cid-uvVxXAgI2i .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVxXAgI2i .item:focus,
.cid-uvVxXAgI2i span:focus {
  outline: none;
}
.cid-uvVxXAgI2i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVxXAgI2i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVxXAgI2i .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVxXAgI2i .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVxXAgI2i .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVxXAgI2i .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVxXAgI2i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVxXAgI2i .mbr-section-title {
  color: #ffffff;
}
.cid-uvVxXAgI2i .mbr-text,
.cid-uvVxXAgI2i .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVxXAgI2i .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVxXAgI2i .item-subtitle {
  text-align: left;
}
.cid-uvVxXAgI2i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWoHKqNCz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWoHKqNCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWoHKqNCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWoHKqNCz .mbr-section-title {
  color: #ffffff;
}
.cid-uZWoHKqNCz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9REsxxE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN9REsxxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9REsxxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9REsxxE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9REsxxE .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Q79ArS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN9Q79ArS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9Q79ArS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9Q79ArS .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN9Q79ArS .number {
  color: #ffffff;
}
.cid-uYN9Q79ArS .period {
  display: block;
}
.cid-uYN9Q79ArS .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN9Q79ArS .period {
    font-size: 0.8rem;
  }
}
.cid-uYN9Q79ArS .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN9Q79ArS .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN9Q79ArS .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Q79ArS .mbr-text {
  color: #ffffff;
}
.cid-uYN9Q79ArS .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN9Q79ArS .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN9Q79ArS .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN9Q79ArS .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVxXCqmJ0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVxXCqmJ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVxXCqmJ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVxXCqmJ0 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVxXCqmJ0 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVxXCqmJ0 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVxXCqmJ0 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVxXCqmJ0 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVxXCqmJ0 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVxXCqmJ0 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVxXCqmJ0 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVxXCqmJ0 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVxXCqmJ0 [class^="socicon-"]:before,
.cid-uvVxXCqmJ0 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVxXCqmJ0 .mbr-section-title,
.cid-uvVxXCqmJ0 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVxXCZBVR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVxXCZBVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVxXCZBVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVxXCZBVR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVxXCZBVR .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVxXCZBVR .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVxXCZBVR .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVxXCZBVR .mbr-text {
  color: #ffffff;
}
.cid-uvVxXCZBVR .card-title {
  color: #ffffff;
}
.cid-uvVxXCZBVR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVxXCZBVR .mbr-section-title {
  color: #ffffff;
}
.cid-uvVxXCZBVR .link {
  color: #4479d9;
}
.cid-uvVxXDFasK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVxXDFasK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVxXDFasK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVxXDFasK .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVxXDFasK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVxXDFasK .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVxXDFasK .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVxXDFasK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVxXDFasK .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVyKUgbIM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVyKUgbIM nav.navbar {
  position: fixed;
}
.cid-uvVyKUgbIM .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-uvVyKUgbIM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVyKUgbIM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVyKUgbIM .dropdown-item:hover,
.cid-uvVyKUgbIM .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVyKUgbIM .dropdown-item:hover span {
  color: white;
}
.cid-uvVyKUgbIM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVyKUgbIM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVyKUgbIM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVyKUgbIM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVyKUgbIM .nav-link {
  position: relative;
}
.cid-uvVyKUgbIM .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVyKUgbIM .container {
    flex-wrap: wrap;
  }
}
.cid-uvVyKUgbIM .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVyKUgbIM .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVyKUgbIM .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVyKUgbIM .dropdown-menu,
.cid-uvVyKUgbIM .navbar.opened {
  background: #000000 !important;
}
.cid-uvVyKUgbIM .nav-item:focus,
.cid-uvVyKUgbIM .nav-link:focus {
  outline: none;
}
.cid-uvVyKUgbIM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVyKUgbIM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVyKUgbIM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVyKUgbIM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVyKUgbIM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVyKUgbIM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVyKUgbIM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVyKUgbIM .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVyKUgbIM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVyKUgbIM .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVyKUgbIM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVyKUgbIM .navbar.collapsed {
  justify-content: center;
}
.cid-uvVyKUgbIM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVyKUgbIM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVyKUgbIM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVyKUgbIM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVyKUgbIM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVyKUgbIM .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-uvVyKUgbIM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVyKUgbIM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVyKUgbIM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVyKUgbIM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVyKUgbIM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVyKUgbIM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVyKUgbIM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVyKUgbIM .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-uvVyKUgbIM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVyKUgbIM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVyKUgbIM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVyKUgbIM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVyKUgbIM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVyKUgbIM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVyKUgbIM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVyKUgbIM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVyKUgbIM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVyKUgbIM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVyKUgbIM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVyKUgbIM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVyKUgbIM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVyKUgbIM .dropdown-item.active,
.cid-uvVyKUgbIM .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVyKUgbIM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVyKUgbIM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVyKUgbIM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVyKUgbIM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVyKUgbIM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVyKUgbIM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVyKUgbIM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVyKUgbIM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVyKUgbIM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVyKUgbIM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVyKUgbIM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVyKUgbIM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVyKUgbIM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVyKUgbIM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVyKUgbIM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVyKUgbIM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVyKUgbIM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVyKUgbIM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVyKUgbIM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVyKUgbIM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVyKUgbIM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVyKUgbIM .navbar {
    height: 70px;
  }
  .cid-uvVyKUgbIM .navbar.opened {
    height: auto;
  }
  .cid-uvVyKUgbIM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVyKV3hxq {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVyKV3hxq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVyKV3hxq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVyKV3hxq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVyKV3hxq .mbr-text,
.cid-uvVyKV3hxq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVyKV3hxq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVyKVCImX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVyKVCImX img,
.cid-uvVyKVCImX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVyKVCImX .item:focus,
.cid-uvVyKVCImX span:focus {
  outline: none;
}
.cid-uvVyKVCImX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVyKVCImX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVyKVCImX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVyKVCImX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVyKVCImX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVyKVCImX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVyKVCImX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVyKVCImX .mbr-section-title {
  color: #ffffff;
}
.cid-uvVyKVCImX .mbr-text,
.cid-uvVyKVCImX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVyKVCImX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVyKVCImX .item-subtitle {
  text-align: left;
}
.cid-uvVyKVCImX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWoFLc66d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWoFLc66d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWoFLc66d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWoFLc66d .mbr-section-title {
  color: #ffffff;
}
.cid-uZWoFLc66d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9LDcldz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN9LDcldz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9LDcldz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9LDcldz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9LDcldz .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9KCec02 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN9KCec02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9KCec02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9KCec02 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN9KCec02 .number {
  color: #ffffff;
}
.cid-uYN9KCec02 .period {
  display: block;
}
.cid-uYN9KCec02 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN9KCec02 .period {
    font-size: 0.8rem;
  }
}
.cid-uYN9KCec02 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN9KCec02 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN9KCec02 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9KCec02 .mbr-text {
  color: #ffffff;
}
.cid-uYN9KCec02 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN9KCec02 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN9KCec02 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN9KCec02 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVyKXIBe2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVyKXIBe2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVyKXIBe2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVyKXIBe2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVyKXIBe2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVyKXIBe2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVyKXIBe2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVyKXIBe2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVyKXIBe2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVyKXIBe2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVyKXIBe2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVyKXIBe2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVyKXIBe2 [class^="socicon-"]:before,
.cid-uvVyKXIBe2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVyKXIBe2 .mbr-section-title,
.cid-uvVyKXIBe2 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVyKYjgkg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVyKYjgkg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVyKYjgkg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVyKYjgkg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVyKYjgkg .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVyKYjgkg .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVyKYjgkg .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVyKYjgkg .mbr-text {
  color: #ffffff;
}
.cid-uvVyKYjgkg .card-title {
  color: #ffffff;
}
.cid-uvVyKYjgkg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVyKYjgkg .mbr-section-title {
  color: #ffffff;
}
.cid-uvVyKYjgkg .link {
  color: #4479d9;
}
.cid-uvVyKZ0413 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVyKZ0413 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVyKZ0413 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVyKZ0413 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVyKZ0413 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVyKZ0413 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVyKZ0413 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVyKZ0413 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVyKZ0413 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVA75weRU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVA75weRU nav.navbar {
  position: fixed;
}
.cid-uvVA75weRU .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-uvVA75weRU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVA75weRU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVA75weRU .dropdown-item:hover,
.cid-uvVA75weRU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVA75weRU .dropdown-item:hover span {
  color: white;
}
.cid-uvVA75weRU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVA75weRU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVA75weRU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVA75weRU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVA75weRU .nav-link {
  position: relative;
}
.cid-uvVA75weRU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVA75weRU .container {
    flex-wrap: wrap;
  }
}
.cid-uvVA75weRU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVA75weRU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVA75weRU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVA75weRU .dropdown-menu,
.cid-uvVA75weRU .navbar.opened {
  background: #000000 !important;
}
.cid-uvVA75weRU .nav-item:focus,
.cid-uvVA75weRU .nav-link:focus {
  outline: none;
}
.cid-uvVA75weRU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVA75weRU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVA75weRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVA75weRU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVA75weRU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVA75weRU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVA75weRU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVA75weRU .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVA75weRU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVA75weRU .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVA75weRU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVA75weRU .navbar.collapsed {
  justify-content: center;
}
.cid-uvVA75weRU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVA75weRU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVA75weRU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVA75weRU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVA75weRU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVA75weRU .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-uvVA75weRU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVA75weRU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVA75weRU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVA75weRU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVA75weRU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVA75weRU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVA75weRU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVA75weRU .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-uvVA75weRU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVA75weRU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVA75weRU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVA75weRU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVA75weRU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVA75weRU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVA75weRU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVA75weRU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVA75weRU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVA75weRU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVA75weRU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVA75weRU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVA75weRU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVA75weRU .dropdown-item.active,
.cid-uvVA75weRU .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVA75weRU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVA75weRU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVA75weRU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVA75weRU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVA75weRU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVA75weRU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVA75weRU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVA75weRU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVA75weRU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVA75weRU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVA75weRU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVA75weRU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVA75weRU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVA75weRU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVA75weRU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVA75weRU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVA75weRU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVA75weRU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVA75weRU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVA75weRU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVA75weRU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVA75weRU .navbar {
    height: 70px;
  }
  .cid-uvVA75weRU .navbar.opened {
    height: auto;
  }
  .cid-uvVA75weRU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVA76fZkl {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVA76fZkl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVA76fZkl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVA76fZkl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVA76fZkl .mbr-text,
.cid-uvVA76fZkl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVA76fZkl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVA76N0CU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uvVA76N0CU img,
.cid-uvVA76N0CU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVA76N0CU .item:focus,
.cid-uvVA76N0CU span:focus {
  outline: none;
}
.cid-uvVA76N0CU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVA76N0CU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVA76N0CU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVA76N0CU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVA76N0CU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVA76N0CU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVA76N0CU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVA76N0CU .mbr-section-title {
  color: #ffffff;
}
.cid-uvVA76N0CU .mbr-text,
.cid-uvVA76N0CU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVA76N0CU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVA76N0CU .item-subtitle {
  text-align: left;
}
.cid-uvVA76N0CU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWoDGVSsA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWoDGVSsA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWoDGVSsA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWoDGVSsA .mbr-section-title {
  color: #ffffff;
}
.cid-uZWoDGVSsA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9GjPQPm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN9GjPQPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9GjPQPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9GjPQPm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN9GjPQPm .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Fwzf29 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN9Fwzf29 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN9Fwzf29 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN9Fwzf29 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN9Fwzf29 .number {
  color: #ffffff;
}
.cid-uYN9Fwzf29 .period {
  display: block;
}
.cid-uYN9Fwzf29 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN9Fwzf29 .period {
    font-size: 0.8rem;
  }
}
.cid-uYN9Fwzf29 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN9Fwzf29 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN9Fwzf29 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN9Fwzf29 .mbr-text {
  color: #ffffff;
}
.cid-uYN9Fwzf29 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN9Fwzf29 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN9Fwzf29 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN9Fwzf29 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVA78S5tI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVA78S5tI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVA78S5tI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVA78S5tI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVA78S5tI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVA78S5tI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVA78S5tI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVA78S5tI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVA78S5tI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVA78S5tI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVA78S5tI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVA78S5tI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVA78S5tI [class^="socicon-"]:before,
.cid-uvVA78S5tI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVA78S5tI .mbr-section-title,
.cid-uvVA78S5tI .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVA79sC1I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVA79sC1I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVA79sC1I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVA79sC1I .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVA79sC1I .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVA79sC1I .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVA79sC1I .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVA79sC1I .mbr-text {
  color: #ffffff;
}
.cid-uvVA79sC1I .card-title {
  color: #ffffff;
}
.cid-uvVA79sC1I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVA79sC1I .mbr-section-title {
  color: #ffffff;
}
.cid-uvVA79sC1I .link {
  color: #4479d9;
}
.cid-uvVA7a8HQ5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVA7a8HQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVA7a8HQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVA7a8HQ5 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVA7a8HQ5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVA7a8HQ5 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVA7a8HQ5 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVA7a8HQ5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVA7a8HQ5 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVB3pr6op {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVB3pr6op nav.navbar {
  position: fixed;
}
.cid-uvVB3pr6op .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-uvVB3pr6op .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVB3pr6op .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVB3pr6op .dropdown-item:hover,
.cid-uvVB3pr6op .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVB3pr6op .dropdown-item:hover span {
  color: white;
}
.cid-uvVB3pr6op .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVB3pr6op .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVB3pr6op .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVB3pr6op .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVB3pr6op .nav-link {
  position: relative;
}
.cid-uvVB3pr6op .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVB3pr6op .container {
    flex-wrap: wrap;
  }
}
.cid-uvVB3pr6op .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVB3pr6op .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVB3pr6op .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVB3pr6op .dropdown-menu,
.cid-uvVB3pr6op .navbar.opened {
  background: #000000 !important;
}
.cid-uvVB3pr6op .nav-item:focus,
.cid-uvVB3pr6op .nav-link:focus {
  outline: none;
}
.cid-uvVB3pr6op .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVB3pr6op .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVB3pr6op .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVB3pr6op .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVB3pr6op .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVB3pr6op .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVB3pr6op .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVB3pr6op .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVB3pr6op .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVB3pr6op .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVB3pr6op .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVB3pr6op .navbar.collapsed {
  justify-content: center;
}
.cid-uvVB3pr6op .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVB3pr6op .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVB3pr6op .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVB3pr6op .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVB3pr6op .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVB3pr6op .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-uvVB3pr6op .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVB3pr6op .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVB3pr6op .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVB3pr6op .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVB3pr6op .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVB3pr6op .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVB3pr6op .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVB3pr6op .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-uvVB3pr6op .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVB3pr6op .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVB3pr6op .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVB3pr6op .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVB3pr6op .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVB3pr6op .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVB3pr6op .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVB3pr6op .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVB3pr6op .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVB3pr6op .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVB3pr6op .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVB3pr6op .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVB3pr6op .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVB3pr6op .dropdown-item.active,
.cid-uvVB3pr6op .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVB3pr6op .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVB3pr6op .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVB3pr6op .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVB3pr6op .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVB3pr6op .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVB3pr6op .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVB3pr6op ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVB3pr6op .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVB3pr6op button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVB3pr6op button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVB3pr6op button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVB3pr6op button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVB3pr6op button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVB3pr6op button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVB3pr6op nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVB3pr6op nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVB3pr6op nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVB3pr6op nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVB3pr6op .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVB3pr6op a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVB3pr6op .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVB3pr6op .navbar {
    height: 70px;
  }
  .cid-uvVB3pr6op .navbar.opened {
    height: auto;
  }
  .cid-uvVB3pr6op .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVB3qf6nj {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVB3qf6nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVB3qf6nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVB3qf6nj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVB3qf6nj .mbr-text,
.cid-uvVB3qf6nj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVB3qf6nj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVB3rvQA5 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVB3rvQA5 img,
.cid-uvVB3rvQA5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVB3rvQA5 .item:focus,
.cid-uvVB3rvQA5 span:focus {
  outline: none;
}
.cid-uvVB3rvQA5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVB3rvQA5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVB3rvQA5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVB3rvQA5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVB3rvQA5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVB3rvQA5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVB3rvQA5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVB3rvQA5 .mbr-section-title {
  color: #ffffff;
}
.cid-uvVB3rvQA5 .mbr-text,
.cid-uvVB3rvQA5 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVB3rvQA5 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVB3rvQA5 .item-subtitle {
  text-align: left;
}
.cid-uvVB3rvQA5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWoByv2Ww {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWoByv2Ww .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWoByv2Ww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWoByv2Ww .mbr-section-title {
  color: #ffffff;
}
.cid-uZWoByv2Ww .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN8ffcYpL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN8ffcYpL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN8ffcYpL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN8ffcYpL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN8ffcYpL .mbr-section-title {
  color: #ffffff;
}
.cid-uYN8e9D6RA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN8e9D6RA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN8e9D6RA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN8e9D6RA .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN8e9D6RA .number {
  color: #ffffff;
}
.cid-uYN8e9D6RA .period {
  display: block;
}
.cid-uYN8e9D6RA .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN8e9D6RA .period {
    font-size: 0.8rem;
  }
}
.cid-uYN8e9D6RA .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN8e9D6RA .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN8e9D6RA .mbr-section-title {
  color: #ffffff;
}
.cid-uYN8e9D6RA .mbr-text {
  color: #ffffff;
}
.cid-uYN8e9D6RA .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN8e9D6RA .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN8e9D6RA .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN8e9D6RA .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVB3sR5BF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVB3sR5BF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVB3sR5BF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVB3sR5BF .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVB3sR5BF .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVB3sR5BF .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVB3sR5BF .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVB3sR5BF .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVB3sR5BF .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVB3sR5BF .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVB3sR5BF .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVB3sR5BF .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVB3sR5BF [class^="socicon-"]:before,
.cid-uvVB3sR5BF [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVB3sR5BF .mbr-section-title,
.cid-uvVB3sR5BF .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVB3tqrKZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVB3tqrKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVB3tqrKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVB3tqrKZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVB3tqrKZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVB3tqrKZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVB3tqrKZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVB3tqrKZ .mbr-text {
  color: #ffffff;
}
.cid-uvVB3tqrKZ .card-title {
  color: #ffffff;
}
.cid-uvVB3tqrKZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVB3tqrKZ .mbr-section-title {
  color: #ffffff;
}
.cid-uvVB3tqrKZ .link {
  color: #4479d9;
}
.cid-uvVB3ua8y5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVB3ua8y5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVB3ua8y5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVB3ua8y5 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVB3ua8y5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVB3ua8y5 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVB3ua8y5 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVB3ua8y5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVB3ua8y5 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVE86aHdJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVE86aHdJ nav.navbar {
  position: fixed;
}
.cid-uvVE86aHdJ .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-uvVE86aHdJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVE86aHdJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVE86aHdJ .dropdown-item:hover,
.cid-uvVE86aHdJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVE86aHdJ .dropdown-item:hover span {
  color: white;
}
.cid-uvVE86aHdJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVE86aHdJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVE86aHdJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVE86aHdJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVE86aHdJ .nav-link {
  position: relative;
}
.cid-uvVE86aHdJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVE86aHdJ .container {
    flex-wrap: wrap;
  }
}
.cid-uvVE86aHdJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVE86aHdJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVE86aHdJ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVE86aHdJ .dropdown-menu,
.cid-uvVE86aHdJ .navbar.opened {
  background: #000000 !important;
}
.cid-uvVE86aHdJ .nav-item:focus,
.cid-uvVE86aHdJ .nav-link:focus {
  outline: none;
}
.cid-uvVE86aHdJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVE86aHdJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVE86aHdJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVE86aHdJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVE86aHdJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVE86aHdJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVE86aHdJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVE86aHdJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVE86aHdJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVE86aHdJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVE86aHdJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVE86aHdJ .navbar.collapsed {
  justify-content: center;
}
.cid-uvVE86aHdJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVE86aHdJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVE86aHdJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVE86aHdJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVE86aHdJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVE86aHdJ .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-uvVE86aHdJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVE86aHdJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVE86aHdJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVE86aHdJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVE86aHdJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVE86aHdJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVE86aHdJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVE86aHdJ .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-uvVE86aHdJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVE86aHdJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVE86aHdJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVE86aHdJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVE86aHdJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVE86aHdJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVE86aHdJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVE86aHdJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVE86aHdJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVE86aHdJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVE86aHdJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVE86aHdJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVE86aHdJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVE86aHdJ .dropdown-item.active,
.cid-uvVE86aHdJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVE86aHdJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVE86aHdJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVE86aHdJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVE86aHdJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVE86aHdJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVE86aHdJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVE86aHdJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVE86aHdJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVE86aHdJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVE86aHdJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVE86aHdJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVE86aHdJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVE86aHdJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVE86aHdJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVE86aHdJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVE86aHdJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVE86aHdJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVE86aHdJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVE86aHdJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVE86aHdJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVE86aHdJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVE86aHdJ .navbar {
    height: 70px;
  }
  .cid-uvVE86aHdJ .navbar.opened {
    height: auto;
  }
  .cid-uvVE86aHdJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVE86YcNQ {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVE86YcNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVE86YcNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVE86YcNQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVE86YcNQ .mbr-text,
.cid-uvVE86YcNQ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVE86YcNQ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVE88cleF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVE88cleF img,
.cid-uvVE88cleF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVE88cleF .item:focus,
.cid-uvVE88cleF span:focus {
  outline: none;
}
.cid-uvVE88cleF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVE88cleF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVE88cleF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVE88cleF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVE88cleF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVE88cleF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVE88cleF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVE88cleF .mbr-section-title {
  color: #ffffff;
}
.cid-uvVE88cleF .mbr-text,
.cid-uvVE88cleF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVE88cleF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVE88cleF .item-subtitle {
  text-align: left;
}
.cid-uvVE88cleF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWoztIk5x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWoztIk5x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWoztIk5x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWoztIk5x .mbr-section-title {
  color: #ffffff;
}
.cid-uZWoztIk5x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN8243GWR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN8243GWR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN8243GWR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN8243GWR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN8243GWR .mbr-section-title {
  color: #ffffff;
}
.cid-uYN817bhar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN817bhar .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN817bhar .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN817bhar .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN817bhar .number {
  color: #ffffff;
}
.cid-uYN817bhar .period {
  display: block;
}
.cid-uYN817bhar .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN817bhar .period {
    font-size: 0.8rem;
  }
}
.cid-uYN817bhar .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN817bhar .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN817bhar .mbr-section-title {
  color: #ffffff;
}
.cid-uYN817bhar .mbr-text {
  color: #ffffff;
}
.cid-uYN817bhar .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN817bhar .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN817bhar .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN817bhar .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVE89H0P3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVE89H0P3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVE89H0P3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVE89H0P3 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVE89H0P3 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVE89H0P3 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVE89H0P3 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVE89H0P3 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVE89H0P3 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVE89H0P3 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVE89H0P3 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVE89H0P3 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVE89H0P3 [class^="socicon-"]:before,
.cid-uvVE89H0P3 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVE89H0P3 .mbr-section-title,
.cid-uvVE89H0P3 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVE8ak8KH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVE8ak8KH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVE8ak8KH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVE8ak8KH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVE8ak8KH .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVE8ak8KH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVE8ak8KH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVE8ak8KH .mbr-text {
  color: #ffffff;
}
.cid-uvVE8ak8KH .card-title {
  color: #ffffff;
}
.cid-uvVE8ak8KH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVE8ak8KH .mbr-section-title {
  color: #ffffff;
}
.cid-uvVE8ak8KH .link {
  color: #4479d9;
}
.cid-uvVE8b39BH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVE8b39BH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVE8b39BH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVE8b39BH .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVE8b39BH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVE8b39BH .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVE8b39BH .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVE8b39BH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVE8b39BH .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVFby1Y2h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVFby1Y2h nav.navbar {
  position: fixed;
}
.cid-uvVFby1Y2h .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-uvVFby1Y2h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVFby1Y2h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVFby1Y2h .dropdown-item:hover,
.cid-uvVFby1Y2h .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVFby1Y2h .dropdown-item:hover span {
  color: white;
}
.cid-uvVFby1Y2h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVFby1Y2h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVFby1Y2h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVFby1Y2h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVFby1Y2h .nav-link {
  position: relative;
}
.cid-uvVFby1Y2h .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVFby1Y2h .container {
    flex-wrap: wrap;
  }
}
.cid-uvVFby1Y2h .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVFby1Y2h .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVFby1Y2h .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVFby1Y2h .dropdown-menu,
.cid-uvVFby1Y2h .navbar.opened {
  background: #000000 !important;
}
.cid-uvVFby1Y2h .nav-item:focus,
.cid-uvVFby1Y2h .nav-link:focus {
  outline: none;
}
.cid-uvVFby1Y2h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVFby1Y2h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVFby1Y2h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVFby1Y2h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVFby1Y2h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVFby1Y2h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVFby1Y2h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVFby1Y2h .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVFby1Y2h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVFby1Y2h .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVFby1Y2h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVFby1Y2h .navbar.collapsed {
  justify-content: center;
}
.cid-uvVFby1Y2h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVFby1Y2h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVFby1Y2h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVFby1Y2h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVFby1Y2h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVFby1Y2h .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-uvVFby1Y2h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVFby1Y2h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVFby1Y2h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVFby1Y2h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVFby1Y2h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVFby1Y2h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVFby1Y2h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVFby1Y2h .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-uvVFby1Y2h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVFby1Y2h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVFby1Y2h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVFby1Y2h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVFby1Y2h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVFby1Y2h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVFby1Y2h .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVFby1Y2h .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVFby1Y2h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVFby1Y2h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVFby1Y2h .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVFby1Y2h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVFby1Y2h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVFby1Y2h .dropdown-item.active,
.cid-uvVFby1Y2h .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVFby1Y2h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVFby1Y2h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVFby1Y2h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVFby1Y2h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVFby1Y2h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVFby1Y2h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVFby1Y2h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVFby1Y2h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVFby1Y2h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVFby1Y2h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVFby1Y2h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVFby1Y2h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVFby1Y2h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVFby1Y2h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVFby1Y2h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVFby1Y2h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVFby1Y2h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVFby1Y2h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVFby1Y2h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVFby1Y2h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVFby1Y2h .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVFby1Y2h .navbar {
    height: 70px;
  }
  .cid-uvVFby1Y2h .navbar.opened {
    height: auto;
  }
  .cid-uvVFby1Y2h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVFbyOSln {
  background-image: url("../../../assets/images/tea-1869594-1280-944x1280.webp");
}
.cid-uvVFbyOSln .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVFbyOSln .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVFbyOSln .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVFbyOSln .mbr-text,
.cid-uvVFbyOSln .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVFbyOSln .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVFbA2Y5V {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVFbA2Y5V img,
.cid-uvVFbA2Y5V .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVFbA2Y5V .item:focus,
.cid-uvVFbA2Y5V span:focus {
  outline: none;
}
.cid-uvVFbA2Y5V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVFbA2Y5V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVFbA2Y5V .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVFbA2Y5V .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVFbA2Y5V .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVFbA2Y5V .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVFbA2Y5V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVFbA2Y5V .mbr-section-title {
  color: #ffffff;
}
.cid-uvVFbA2Y5V .mbr-text,
.cid-uvVFbA2Y5V .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVFbA2Y5V .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVFbA2Y5V .item-subtitle {
  text-align: left;
}
.cid-uvVFbA2Y5V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWnZjlgvL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWnZjlgvL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWnZjlgvL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWnZjlgvL .mbr-section-title {
  color: #ffffff;
}
.cid-uZWnZjlgvL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN7WATXhg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYN7WATXhg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN7WATXhg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN7WATXhg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN7WATXhg .mbr-section-title {
  color: #ffffff;
}
.cid-uYN7Vh8j2e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN7Vh8j2e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN7Vh8j2e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN7Vh8j2e .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN7Vh8j2e .number {
  color: #ffffff;
}
.cid-uYN7Vh8j2e .period {
  display: block;
}
.cid-uYN7Vh8j2e .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN7Vh8j2e .period {
    font-size: 0.8rem;
  }
}
.cid-uYN7Vh8j2e .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN7Vh8j2e .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN7Vh8j2e .mbr-section-title {
  color: #ffffff;
}
.cid-uYN7Vh8j2e .mbr-text {
  color: #ffffff;
}
.cid-uYN7Vh8j2e .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN7Vh8j2e .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN7Vh8j2e .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN7Vh8j2e .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVFbBEWug {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVFbBEWug .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVFbBEWug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVFbBEWug .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVFbBEWug .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVFbBEWug .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVFbBEWug .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVFbBEWug .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVFbBEWug .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVFbBEWug .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVFbBEWug .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVFbBEWug .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVFbBEWug [class^="socicon-"]:before,
.cid-uvVFbBEWug [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVFbBEWug .mbr-section-title,
.cid-uvVFbBEWug .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVFbChGNW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVFbChGNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVFbChGNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVFbChGNW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVFbChGNW .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVFbChGNW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVFbChGNW .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVFbChGNW .mbr-text {
  color: #ffffff;
}
.cid-uvVFbChGNW .card-title {
  color: #ffffff;
}
.cid-uvVFbChGNW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVFbChGNW .mbr-section-title {
  color: #ffffff;
}
.cid-uvVFbChGNW .link {
  color: #4479d9;
}
.cid-uvVFbCYBvy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVFbCYBvy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVFbCYBvy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVFbCYBvy .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVFbCYBvy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVFbCYBvy .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVFbCYBvy .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVFbCYBvy div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVFbCYBvy .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVK1hReYQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVK1hReYQ nav.navbar {
  position: fixed;
}
.cid-uvVK1hReYQ .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-uvVK1hReYQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVK1hReYQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVK1hReYQ .dropdown-item:hover,
.cid-uvVK1hReYQ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVK1hReYQ .dropdown-item:hover span {
  color: white;
}
.cid-uvVK1hReYQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVK1hReYQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVK1hReYQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVK1hReYQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVK1hReYQ .nav-link {
  position: relative;
}
.cid-uvVK1hReYQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVK1hReYQ .container {
    flex-wrap: wrap;
  }
}
.cid-uvVK1hReYQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVK1hReYQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVK1hReYQ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVK1hReYQ .dropdown-menu,
.cid-uvVK1hReYQ .navbar.opened {
  background: #000000 !important;
}
.cid-uvVK1hReYQ .nav-item:focus,
.cid-uvVK1hReYQ .nav-link:focus {
  outline: none;
}
.cid-uvVK1hReYQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVK1hReYQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVK1hReYQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVK1hReYQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVK1hReYQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVK1hReYQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVK1hReYQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVK1hReYQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVK1hReYQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVK1hReYQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVK1hReYQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVK1hReYQ .navbar.collapsed {
  justify-content: center;
}
.cid-uvVK1hReYQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVK1hReYQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVK1hReYQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVK1hReYQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVK1hReYQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVK1hReYQ .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-uvVK1hReYQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVK1hReYQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVK1hReYQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVK1hReYQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVK1hReYQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVK1hReYQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVK1hReYQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVK1hReYQ .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-uvVK1hReYQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVK1hReYQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVK1hReYQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVK1hReYQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVK1hReYQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVK1hReYQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVK1hReYQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVK1hReYQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVK1hReYQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVK1hReYQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVK1hReYQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVK1hReYQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVK1hReYQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVK1hReYQ .dropdown-item.active,
.cid-uvVK1hReYQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVK1hReYQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVK1hReYQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVK1hReYQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVK1hReYQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVK1hReYQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVK1hReYQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVK1hReYQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVK1hReYQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVK1hReYQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVK1hReYQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVK1hReYQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVK1hReYQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVK1hReYQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVK1hReYQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVK1hReYQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVK1hReYQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVK1hReYQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVK1hReYQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVK1hReYQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVK1hReYQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVK1hReYQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVK1hReYQ .navbar {
    height: 70px;
  }
  .cid-uvVK1hReYQ .navbar.opened {
    height: auto;
  }
  .cid-uvVK1hReYQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVK1iE4oc {
  background-image: url("../../../assets/images/time-3270448-1280-1280x854.webp");
}
.cid-uvVK1iE4oc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVK1iE4oc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVK1iE4oc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVK1iE4oc .mbr-text,
.cid-uvVK1iE4oc .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVK1iE4oc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVK1jaUPT {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVK1jaUPT img,
.cid-uvVK1jaUPT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVK1jaUPT .item:focus,
.cid-uvVK1jaUPT span:focus {
  outline: none;
}
.cid-uvVK1jaUPT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVK1jaUPT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVK1jaUPT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVK1jaUPT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVK1jaUPT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVK1jaUPT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVK1jaUPT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVK1jaUPT .mbr-section-title {
  color: #ffffff;
}
.cid-uvVK1jaUPT .mbr-text,
.cid-uvVK1jaUPT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVK1jaUPT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVK1jaUPT .item-subtitle {
  text-align: left;
}
.cid-uvVK1jaUPT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWnIETTPJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWnIETTPJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWnIETTPJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWnIETTPJ .mbr-section-title {
  color: #ffffff;
}
.cid-uZWnIETTPJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNaPSsBnJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNaPSsBnJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaPSsBnJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaPSsBnJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNaPSsBnJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaOXqpaq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNaOXqpaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaOXqpaq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaOXqpaq .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNaOXqpaq .number {
  color: #ffffff;
}
.cid-uYNaOXqpaq .period {
  display: block;
}
.cid-uYNaOXqpaq .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNaOXqpaq .period {
    font-size: 0.8rem;
  }
}
.cid-uYNaOXqpaq .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNaOXqpaq .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNaOXqpaq .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaOXqpaq .mbr-text {
  color: #ffffff;
}
.cid-uYNaOXqpaq .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNaOXqpaq .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNaOXqpaq .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNaOXqpaq .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVK1lavHH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVK1lavHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVK1lavHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVK1lavHH .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVK1lavHH .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVK1lavHH .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVK1lavHH .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVK1lavHH .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVK1lavHH .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVK1lavHH .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVK1lavHH .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVK1lavHH .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVK1lavHH [class^="socicon-"]:before,
.cid-uvVK1lavHH [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVK1lavHH .mbr-section-title,
.cid-uvVK1lavHH .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVK1lKrVa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVK1lKrVa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVK1lKrVa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVK1lKrVa .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVK1lKrVa .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVK1lKrVa .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVK1lKrVa .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVK1lKrVa .mbr-text {
  color: #ffffff;
}
.cid-uvVK1lKrVa .card-title {
  color: #ffffff;
}
.cid-uvVK1lKrVa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVK1lKrVa .mbr-section-title {
  color: #ffffff;
}
.cid-uvVK1lKrVa .link {
  color: #4479d9;
}
.cid-uvVK1msBhs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVK1msBhs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVK1msBhs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVK1msBhs .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVK1msBhs .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVK1msBhs .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVK1msBhs .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVK1msBhs div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVK1msBhs .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVLzIRlji {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVLzIRlji nav.navbar {
  position: fixed;
}
.cid-uvVLzIRlji .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-uvVLzIRlji .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVLzIRlji .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVLzIRlji .dropdown-item:hover,
.cid-uvVLzIRlji .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVLzIRlji .dropdown-item:hover span {
  color: white;
}
.cid-uvVLzIRlji .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVLzIRlji .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVLzIRlji .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVLzIRlji .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVLzIRlji .nav-link {
  position: relative;
}
.cid-uvVLzIRlji .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVLzIRlji .container {
    flex-wrap: wrap;
  }
}
.cid-uvVLzIRlji .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVLzIRlji .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVLzIRlji .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVLzIRlji .dropdown-menu,
.cid-uvVLzIRlji .navbar.opened {
  background: #000000 !important;
}
.cid-uvVLzIRlji .nav-item:focus,
.cid-uvVLzIRlji .nav-link:focus {
  outline: none;
}
.cid-uvVLzIRlji .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVLzIRlji .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVLzIRlji .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVLzIRlji .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVLzIRlji .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVLzIRlji .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVLzIRlji .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVLzIRlji .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVLzIRlji .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVLzIRlji .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVLzIRlji .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVLzIRlji .navbar.collapsed {
  justify-content: center;
}
.cid-uvVLzIRlji .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVLzIRlji .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVLzIRlji .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVLzIRlji .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVLzIRlji .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVLzIRlji .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-uvVLzIRlji .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVLzIRlji .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVLzIRlji .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVLzIRlji .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVLzIRlji .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVLzIRlji .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVLzIRlji .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVLzIRlji .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-uvVLzIRlji .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVLzIRlji .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVLzIRlji .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVLzIRlji .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVLzIRlji .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVLzIRlji .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVLzIRlji .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVLzIRlji .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVLzIRlji .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVLzIRlji .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVLzIRlji .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVLzIRlji .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVLzIRlji .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVLzIRlji .dropdown-item.active,
.cid-uvVLzIRlji .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVLzIRlji .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVLzIRlji .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVLzIRlji .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVLzIRlji .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVLzIRlji .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVLzIRlji .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVLzIRlji ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVLzIRlji .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVLzIRlji button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVLzIRlji button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVLzIRlji button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVLzIRlji button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVLzIRlji button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVLzIRlji button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVLzIRlji nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVLzIRlji nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVLzIRlji nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVLzIRlji nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVLzIRlji .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVLzIRlji a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVLzIRlji .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVLzIRlji .navbar {
    height: 70px;
  }
  .cid-uvVLzIRlji .navbar.opened {
    height: auto;
  }
  .cid-uvVLzIRlji .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVLzJCPng {
  background-image: url("../../../assets/images/time-3270448-1280-1280x854.webp");
}
.cid-uvVLzJCPng .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVLzJCPng .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVLzJCPng .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVLzJCPng .mbr-text,
.cid-uvVLzJCPng .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVLzJCPng .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVLzKbo69 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVLzKbo69 img,
.cid-uvVLzKbo69 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVLzKbo69 .item:focus,
.cid-uvVLzKbo69 span:focus {
  outline: none;
}
.cid-uvVLzKbo69 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVLzKbo69 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVLzKbo69 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVLzKbo69 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVLzKbo69 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVLzKbo69 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVLzKbo69 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVLzKbo69 .mbr-section-title {
  color: #ffffff;
}
.cid-uvVLzKbo69 .mbr-text,
.cid-uvVLzKbo69 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVLzKbo69 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVLzKbo69 .item-subtitle {
  text-align: left;
}
.cid-uvVLzKbo69 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWnGoFIz0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWnGoFIz0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWnGoFIz0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWnGoFIz0 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWnGoFIz0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNax6MbBC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNax6MbBC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNax6MbBC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNax6MbBC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNax6MbBC .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaw5gr1I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNaw5gr1I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaw5gr1I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaw5gr1I .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNaw5gr1I .number {
  color: #ffffff;
}
.cid-uYNaw5gr1I .period {
  display: block;
}
.cid-uYNaw5gr1I .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNaw5gr1I .period {
    font-size: 0.8rem;
  }
}
.cid-uYNaw5gr1I .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNaw5gr1I .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNaw5gr1I .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaw5gr1I .mbr-text {
  color: #ffffff;
}
.cid-uYNaw5gr1I .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNaw5gr1I .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNaw5gr1I .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNaw5gr1I .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVLzM9v36 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVLzM9v36 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVLzM9v36 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVLzM9v36 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVLzM9v36 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVLzM9v36 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVLzM9v36 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVLzM9v36 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVLzM9v36 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVLzM9v36 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVLzM9v36 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVLzM9v36 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVLzM9v36 [class^="socicon-"]:before,
.cid-uvVLzM9v36 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVLzM9v36 .mbr-section-title,
.cid-uvVLzM9v36 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVLzMINnQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVLzMINnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVLzMINnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVLzMINnQ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVLzMINnQ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVLzMINnQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVLzMINnQ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVLzMINnQ .mbr-text {
  color: #ffffff;
}
.cid-uvVLzMINnQ .card-title {
  color: #ffffff;
}
.cid-uvVLzMINnQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVLzMINnQ .mbr-section-title {
  color: #ffffff;
}
.cid-uvVLzMINnQ .link {
  color: #4479d9;
}
.cid-uvVLzNnCYu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVLzNnCYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVLzNnCYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVLzNnCYu .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVLzNnCYu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVLzNnCYu .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVLzNnCYu .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVLzNnCYu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVLzNnCYu .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVNB46BsL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVNB46BsL nav.navbar {
  position: fixed;
}
.cid-uvVNB46BsL .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-uvVNB46BsL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVNB46BsL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVNB46BsL .dropdown-item:hover,
.cid-uvVNB46BsL .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVNB46BsL .dropdown-item:hover span {
  color: white;
}
.cid-uvVNB46BsL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVNB46BsL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVNB46BsL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVNB46BsL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVNB46BsL .nav-link {
  position: relative;
}
.cid-uvVNB46BsL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVNB46BsL .container {
    flex-wrap: wrap;
  }
}
.cid-uvVNB46BsL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVNB46BsL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVNB46BsL .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVNB46BsL .dropdown-menu,
.cid-uvVNB46BsL .navbar.opened {
  background: #000000 !important;
}
.cid-uvVNB46BsL .nav-item:focus,
.cid-uvVNB46BsL .nav-link:focus {
  outline: none;
}
.cid-uvVNB46BsL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVNB46BsL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVNB46BsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVNB46BsL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVNB46BsL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVNB46BsL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVNB46BsL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVNB46BsL .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVNB46BsL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVNB46BsL .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVNB46BsL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVNB46BsL .navbar.collapsed {
  justify-content: center;
}
.cid-uvVNB46BsL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVNB46BsL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVNB46BsL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVNB46BsL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVNB46BsL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVNB46BsL .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-uvVNB46BsL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVNB46BsL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVNB46BsL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVNB46BsL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVNB46BsL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVNB46BsL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVNB46BsL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVNB46BsL .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-uvVNB46BsL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVNB46BsL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVNB46BsL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVNB46BsL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVNB46BsL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVNB46BsL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVNB46BsL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVNB46BsL .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVNB46BsL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVNB46BsL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVNB46BsL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVNB46BsL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVNB46BsL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVNB46BsL .dropdown-item.active,
.cid-uvVNB46BsL .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVNB46BsL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVNB46BsL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVNB46BsL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVNB46BsL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVNB46BsL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVNB46BsL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVNB46BsL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVNB46BsL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVNB46BsL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVNB46BsL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVNB46BsL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVNB46BsL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVNB46BsL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVNB46BsL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVNB46BsL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVNB46BsL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVNB46BsL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVNB46BsL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVNB46BsL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVNB46BsL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVNB46BsL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVNB46BsL .navbar {
    height: 70px;
  }
  .cid-uvVNB46BsL .navbar.opened {
    height: auto;
  }
  .cid-uvVNB46BsL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVNB4S7wP {
  background-image: url("../../../assets/images/time-3270448-1280-1280x854.webp");
}
.cid-uvVNB4S7wP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVNB4S7wP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVNB4S7wP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVNB4S7wP .mbr-text,
.cid-uvVNB4S7wP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVNB4S7wP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVNB5qIGy {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVNB5qIGy img,
.cid-uvVNB5qIGy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVNB5qIGy .item:focus,
.cid-uvVNB5qIGy span:focus {
  outline: none;
}
.cid-uvVNB5qIGy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVNB5qIGy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVNB5qIGy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVNB5qIGy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVNB5qIGy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVNB5qIGy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVNB5qIGy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVNB5qIGy .mbr-section-title {
  color: #ffffff;
}
.cid-uvVNB5qIGy .mbr-text,
.cid-uvVNB5qIGy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVNB5qIGy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVNB5qIGy .item-subtitle {
  text-align: left;
}
.cid-uvVNB5qIGy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWnE4ITcn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWnE4ITcn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWnE4ITcn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWnE4ITcn .mbr-section-title {
  color: #ffffff;
}
.cid-uZWnE4ITcn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNarhaijc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNarhaijc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNarhaijc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNarhaijc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNarhaijc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaqyg34B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNaqyg34B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNaqyg34B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNaqyg34B .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNaqyg34B .number {
  color: #ffffff;
}
.cid-uYNaqyg34B .period {
  display: block;
}
.cid-uYNaqyg34B .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNaqyg34B .period {
    font-size: 0.8rem;
  }
}
.cid-uYNaqyg34B .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNaqyg34B .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNaqyg34B .mbr-section-title {
  color: #ffffff;
}
.cid-uYNaqyg34B .mbr-text {
  color: #ffffff;
}
.cid-uYNaqyg34B .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNaqyg34B .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNaqyg34B .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNaqyg34B .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVNB7reh3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVNB7reh3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVNB7reh3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVNB7reh3 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVNB7reh3 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVNB7reh3 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVNB7reh3 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVNB7reh3 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVNB7reh3 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVNB7reh3 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVNB7reh3 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVNB7reh3 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVNB7reh3 [class^="socicon-"]:before,
.cid-uvVNB7reh3 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVNB7reh3 .mbr-section-title,
.cid-uvVNB7reh3 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVNB828mL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVNB828mL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVNB828mL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVNB828mL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVNB828mL .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVNB828mL .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVNB828mL .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVNB828mL .mbr-text {
  color: #ffffff;
}
.cid-uvVNB828mL .card-title {
  color: #ffffff;
}
.cid-uvVNB828mL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVNB828mL .mbr-section-title {
  color: #ffffff;
}
.cid-uvVNB828mL .link {
  color: #4479d9;
}
.cid-uvVNB8INiD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVNB8INiD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVNB8INiD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVNB8INiD .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVNB8INiD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVNB8INiD .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVNB8INiD .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVNB8INiD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVNB8INiD .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVQHzoCd6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVQHzoCd6 nav.navbar {
  position: fixed;
}
.cid-uvVQHzoCd6 .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-uvVQHzoCd6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVQHzoCd6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVQHzoCd6 .dropdown-item:hover,
.cid-uvVQHzoCd6 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVQHzoCd6 .dropdown-item:hover span {
  color: white;
}
.cid-uvVQHzoCd6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVQHzoCd6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVQHzoCd6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVQHzoCd6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVQHzoCd6 .nav-link {
  position: relative;
}
.cid-uvVQHzoCd6 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVQHzoCd6 .container {
    flex-wrap: wrap;
  }
}
.cid-uvVQHzoCd6 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVQHzoCd6 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVQHzoCd6 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVQHzoCd6 .dropdown-menu,
.cid-uvVQHzoCd6 .navbar.opened {
  background: #000000 !important;
}
.cid-uvVQHzoCd6 .nav-item:focus,
.cid-uvVQHzoCd6 .nav-link:focus {
  outline: none;
}
.cid-uvVQHzoCd6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVQHzoCd6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVQHzoCd6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVQHzoCd6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVQHzoCd6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVQHzoCd6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVQHzoCd6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVQHzoCd6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVQHzoCd6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVQHzoCd6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVQHzoCd6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVQHzoCd6 .navbar.collapsed {
  justify-content: center;
}
.cid-uvVQHzoCd6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVQHzoCd6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVQHzoCd6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVQHzoCd6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVQHzoCd6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVQHzoCd6 .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-uvVQHzoCd6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVQHzoCd6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVQHzoCd6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVQHzoCd6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVQHzoCd6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVQHzoCd6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVQHzoCd6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVQHzoCd6 .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-uvVQHzoCd6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVQHzoCd6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVQHzoCd6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVQHzoCd6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVQHzoCd6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVQHzoCd6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVQHzoCd6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVQHzoCd6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVQHzoCd6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVQHzoCd6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVQHzoCd6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVQHzoCd6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVQHzoCd6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVQHzoCd6 .dropdown-item.active,
.cid-uvVQHzoCd6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVQHzoCd6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVQHzoCd6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVQHzoCd6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVQHzoCd6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVQHzoCd6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVQHzoCd6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVQHzoCd6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVQHzoCd6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVQHzoCd6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVQHzoCd6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVQHzoCd6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVQHzoCd6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVQHzoCd6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVQHzoCd6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVQHzoCd6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVQHzoCd6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVQHzoCd6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVQHzoCd6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVQHzoCd6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVQHzoCd6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVQHzoCd6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVQHzoCd6 .navbar {
    height: 70px;
  }
  .cid-uvVQHzoCd6 .navbar.opened {
    height: auto;
  }
  .cid-uvVQHzoCd6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVQHAaq3P {
  background-image: url("../../../assets/images/time-3270448-1280-1280x854.webp");
}
.cid-uvVQHAaq3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVQHAaq3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVQHAaq3P .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVQHAaq3P .mbr-text,
.cid-uvVQHAaq3P .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVQHAaq3P .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVQHBnLBV {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVQHBnLBV img,
.cid-uvVQHBnLBV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uvVQHBnLBV .item:focus,
.cid-uvVQHBnLBV span:focus {
  outline: none;
}
.cid-uvVQHBnLBV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVQHBnLBV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVQHBnLBV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVQHBnLBV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVQHBnLBV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVQHBnLBV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVQHBnLBV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVQHBnLBV .mbr-section-title {
  color: #ffffff;
}
.cid-uvVQHBnLBV .mbr-text,
.cid-uvVQHBnLBV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVQHBnLBV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVQHBnLBV .item-subtitle {
  text-align: left;
}
.cid-uvVQHBnLBV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWn55zB64 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWn55zB64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWn55zB64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWn55zB64 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWn55zB64 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNahTX0Yc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNahTX0Yc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNahTX0Yc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNahTX0Yc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNahTX0Yc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNah60Mg8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNah60Mg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNah60Mg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNah60Mg8 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNah60Mg8 .number {
  color: #ffffff;
}
.cid-uYNah60Mg8 .period {
  display: block;
}
.cid-uYNah60Mg8 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNah60Mg8 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNah60Mg8 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNah60Mg8 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNah60Mg8 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNah60Mg8 .mbr-text {
  color: #ffffff;
}
.cid-uYNah60Mg8 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNah60Mg8 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNah60Mg8 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNah60Mg8 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVQHCIm7d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVQHCIm7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVQHCIm7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVQHCIm7d .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVQHCIm7d .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVQHCIm7d .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVQHCIm7d .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVQHCIm7d .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVQHCIm7d .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVQHCIm7d .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVQHCIm7d .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVQHCIm7d .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVQHCIm7d [class^="socicon-"]:before,
.cid-uvVQHCIm7d [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVQHCIm7d .mbr-section-title,
.cid-uvVQHCIm7d .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVQHDjwGD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVQHDjwGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVQHDjwGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVQHDjwGD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVQHDjwGD .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVQHDjwGD .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVQHDjwGD .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVQHDjwGD .mbr-text {
  color: #ffffff;
}
.cid-uvVQHDjwGD .card-title {
  color: #ffffff;
}
.cid-uvVQHDjwGD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVQHDjwGD .mbr-section-title {
  color: #ffffff;
}
.cid-uvVQHDjwGD .link {
  color: #4479d9;
}
.cid-uvVQHE0miR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVQHE0miR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVQHE0miR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVQHE0miR .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVQHE0miR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVQHE0miR .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVQHE0miR .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVQHE0miR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVQHE0miR .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvVYAAAVLf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvVYAAAVLf nav.navbar {
  position: fixed;
}
.cid-uvVYAAAVLf .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-uvVYAAAVLf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvVYAAAVLf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvVYAAAVLf .dropdown-item:hover,
.cid-uvVYAAAVLf .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvVYAAAVLf .dropdown-item:hover span {
  color: white;
}
.cid-uvVYAAAVLf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvVYAAAVLf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvVYAAAVLf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvVYAAAVLf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvVYAAAVLf .nav-link {
  position: relative;
}
.cid-uvVYAAAVLf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVYAAAVLf .container {
    flex-wrap: wrap;
  }
}
.cid-uvVYAAAVLf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvVYAAAVLf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvVYAAAVLf .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvVYAAAVLf .dropdown-menu,
.cid-uvVYAAAVLf .navbar.opened {
  background: #000000 !important;
}
.cid-uvVYAAAVLf .nav-item:focus,
.cid-uvVYAAAVLf .nav-link:focus {
  outline: none;
}
.cid-uvVYAAAVLf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvVYAAAVLf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvVYAAAVLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvVYAAAVLf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvVYAAAVLf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvVYAAAVLf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvVYAAAVLf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvVYAAAVLf .navbar.opened {
  transition: all 0.3s;
}
.cid-uvVYAAAVLf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvVYAAAVLf .navbar .navbar-logo img {
  width: auto;
}
.cid-uvVYAAAVLf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvVYAAAVLf .navbar.collapsed {
  justify-content: center;
}
.cid-uvVYAAAVLf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvVYAAAVLf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvVYAAAVLf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvVYAAAVLf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvVYAAAVLf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvVYAAAVLf .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-uvVYAAAVLf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvVYAAAVLf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvVYAAAVLf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvVYAAAVLf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvVYAAAVLf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvVYAAAVLf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvVYAAAVLf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvVYAAAVLf .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-uvVYAAAVLf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvVYAAAVLf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvVYAAAVLf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvVYAAAVLf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvVYAAAVLf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvVYAAAVLf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvVYAAAVLf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvVYAAAVLf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvVYAAAVLf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvVYAAAVLf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvVYAAAVLf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvVYAAAVLf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvVYAAAVLf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvVYAAAVLf .dropdown-item.active,
.cid-uvVYAAAVLf .dropdown-item:active {
  background-color: transparent;
}
.cid-uvVYAAAVLf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvVYAAAVLf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvVYAAAVLf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvVYAAAVLf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvVYAAAVLf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvVYAAAVLf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvVYAAAVLf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvVYAAAVLf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvVYAAAVLf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvVYAAAVLf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvVYAAAVLf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvVYAAAVLf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVYAAAVLf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvVYAAAVLf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvVYAAAVLf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVYAAAVLf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvVYAAAVLf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvVYAAAVLf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvVYAAAVLf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvVYAAAVLf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvVYAAAVLf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvVYAAAVLf .navbar {
    height: 70px;
  }
  .cid-uvVYAAAVLf .navbar.opened {
    height: auto;
  }
  .cid-uvVYAAAVLf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvVYABnruL {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvVYABnruL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVYABnruL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVYABnruL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvVYABnruL .mbr-text,
.cid-uvVYABnruL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvVYABnruL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvVZDvw8P2 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVZDvw8P2 img,
.cid-uvVZDvw8P2 .item-img {
  width: 100%;
}
.cid-uvVZDvw8P2 .item:focus,
.cid-uvVZDvw8P2 span:focus {
  outline: none;
}
.cid-uvVZDvw8P2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvVZDvw8P2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvVZDvw8P2 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvVZDvw8P2 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvVZDvw8P2 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvVZDvw8P2 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvVZDvw8P2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvVZDvw8P2 .mbr-section-title {
  color: #ffffff;
}
.cid-uvVZDvw8P2 .mbr-text,
.cid-uvVZDvw8P2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvVZDvw8P2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvVZDvw8P2 .item-subtitle {
  text-align: left;
}
.cid-uvVZDvw8P2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWfY5HxcA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWfY5HxcA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWfY5HxcA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWfY5HxcA .mbr-section-title {
  color: #ffffff;
}
.cid-uZWfY5HxcA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgDnK1Mj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNgDnK1Mj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgDnK1Mj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgDnK1Mj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgDnK1Mj .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgClFhy3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNgClFhy3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgClFhy3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgClFhy3 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNgClFhy3 .number {
  color: #ffffff;
}
.cid-uYNgClFhy3 .period {
  display: block;
}
.cid-uYNgClFhy3 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNgClFhy3 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNgClFhy3 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNgClFhy3 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNgClFhy3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgClFhy3 .mbr-text {
  color: #ffffff;
}
.cid-uYNgClFhy3 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNgClFhy3 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNgClFhy3 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNgClFhy3 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvVYAHoRJ6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvVYAHoRJ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVYAHoRJ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVYAHoRJ6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvVYAHoRJ6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvVYAHoRJ6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvVYAHoRJ6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvVYAHoRJ6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvVYAHoRJ6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvVYAHoRJ6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvVYAHoRJ6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvVYAHoRJ6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvVYAHoRJ6 [class^="socicon-"]:before,
.cid-uvVYAHoRJ6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvVYAHoRJ6 .mbr-section-title,
.cid-uvVYAHoRJ6 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvVYAI8PVU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvVYAI8PVU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVYAI8PVU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVYAI8PVU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvVYAI8PVU .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvVYAI8PVU .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVYAI8PVU .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvVYAI8PVU .mbr-text {
  color: #ffffff;
}
.cid-uvVYAI8PVU .card-title {
  color: #ffffff;
}
.cid-uvVYAI8PVU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvVYAI8PVU .mbr-section-title {
  color: #ffffff;
}
.cid-uvVYAI8PVU .link {
  color: #4479d9;
}
.cid-uvVYAIYcvf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvVYAIYcvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvVYAIYcvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvVYAIYcvf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvVYAIYcvf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvVYAIYcvf .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVYAIYcvf .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvVYAIYcvf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvVYAIYcvf .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvW2fTMkYm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvW2fTMkYm nav.navbar {
  position: fixed;
}
.cid-uvW2fTMkYm .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-uvW2fTMkYm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvW2fTMkYm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvW2fTMkYm .dropdown-item:hover,
.cid-uvW2fTMkYm .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvW2fTMkYm .dropdown-item:hover span {
  color: white;
}
.cid-uvW2fTMkYm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvW2fTMkYm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvW2fTMkYm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvW2fTMkYm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvW2fTMkYm .nav-link {
  position: relative;
}
.cid-uvW2fTMkYm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW2fTMkYm .container {
    flex-wrap: wrap;
  }
}
.cid-uvW2fTMkYm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW2fTMkYm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvW2fTMkYm .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvW2fTMkYm .dropdown-menu,
.cid-uvW2fTMkYm .navbar.opened {
  background: #000000 !important;
}
.cid-uvW2fTMkYm .nav-item:focus,
.cid-uvW2fTMkYm .nav-link:focus {
  outline: none;
}
.cid-uvW2fTMkYm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvW2fTMkYm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvW2fTMkYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvW2fTMkYm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvW2fTMkYm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvW2fTMkYm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvW2fTMkYm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvW2fTMkYm .navbar.opened {
  transition: all 0.3s;
}
.cid-uvW2fTMkYm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvW2fTMkYm .navbar .navbar-logo img {
  width: auto;
}
.cid-uvW2fTMkYm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvW2fTMkYm .navbar.collapsed {
  justify-content: center;
}
.cid-uvW2fTMkYm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvW2fTMkYm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvW2fTMkYm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvW2fTMkYm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvW2fTMkYm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvW2fTMkYm .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-uvW2fTMkYm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvW2fTMkYm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvW2fTMkYm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvW2fTMkYm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvW2fTMkYm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvW2fTMkYm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvW2fTMkYm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvW2fTMkYm .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-uvW2fTMkYm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvW2fTMkYm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvW2fTMkYm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvW2fTMkYm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvW2fTMkYm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvW2fTMkYm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvW2fTMkYm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvW2fTMkYm .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvW2fTMkYm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvW2fTMkYm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvW2fTMkYm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvW2fTMkYm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvW2fTMkYm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvW2fTMkYm .dropdown-item.active,
.cid-uvW2fTMkYm .dropdown-item:active {
  background-color: transparent;
}
.cid-uvW2fTMkYm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvW2fTMkYm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvW2fTMkYm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvW2fTMkYm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvW2fTMkYm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvW2fTMkYm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvW2fTMkYm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvW2fTMkYm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvW2fTMkYm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvW2fTMkYm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvW2fTMkYm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvW2fTMkYm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW2fTMkYm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW2fTMkYm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvW2fTMkYm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW2fTMkYm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvW2fTMkYm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvW2fTMkYm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW2fTMkYm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvW2fTMkYm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvW2fTMkYm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvW2fTMkYm .navbar {
    height: 70px;
  }
  .cid-uvW2fTMkYm .navbar.opened {
    height: auto;
  }
  .cid-uvW2fTMkYm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvW2fUAqw1 {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvW2fUAqw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW2fUAqw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW2fUAqw1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvW2fUAqw1 .mbr-text,
.cid-uvW2fUAqw1 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvW2fUAqw1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvW2fVbWvx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW2fVbWvx img,
.cid-uvW2fVbWvx .item-img {
  width: 100%;
}
.cid-uvW2fVbWvx .item:focus,
.cid-uvW2fVbWvx span:focus {
  outline: none;
}
.cid-uvW2fVbWvx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvW2fVbWvx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvW2fVbWvx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvW2fVbWvx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvW2fVbWvx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvW2fVbWvx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvW2fVbWvx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvW2fVbWvx .mbr-section-title {
  color: #ffffff;
}
.cid-uvW2fVbWvx .mbr-text,
.cid-uvW2fVbWvx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvW2fVbWvx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvW2fVbWvx .item-subtitle {
  text-align: left;
}
.cid-uvW2fVbWvx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWjYKfZ83 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWjYKfZ83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWjYKfZ83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWjYKfZ83 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWjYKfZ83 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgSjsIC6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNgSjsIC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgSjsIC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgSjsIC6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgSjsIC6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgRlWxCh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNgRlWxCh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgRlWxCh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgRlWxCh .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNgRlWxCh .number {
  color: #ffffff;
}
.cid-uYNgRlWxCh .period {
  display: block;
}
.cid-uYNgRlWxCh .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNgRlWxCh .period {
    font-size: 0.8rem;
  }
}
.cid-uYNgRlWxCh .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNgRlWxCh .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNgRlWxCh .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgRlWxCh .mbr-text {
  color: #ffffff;
}
.cid-uYNgRlWxCh .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNgRlWxCh .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNgRlWxCh .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNgRlWxCh .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvW2fWpNct {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvW2fWpNct .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW2fWpNct .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW2fWpNct .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvW2fWpNct .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvW2fWpNct .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvW2fWpNct .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvW2fWpNct .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvW2fWpNct .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvW2fWpNct .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvW2fWpNct .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvW2fWpNct .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvW2fWpNct [class^="socicon-"]:before,
.cid-uvW2fWpNct [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvW2fWpNct .mbr-section-title,
.cid-uvW2fWpNct .mbr-social-likes {
  color: #ffffff;
}
.cid-uvW2fWXst0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW2fWXst0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW2fWXst0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW2fWXst0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvW2fWXst0 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvW2fWXst0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW2fWXst0 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvW2fWXst0 .mbr-text {
  color: #ffffff;
}
.cid-uvW2fWXst0 .card-title {
  color: #ffffff;
}
.cid-uvW2fWXst0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvW2fWXst0 .mbr-section-title {
  color: #ffffff;
}
.cid-uvW2fWXst0 .link {
  color: #4479d9;
}
.cid-uvW2fXFadS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvW2fXFadS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW2fXFadS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW2fXFadS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvW2fXFadS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvW2fXFadS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW2fXFadS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvW2fXFadS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvW2fXFadS .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvW5TIAN3I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvW5TIAN3I nav.navbar {
  position: fixed;
}
.cid-uvW5TIAN3I .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-uvW5TIAN3I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvW5TIAN3I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvW5TIAN3I .dropdown-item:hover,
.cid-uvW5TIAN3I .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvW5TIAN3I .dropdown-item:hover span {
  color: white;
}
.cid-uvW5TIAN3I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvW5TIAN3I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvW5TIAN3I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvW5TIAN3I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvW5TIAN3I .nav-link {
  position: relative;
}
.cid-uvW5TIAN3I .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW5TIAN3I .container {
    flex-wrap: wrap;
  }
}
.cid-uvW5TIAN3I .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW5TIAN3I .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvW5TIAN3I .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvW5TIAN3I .dropdown-menu,
.cid-uvW5TIAN3I .navbar.opened {
  background: #000000 !important;
}
.cid-uvW5TIAN3I .nav-item:focus,
.cid-uvW5TIAN3I .nav-link:focus {
  outline: none;
}
.cid-uvW5TIAN3I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvW5TIAN3I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvW5TIAN3I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvW5TIAN3I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvW5TIAN3I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvW5TIAN3I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvW5TIAN3I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvW5TIAN3I .navbar.opened {
  transition: all 0.3s;
}
.cid-uvW5TIAN3I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvW5TIAN3I .navbar .navbar-logo img {
  width: auto;
}
.cid-uvW5TIAN3I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvW5TIAN3I .navbar.collapsed {
  justify-content: center;
}
.cid-uvW5TIAN3I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvW5TIAN3I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvW5TIAN3I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvW5TIAN3I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvW5TIAN3I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvW5TIAN3I .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-uvW5TIAN3I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvW5TIAN3I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvW5TIAN3I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvW5TIAN3I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvW5TIAN3I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvW5TIAN3I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvW5TIAN3I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvW5TIAN3I .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-uvW5TIAN3I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvW5TIAN3I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvW5TIAN3I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvW5TIAN3I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvW5TIAN3I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvW5TIAN3I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvW5TIAN3I .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvW5TIAN3I .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvW5TIAN3I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvW5TIAN3I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvW5TIAN3I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvW5TIAN3I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvW5TIAN3I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvW5TIAN3I .dropdown-item.active,
.cid-uvW5TIAN3I .dropdown-item:active {
  background-color: transparent;
}
.cid-uvW5TIAN3I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvW5TIAN3I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvW5TIAN3I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvW5TIAN3I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvW5TIAN3I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvW5TIAN3I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvW5TIAN3I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvW5TIAN3I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvW5TIAN3I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvW5TIAN3I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvW5TIAN3I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvW5TIAN3I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW5TIAN3I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW5TIAN3I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvW5TIAN3I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW5TIAN3I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvW5TIAN3I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvW5TIAN3I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW5TIAN3I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvW5TIAN3I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvW5TIAN3I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvW5TIAN3I .navbar {
    height: 70px;
  }
  .cid-uvW5TIAN3I .navbar.opened {
    height: auto;
  }
  .cid-uvW5TIAN3I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvW5TJjBim {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvW5TJjBim .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW5TJjBim .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW5TJjBim .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvW5TJjBim .mbr-text,
.cid-uvW5TJjBim .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvW5TJjBim .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvW5TJRmFl {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW5TJRmFl img,
.cid-uvW5TJRmFl .item-img {
  width: 100%;
}
.cid-uvW5TJRmFl .item:focus,
.cid-uvW5TJRmFl span:focus {
  outline: none;
}
.cid-uvW5TJRmFl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvW5TJRmFl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvW5TJRmFl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvW5TJRmFl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvW5TJRmFl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvW5TJRmFl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvW5TJRmFl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvW5TJRmFl .mbr-section-title {
  color: #ffffff;
}
.cid-uvW5TJRmFl .mbr-text,
.cid-uvW5TJRmFl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvW5TJRmFl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvW5TJRmFl .item-subtitle {
  text-align: left;
}
.cid-uvW5TJRmFl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWk6hdcHp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWk6hdcHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWk6hdcHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWk6hdcHp .mbr-section-title {
  color: #ffffff;
}
.cid-uZWk6hdcHp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgXQKDBz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNgXQKDBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgXQKDBz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgXQKDBz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNgXQKDBz .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgWRBgAs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNgWRBgAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNgWRBgAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNgWRBgAs .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNgWRBgAs .number {
  color: #ffffff;
}
.cid-uYNgWRBgAs .period {
  display: block;
}
.cid-uYNgWRBgAs .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNgWRBgAs .period {
    font-size: 0.8rem;
  }
}
.cid-uYNgWRBgAs .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNgWRBgAs .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNgWRBgAs .mbr-section-title {
  color: #ffffff;
}
.cid-uYNgWRBgAs .mbr-text {
  color: #ffffff;
}
.cid-uYNgWRBgAs .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNgWRBgAs .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNgWRBgAs .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNgWRBgAs .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvW5TL0ebe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvW5TL0ebe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW5TL0ebe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW5TL0ebe .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvW5TL0ebe .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvW5TL0ebe .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvW5TL0ebe .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvW5TL0ebe .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvW5TL0ebe .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvW5TL0ebe .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvW5TL0ebe .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvW5TL0ebe .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvW5TL0ebe [class^="socicon-"]:before,
.cid-uvW5TL0ebe [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvW5TL0ebe .mbr-section-title,
.cid-uvW5TL0ebe .mbr-social-likes {
  color: #ffffff;
}
.cid-uvW5TLxSOm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW5TLxSOm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW5TLxSOm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW5TLxSOm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvW5TLxSOm .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvW5TLxSOm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW5TLxSOm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvW5TLxSOm .mbr-text {
  color: #ffffff;
}
.cid-uvW5TLxSOm .card-title {
  color: #ffffff;
}
.cid-uvW5TLxSOm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvW5TLxSOm .mbr-section-title {
  color: #ffffff;
}
.cid-uvW5TLxSOm .link {
  color: #4479d9;
}
.cid-uvW5TM970q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvW5TM970q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW5TM970q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW5TM970q .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvW5TM970q .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvW5TM970q .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW5TM970q .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvW5TM970q div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvW5TM970q .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvW6yi974C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvW6yi974C nav.navbar {
  position: fixed;
}
.cid-uvW6yi974C .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-uvW6yi974C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvW6yi974C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvW6yi974C .dropdown-item:hover,
.cid-uvW6yi974C .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvW6yi974C .dropdown-item:hover span {
  color: white;
}
.cid-uvW6yi974C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvW6yi974C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvW6yi974C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvW6yi974C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvW6yi974C .nav-link {
  position: relative;
}
.cid-uvW6yi974C .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW6yi974C .container {
    flex-wrap: wrap;
  }
}
.cid-uvW6yi974C .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvW6yi974C .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvW6yi974C .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvW6yi974C .dropdown-menu,
.cid-uvW6yi974C .navbar.opened {
  background: #000000 !important;
}
.cid-uvW6yi974C .nav-item:focus,
.cid-uvW6yi974C .nav-link:focus {
  outline: none;
}
.cid-uvW6yi974C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvW6yi974C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvW6yi974C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvW6yi974C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvW6yi974C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvW6yi974C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvW6yi974C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvW6yi974C .navbar.opened {
  transition: all 0.3s;
}
.cid-uvW6yi974C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvW6yi974C .navbar .navbar-logo img {
  width: auto;
}
.cid-uvW6yi974C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvW6yi974C .navbar.collapsed {
  justify-content: center;
}
.cid-uvW6yi974C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvW6yi974C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvW6yi974C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvW6yi974C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvW6yi974C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvW6yi974C .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-uvW6yi974C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvW6yi974C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvW6yi974C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvW6yi974C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvW6yi974C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvW6yi974C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvW6yi974C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvW6yi974C .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-uvW6yi974C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvW6yi974C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvW6yi974C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvW6yi974C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvW6yi974C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvW6yi974C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvW6yi974C .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvW6yi974C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvW6yi974C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvW6yi974C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvW6yi974C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvW6yi974C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvW6yi974C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvW6yi974C .dropdown-item.active,
.cid-uvW6yi974C .dropdown-item:active {
  background-color: transparent;
}
.cid-uvW6yi974C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvW6yi974C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvW6yi974C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvW6yi974C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvW6yi974C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvW6yi974C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvW6yi974C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvW6yi974C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvW6yi974C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvW6yi974C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvW6yi974C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvW6yi974C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW6yi974C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvW6yi974C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvW6yi974C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW6yi974C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvW6yi974C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvW6yi974C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvW6yi974C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvW6yi974C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvW6yi974C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvW6yi974C .navbar {
    height: 70px;
  }
  .cid-uvW6yi974C .navbar.opened {
    height: auto;
  }
  .cid-uvW6yi974C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvW6yiTzE6 {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvW6yiTzE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW6yiTzE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW6yiTzE6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvW6yiTzE6 .mbr-text,
.cid-uvW6yiTzE6 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvW6yiTzE6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvW6yjrFyf {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW6yjrFyf img,
.cid-uvW6yjrFyf .item-img {
  width: 100%;
}
.cid-uvW6yjrFyf .item:focus,
.cid-uvW6yjrFyf span:focus {
  outline: none;
}
.cid-uvW6yjrFyf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvW6yjrFyf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvW6yjrFyf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvW6yjrFyf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvW6yjrFyf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvW6yjrFyf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvW6yjrFyf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvW6yjrFyf .mbr-section-title {
  color: #ffffff;
}
.cid-uvW6yjrFyf .mbr-text,
.cid-uvW6yjrFyf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvW6yjrFyf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvW6yjrFyf .item-subtitle {
  text-align: left;
}
.cid-uvW6yjrFyf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWk8nmdoL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWk8nmdoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWk8nmdoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWk8nmdoL .mbr-section-title {
  color: #ffffff;
}
.cid-uZWk8nmdoL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNh38eltl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNh38eltl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNh38eltl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNh38eltl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNh38eltl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNh1UY1hb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNh1UY1hb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNh1UY1hb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNh1UY1hb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNh1UY1hb .number {
  color: #ffffff;
}
.cid-uYNh1UY1hb .period {
  display: block;
}
.cid-uYNh1UY1hb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNh1UY1hb .period {
    font-size: 0.8rem;
  }
}
.cid-uYNh1UY1hb .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNh1UY1hb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNh1UY1hb .mbr-section-title {
  color: #ffffff;
}
.cid-uYNh1UY1hb .mbr-text {
  color: #ffffff;
}
.cid-uYNh1UY1hb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNh1UY1hb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNh1UY1hb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNh1UY1hb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvW6ykHqn5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvW6ykHqn5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW6ykHqn5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW6ykHqn5 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvW6ykHqn5 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvW6ykHqn5 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvW6ykHqn5 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvW6ykHqn5 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvW6ykHqn5 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvW6ykHqn5 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvW6ykHqn5 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvW6ykHqn5 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvW6ykHqn5 [class^="socicon-"]:before,
.cid-uvW6ykHqn5 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvW6ykHqn5 .mbr-section-title,
.cid-uvW6ykHqn5 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvW6ylf2vd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvW6ylf2vd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW6ylf2vd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW6ylf2vd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvW6ylf2vd .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvW6ylf2vd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW6ylf2vd .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvW6ylf2vd .mbr-text {
  color: #ffffff;
}
.cid-uvW6ylf2vd .card-title {
  color: #ffffff;
}
.cid-uvW6ylf2vd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvW6ylf2vd .mbr-section-title {
  color: #ffffff;
}
.cid-uvW6ylf2vd .link {
  color: #4479d9;
}
.cid-uvW6ylVgjV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvW6ylVgjV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvW6ylVgjV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvW6ylVgjV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvW6ylVgjV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvW6ylVgjV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvW6ylVgjV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvW6ylVgjV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvW6ylVgjV .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWcgb1ZmV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWcgb1ZmV nav.navbar {
  position: fixed;
}
.cid-uvWcgb1ZmV .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-uvWcgb1ZmV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWcgb1ZmV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWcgb1ZmV .dropdown-item:hover,
.cid-uvWcgb1ZmV .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWcgb1ZmV .dropdown-item:hover span {
  color: white;
}
.cid-uvWcgb1ZmV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWcgb1ZmV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWcgb1ZmV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWcgb1ZmV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWcgb1ZmV .nav-link {
  position: relative;
}
.cid-uvWcgb1ZmV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWcgb1ZmV .container {
    flex-wrap: wrap;
  }
}
.cid-uvWcgb1ZmV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWcgb1ZmV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWcgb1ZmV .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWcgb1ZmV .dropdown-menu,
.cid-uvWcgb1ZmV .navbar.opened {
  background: #000000 !important;
}
.cid-uvWcgb1ZmV .nav-item:focus,
.cid-uvWcgb1ZmV .nav-link:focus {
  outline: none;
}
.cid-uvWcgb1ZmV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWcgb1ZmV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWcgb1ZmV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWcgb1ZmV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWcgb1ZmV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWcgb1ZmV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWcgb1ZmV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWcgb1ZmV .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWcgb1ZmV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWcgb1ZmV .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWcgb1ZmV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWcgb1ZmV .navbar.collapsed {
  justify-content: center;
}
.cid-uvWcgb1ZmV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWcgb1ZmV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWcgb1ZmV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWcgb1ZmV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWcgb1ZmV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWcgb1ZmV .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-uvWcgb1ZmV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWcgb1ZmV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWcgb1ZmV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWcgb1ZmV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWcgb1ZmV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWcgb1ZmV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWcgb1ZmV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWcgb1ZmV .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-uvWcgb1ZmV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWcgb1ZmV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWcgb1ZmV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWcgb1ZmV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWcgb1ZmV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWcgb1ZmV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWcgb1ZmV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWcgb1ZmV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWcgb1ZmV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWcgb1ZmV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWcgb1ZmV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWcgb1ZmV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWcgb1ZmV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWcgb1ZmV .dropdown-item.active,
.cid-uvWcgb1ZmV .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWcgb1ZmV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWcgb1ZmV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWcgb1ZmV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWcgb1ZmV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWcgb1ZmV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWcgb1ZmV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWcgb1ZmV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWcgb1ZmV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWcgb1ZmV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWcgb1ZmV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWcgb1ZmV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWcgb1ZmV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWcgb1ZmV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWcgb1ZmV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWcgb1ZmV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWcgb1ZmV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWcgb1ZmV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWcgb1ZmV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWcgb1ZmV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWcgb1ZmV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWcgb1ZmV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWcgb1ZmV .navbar {
    height: 70px;
  }
  .cid-uvWcgb1ZmV .navbar.opened {
    height: auto;
  }
  .cid-uvWcgb1ZmV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWcgbMfnn {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWcgbMfnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcgbMfnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcgbMfnn .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcgbMfnn .mbr-text,
.cid-uvWcgbMfnn .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcgbMfnn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcgclyqD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWcgclyqD img,
.cid-uvWcgclyqD .item-img {
  width: 100%;
}
.cid-uvWcgclyqD .item:focus,
.cid-uvWcgclyqD span:focus {
  outline: none;
}
.cid-uvWcgclyqD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWcgclyqD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWcgclyqD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWcgclyqD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWcgclyqD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWcgclyqD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWcgclyqD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWcgclyqD .mbr-section-title {
  color: #ffffff;
}
.cid-uvWcgclyqD .mbr-text,
.cid-uvWcgclyqD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWcgclyqD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWcgclyqD .item-subtitle {
  text-align: left;
}
.cid-uvWcgclyqD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkaJOdp6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkaJOdp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkaJOdp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkaJOdp6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkaJOdp6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhbpEc71 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhbpEc71 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhbpEc71 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhbpEc71 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhbpEc71 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhapgfZl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhapgfZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhapgfZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhapgfZl .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhapgfZl .number {
  color: #ffffff;
}
.cid-uYNhapgfZl .period {
  display: block;
}
.cid-uYNhapgfZl .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhapgfZl .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhapgfZl .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhapgfZl .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhapgfZl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhapgfZl .mbr-text {
  color: #ffffff;
}
.cid-uYNhapgfZl .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhapgfZl .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhapgfZl .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhapgfZl .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWcgdwmDj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWcgdwmDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcgdwmDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcgdwmDj .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWcgdwmDj .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWcgdwmDj .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWcgdwmDj .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWcgdwmDj .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWcgdwmDj .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWcgdwmDj .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWcgdwmDj .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWcgdwmDj .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWcgdwmDj [class^="socicon-"]:before,
.cid-uvWcgdwmDj [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWcgdwmDj .mbr-section-title,
.cid-uvWcgdwmDj .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWcge2UcD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWcge2UcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcge2UcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcge2UcD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWcge2UcD .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWcge2UcD .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWcge2UcD .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWcge2UcD .mbr-text {
  color: #ffffff;
}
.cid-uvWcge2UcD .card-title {
  color: #ffffff;
}
.cid-uvWcge2UcD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWcge2UcD .mbr-section-title {
  color: #ffffff;
}
.cid-uvWcge2UcD .link {
  color: #4479d9;
}
.cid-uvWcgeJ88E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWcgeJ88E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcgeJ88E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcgeJ88E .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWcgeJ88E .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWcgeJ88E .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWcgeJ88E .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWcgeJ88E div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWcgeJ88E .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWcXeeiw3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWcXeeiw3 nav.navbar {
  position: fixed;
}
.cid-uvWcXeeiw3 .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-uvWcXeeiw3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWcXeeiw3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWcXeeiw3 .dropdown-item:hover,
.cid-uvWcXeeiw3 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWcXeeiw3 .dropdown-item:hover span {
  color: white;
}
.cid-uvWcXeeiw3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWcXeeiw3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWcXeeiw3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWcXeeiw3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWcXeeiw3 .nav-link {
  position: relative;
}
.cid-uvWcXeeiw3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWcXeeiw3 .container {
    flex-wrap: wrap;
  }
}
.cid-uvWcXeeiw3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWcXeeiw3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWcXeeiw3 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWcXeeiw3 .dropdown-menu,
.cid-uvWcXeeiw3 .navbar.opened {
  background: #000000 !important;
}
.cid-uvWcXeeiw3 .nav-item:focus,
.cid-uvWcXeeiw3 .nav-link:focus {
  outline: none;
}
.cid-uvWcXeeiw3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWcXeeiw3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWcXeeiw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWcXeeiw3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWcXeeiw3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWcXeeiw3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWcXeeiw3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWcXeeiw3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWcXeeiw3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWcXeeiw3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWcXeeiw3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWcXeeiw3 .navbar.collapsed {
  justify-content: center;
}
.cid-uvWcXeeiw3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWcXeeiw3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWcXeeiw3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWcXeeiw3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWcXeeiw3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWcXeeiw3 .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-uvWcXeeiw3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWcXeeiw3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWcXeeiw3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWcXeeiw3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWcXeeiw3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWcXeeiw3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWcXeeiw3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWcXeeiw3 .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-uvWcXeeiw3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWcXeeiw3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWcXeeiw3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWcXeeiw3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWcXeeiw3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWcXeeiw3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWcXeeiw3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWcXeeiw3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWcXeeiw3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWcXeeiw3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWcXeeiw3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWcXeeiw3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWcXeeiw3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWcXeeiw3 .dropdown-item.active,
.cid-uvWcXeeiw3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWcXeeiw3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWcXeeiw3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWcXeeiw3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWcXeeiw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWcXeeiw3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWcXeeiw3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWcXeeiw3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWcXeeiw3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWcXeeiw3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWcXeeiw3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWcXeeiw3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWcXeeiw3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWcXeeiw3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWcXeeiw3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWcXeeiw3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWcXeeiw3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWcXeeiw3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWcXeeiw3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWcXeeiw3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWcXeeiw3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWcXeeiw3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWcXeeiw3 .navbar {
    height: 70px;
  }
  .cid-uvWcXeeiw3 .navbar.opened {
    height: auto;
  }
  .cid-uvWcXeeiw3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWcXeXJwA {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWcXeXJwA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcXeXJwA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcXeXJwA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcXeXJwA .mbr-text,
.cid-uvWcXeXJwA .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcXeXJwA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWcXftxcG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWcXftxcG img,
.cid-uvWcXftxcG .item-img {
  width: 100%;
}
.cid-uvWcXftxcG .item:focus,
.cid-uvWcXftxcG span:focus {
  outline: none;
}
.cid-uvWcXftxcG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWcXftxcG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWcXftxcG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWcXftxcG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWcXftxcG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWcXftxcG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWcXftxcG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWcXftxcG .mbr-section-title {
  color: #ffffff;
}
.cid-uvWcXftxcG .mbr-text,
.cid-uvWcXftxcG .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWcXftxcG .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWcXftxcG .item-subtitle {
  text-align: left;
}
.cid-uvWcXftxcG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkd0hdIX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkd0hdIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkd0hdIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkd0hdIX .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkd0hdIX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhi3k1Zo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhi3k1Zo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhi3k1Zo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhi3k1Zo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhi3k1Zo .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhh6zwt3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhh6zwt3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhh6zwt3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhh6zwt3 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhh6zwt3 .number {
  color: #ffffff;
}
.cid-uYNhh6zwt3 .period {
  display: block;
}
.cid-uYNhh6zwt3 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhh6zwt3 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhh6zwt3 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhh6zwt3 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhh6zwt3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhh6zwt3 .mbr-text {
  color: #ffffff;
}
.cid-uYNhh6zwt3 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhh6zwt3 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhh6zwt3 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhh6zwt3 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWcXgEkLG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWcXgEkLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcXgEkLG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcXgEkLG .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWcXgEkLG .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWcXgEkLG .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWcXgEkLG .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWcXgEkLG .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWcXgEkLG .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWcXgEkLG .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWcXgEkLG .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWcXgEkLG .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWcXgEkLG [class^="socicon-"]:before,
.cid-uvWcXgEkLG [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWcXgEkLG .mbr-section-title,
.cid-uvWcXgEkLG .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWcXhavnf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWcXhavnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcXhavnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcXhavnf .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWcXhavnf .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWcXhavnf .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWcXhavnf .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWcXhavnf .mbr-text {
  color: #ffffff;
}
.cid-uvWcXhavnf .card-title {
  color: #ffffff;
}
.cid-uvWcXhavnf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWcXhavnf .mbr-section-title {
  color: #ffffff;
}
.cid-uvWcXhavnf .link {
  color: #4479d9;
}
.cid-uvWcXhQ3U0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWcXhQ3U0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWcXhQ3U0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWcXhQ3U0 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWcXhQ3U0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWcXhQ3U0 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWcXhQ3U0 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWcXhQ3U0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWcXhQ3U0 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWdO7IFDX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWdO7IFDX nav.navbar {
  position: fixed;
}
.cid-uvWdO7IFDX .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-uvWdO7IFDX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWdO7IFDX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWdO7IFDX .dropdown-item:hover,
.cid-uvWdO7IFDX .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWdO7IFDX .dropdown-item:hover span {
  color: white;
}
.cid-uvWdO7IFDX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWdO7IFDX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWdO7IFDX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWdO7IFDX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWdO7IFDX .nav-link {
  position: relative;
}
.cid-uvWdO7IFDX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWdO7IFDX .container {
    flex-wrap: wrap;
  }
}
.cid-uvWdO7IFDX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWdO7IFDX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWdO7IFDX .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWdO7IFDX .dropdown-menu,
.cid-uvWdO7IFDX .navbar.opened {
  background: #000000 !important;
}
.cid-uvWdO7IFDX .nav-item:focus,
.cid-uvWdO7IFDX .nav-link:focus {
  outline: none;
}
.cid-uvWdO7IFDX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWdO7IFDX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWdO7IFDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWdO7IFDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWdO7IFDX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWdO7IFDX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWdO7IFDX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWdO7IFDX .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWdO7IFDX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWdO7IFDX .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWdO7IFDX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWdO7IFDX .navbar.collapsed {
  justify-content: center;
}
.cid-uvWdO7IFDX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWdO7IFDX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWdO7IFDX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWdO7IFDX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWdO7IFDX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWdO7IFDX .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-uvWdO7IFDX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWdO7IFDX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWdO7IFDX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWdO7IFDX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWdO7IFDX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWdO7IFDX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWdO7IFDX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWdO7IFDX .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-uvWdO7IFDX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWdO7IFDX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWdO7IFDX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWdO7IFDX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWdO7IFDX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWdO7IFDX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWdO7IFDX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWdO7IFDX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWdO7IFDX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWdO7IFDX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWdO7IFDX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWdO7IFDX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWdO7IFDX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWdO7IFDX .dropdown-item.active,
.cid-uvWdO7IFDX .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWdO7IFDX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWdO7IFDX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWdO7IFDX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWdO7IFDX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWdO7IFDX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWdO7IFDX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWdO7IFDX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWdO7IFDX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWdO7IFDX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWdO7IFDX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWdO7IFDX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWdO7IFDX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWdO7IFDX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWdO7IFDX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWdO7IFDX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWdO7IFDX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWdO7IFDX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWdO7IFDX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWdO7IFDX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWdO7IFDX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWdO7IFDX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWdO7IFDX .navbar {
    height: 70px;
  }
  .cid-uvWdO7IFDX .navbar.opened {
    height: auto;
  }
  .cid-uvWdO7IFDX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWdO8uGDm {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWdO8uGDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWdO8uGDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWdO8uGDm .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWdO8uGDm .mbr-text,
.cid-uvWdO8uGDm .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWdO8uGDm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWdO97Aoq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWdO97Aoq img,
.cid-uvWdO97Aoq .item-img {
  width: 100%;
}
.cid-uvWdO97Aoq .item:focus,
.cid-uvWdO97Aoq span:focus {
  outline: none;
}
.cid-uvWdO97Aoq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWdO97Aoq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWdO97Aoq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWdO97Aoq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWdO97Aoq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWdO97Aoq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWdO97Aoq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWdO97Aoq .mbr-section-title {
  color: #ffffff;
}
.cid-uvWdO97Aoq .mbr-text,
.cid-uvWdO97Aoq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWdO97Aoq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWdO97Aoq .item-subtitle {
  text-align: left;
}
.cid-uvWdO97Aoq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkfhV7sd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkfhV7sd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkfhV7sd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkfhV7sd .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkfhV7sd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhnylLqU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhnylLqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhnylLqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhnylLqU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhnylLqU .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhmhnskF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhmhnskF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhmhnskF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhmhnskF .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhmhnskF .number {
  color: #ffffff;
}
.cid-uYNhmhnskF .period {
  display: block;
}
.cid-uYNhmhnskF .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhmhnskF .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhmhnskF .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhmhnskF .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhmhnskF .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhmhnskF .mbr-text {
  color: #ffffff;
}
.cid-uYNhmhnskF .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhmhnskF .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhmhnskF .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhmhnskF .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWdOaiJkh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWdOaiJkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWdOaiJkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWdOaiJkh .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWdOaiJkh .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWdOaiJkh .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWdOaiJkh .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWdOaiJkh .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWdOaiJkh .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWdOaiJkh .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWdOaiJkh .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWdOaiJkh .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWdOaiJkh [class^="socicon-"]:before,
.cid-uvWdOaiJkh [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWdOaiJkh .mbr-section-title,
.cid-uvWdOaiJkh .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWdOaPRJ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWdOaPRJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWdOaPRJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWdOaPRJ5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWdOaPRJ5 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWdOaPRJ5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWdOaPRJ5 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWdOaPRJ5 .mbr-text {
  color: #ffffff;
}
.cid-uvWdOaPRJ5 .card-title {
  color: #ffffff;
}
.cid-uvWdOaPRJ5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWdOaPRJ5 .mbr-section-title {
  color: #ffffff;
}
.cid-uvWdOaPRJ5 .link {
  color: #4479d9;
}
.cid-uvWdObrtXY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWdObrtXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWdObrtXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWdObrtXY .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWdObrtXY .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWdObrtXY .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWdObrtXY .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWdObrtXY div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWdObrtXY .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWhLPCXi0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWhLPCXi0 nav.navbar {
  position: fixed;
}
.cid-uvWhLPCXi0 .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-uvWhLPCXi0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWhLPCXi0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWhLPCXi0 .dropdown-item:hover,
.cid-uvWhLPCXi0 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWhLPCXi0 .dropdown-item:hover span {
  color: white;
}
.cid-uvWhLPCXi0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWhLPCXi0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWhLPCXi0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWhLPCXi0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWhLPCXi0 .nav-link {
  position: relative;
}
.cid-uvWhLPCXi0 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWhLPCXi0 .container {
    flex-wrap: wrap;
  }
}
.cid-uvWhLPCXi0 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWhLPCXi0 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWhLPCXi0 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWhLPCXi0 .dropdown-menu,
.cid-uvWhLPCXi0 .navbar.opened {
  background: #000000 !important;
}
.cid-uvWhLPCXi0 .nav-item:focus,
.cid-uvWhLPCXi0 .nav-link:focus {
  outline: none;
}
.cid-uvWhLPCXi0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWhLPCXi0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWhLPCXi0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWhLPCXi0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWhLPCXi0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWhLPCXi0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWhLPCXi0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWhLPCXi0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWhLPCXi0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWhLPCXi0 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWhLPCXi0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWhLPCXi0 .navbar.collapsed {
  justify-content: center;
}
.cid-uvWhLPCXi0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWhLPCXi0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWhLPCXi0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWhLPCXi0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWhLPCXi0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWhLPCXi0 .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-uvWhLPCXi0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWhLPCXi0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWhLPCXi0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWhLPCXi0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWhLPCXi0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWhLPCXi0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWhLPCXi0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWhLPCXi0 .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-uvWhLPCXi0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWhLPCXi0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWhLPCXi0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWhLPCXi0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWhLPCXi0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWhLPCXi0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWhLPCXi0 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWhLPCXi0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWhLPCXi0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWhLPCXi0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWhLPCXi0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWhLPCXi0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWhLPCXi0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWhLPCXi0 .dropdown-item.active,
.cid-uvWhLPCXi0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWhLPCXi0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWhLPCXi0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWhLPCXi0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWhLPCXi0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWhLPCXi0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWhLPCXi0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWhLPCXi0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWhLPCXi0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWhLPCXi0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWhLPCXi0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWhLPCXi0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWhLPCXi0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWhLPCXi0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWhLPCXi0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWhLPCXi0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWhLPCXi0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWhLPCXi0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWhLPCXi0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWhLPCXi0 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWhLPCXi0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWhLPCXi0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWhLPCXi0 .navbar {
    height: 70px;
  }
  .cid-uvWhLPCXi0 .navbar.opened {
    height: auto;
  }
  .cid-uvWhLPCXi0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWhLQrurT {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWhLQrurT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWhLQrurT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWhLQrurT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWhLQrurT .mbr-text,
.cid-uvWhLQrurT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWhLQrurT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWhLRb97Z {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWhLRb97Z img,
.cid-uvWhLRb97Z .item-img {
  width: 100%;
}
.cid-uvWhLRb97Z .item:focus,
.cid-uvWhLRb97Z span:focus {
  outline: none;
}
.cid-uvWhLRb97Z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWhLRb97Z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWhLRb97Z .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWhLRb97Z .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWhLRb97Z .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWhLRb97Z .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWhLRb97Z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWhLRb97Z .mbr-section-title {
  color: #ffffff;
}
.cid-uvWhLRb97Z .mbr-text,
.cid-uvWhLRb97Z .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWhLRb97Z .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWhLRb97Z .item-subtitle {
  text-align: left;
}
.cid-uvWhLRb97Z .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkicZO4G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkicZO4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkicZO4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkicZO4G .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkicZO4G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhsP60tD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhsP60tD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhsP60tD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhsP60tD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhsP60tD .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhrtcOQk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhrtcOQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhrtcOQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhrtcOQk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhrtcOQk .number {
  color: #ffffff;
}
.cid-uYNhrtcOQk .period {
  display: block;
}
.cid-uYNhrtcOQk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhrtcOQk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhrtcOQk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhrtcOQk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhrtcOQk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhrtcOQk .mbr-text {
  color: #ffffff;
}
.cid-uYNhrtcOQk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhrtcOQk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhrtcOQk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhrtcOQk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWhLSm9ap {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWhLSm9ap .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWhLSm9ap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWhLSm9ap .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWhLSm9ap .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWhLSm9ap .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWhLSm9ap .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWhLSm9ap .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWhLSm9ap .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWhLSm9ap .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWhLSm9ap .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWhLSm9ap .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWhLSm9ap [class^="socicon-"]:before,
.cid-uvWhLSm9ap [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWhLSm9ap .mbr-section-title,
.cid-uvWhLSm9ap .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWhLSU1GJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWhLSU1GJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWhLSU1GJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWhLSU1GJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWhLSU1GJ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWhLSU1GJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWhLSU1GJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWhLSU1GJ .mbr-text {
  color: #ffffff;
}
.cid-uvWhLSU1GJ .card-title {
  color: #ffffff;
}
.cid-uvWhLSU1GJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWhLSU1GJ .mbr-section-title {
  color: #ffffff;
}
.cid-uvWhLSU1GJ .link {
  color: #4479d9;
}
.cid-uvWhLTDgZD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWhLTDgZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWhLTDgZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWhLTDgZD .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWhLTDgZD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWhLTDgZD .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWhLTDgZD .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWhLTDgZD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWhLTDgZD .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWjgw7B3C {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWjgw7B3C nav.navbar {
  position: fixed;
}
.cid-uvWjgw7B3C .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-uvWjgw7B3C .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWjgw7B3C .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWjgw7B3C .dropdown-item:hover,
.cid-uvWjgw7B3C .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWjgw7B3C .dropdown-item:hover span {
  color: white;
}
.cid-uvWjgw7B3C .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWjgw7B3C .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWjgw7B3C .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWjgw7B3C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWjgw7B3C .nav-link {
  position: relative;
}
.cid-uvWjgw7B3C .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWjgw7B3C .container {
    flex-wrap: wrap;
  }
}
.cid-uvWjgw7B3C .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWjgw7B3C .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWjgw7B3C .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWjgw7B3C .dropdown-menu,
.cid-uvWjgw7B3C .navbar.opened {
  background: #000000 !important;
}
.cid-uvWjgw7B3C .nav-item:focus,
.cid-uvWjgw7B3C .nav-link:focus {
  outline: none;
}
.cid-uvWjgw7B3C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWjgw7B3C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWjgw7B3C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWjgw7B3C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWjgw7B3C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWjgw7B3C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWjgw7B3C .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWjgw7B3C .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWjgw7B3C .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWjgw7B3C .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWjgw7B3C .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWjgw7B3C .navbar.collapsed {
  justify-content: center;
}
.cid-uvWjgw7B3C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWjgw7B3C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWjgw7B3C .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWjgw7B3C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWjgw7B3C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWjgw7B3C .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-uvWjgw7B3C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWjgw7B3C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWjgw7B3C .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWjgw7B3C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWjgw7B3C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWjgw7B3C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWjgw7B3C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWjgw7B3C .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-uvWjgw7B3C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWjgw7B3C .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWjgw7B3C .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWjgw7B3C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWjgw7B3C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWjgw7B3C .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWjgw7B3C .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWjgw7B3C .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWjgw7B3C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWjgw7B3C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWjgw7B3C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWjgw7B3C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWjgw7B3C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWjgw7B3C .dropdown-item.active,
.cid-uvWjgw7B3C .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWjgw7B3C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWjgw7B3C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWjgw7B3C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWjgw7B3C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWjgw7B3C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWjgw7B3C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWjgw7B3C ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWjgw7B3C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWjgw7B3C button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWjgw7B3C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWjgw7B3C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWjgw7B3C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWjgw7B3C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWjgw7B3C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWjgw7B3C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWjgw7B3C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWjgw7B3C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWjgw7B3C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWjgw7B3C .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWjgw7B3C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWjgw7B3C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWjgw7B3C .navbar {
    height: 70px;
  }
  .cid-uvWjgw7B3C .navbar.opened {
    height: auto;
  }
  .cid-uvWjgw7B3C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWjgxdUoJ {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWjgxdUoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjgxdUoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjgxdUoJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjgxdUoJ .mbr-text,
.cid-uvWjgxdUoJ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjgxdUoJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjgxSUXg {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWjgxSUXg img,
.cid-uvWjgxSUXg .item-img {
  width: 100%;
}
.cid-uvWjgxSUXg .item:focus,
.cid-uvWjgxSUXg span:focus {
  outline: none;
}
.cid-uvWjgxSUXg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWjgxSUXg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWjgxSUXg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWjgxSUXg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWjgxSUXg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWjgxSUXg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWjgxSUXg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWjgxSUXg .mbr-section-title {
  color: #ffffff;
}
.cid-uvWjgxSUXg .mbr-text,
.cid-uvWjgxSUXg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWjgxSUXg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWjgxSUXg .item-subtitle {
  text-align: left;
}
.cid-uvWjgxSUXg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkkvlRz9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkkvlRz9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkkvlRz9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkkvlRz9 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkkvlRz9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhyn2Jyy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhyn2Jyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhyn2Jyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhyn2Jyy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhyn2Jyy .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhxucun0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhxucun0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhxucun0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhxucun0 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhxucun0 .number {
  color: #ffffff;
}
.cid-uYNhxucun0 .period {
  display: block;
}
.cid-uYNhxucun0 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhxucun0 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhxucun0 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhxucun0 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhxucun0 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhxucun0 .mbr-text {
  color: #ffffff;
}
.cid-uYNhxucun0 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhxucun0 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhxucun0 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhxucun0 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWjgzmTLR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWjgzmTLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjgzmTLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjgzmTLR .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWjgzmTLR .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWjgzmTLR .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWjgzmTLR .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWjgzmTLR .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWjgzmTLR .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWjgzmTLR .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWjgzmTLR .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWjgzmTLR .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWjgzmTLR [class^="socicon-"]:before,
.cid-uvWjgzmTLR [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWjgzmTLR .mbr-section-title,
.cid-uvWjgzmTLR .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWjgzZ7W7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWjgzZ7W7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjgzZ7W7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjgzZ7W7 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWjgzZ7W7 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWjgzZ7W7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWjgzZ7W7 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWjgzZ7W7 .mbr-text {
  color: #ffffff;
}
.cid-uvWjgzZ7W7 .card-title {
  color: #ffffff;
}
.cid-uvWjgzZ7W7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWjgzZ7W7 .mbr-section-title {
  color: #ffffff;
}
.cid-uvWjgzZ7W7 .link {
  color: #4479d9;
}
.cid-uvWjgB4bkV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWjgB4bkV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjgB4bkV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjgB4bkV .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWjgB4bkV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWjgB4bkV .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWjgB4bkV .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWjgB4bkV div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWjgB4bkV .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWjGOT1bl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWjGOT1bl nav.navbar {
  position: fixed;
}
.cid-uvWjGOT1bl .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-uvWjGOT1bl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWjGOT1bl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWjGOT1bl .dropdown-item:hover,
.cid-uvWjGOT1bl .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWjGOT1bl .dropdown-item:hover span {
  color: white;
}
.cid-uvWjGOT1bl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWjGOT1bl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWjGOT1bl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWjGOT1bl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWjGOT1bl .nav-link {
  position: relative;
}
.cid-uvWjGOT1bl .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWjGOT1bl .container {
    flex-wrap: wrap;
  }
}
.cid-uvWjGOT1bl .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWjGOT1bl .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWjGOT1bl .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWjGOT1bl .dropdown-menu,
.cid-uvWjGOT1bl .navbar.opened {
  background: #000000 !important;
}
.cid-uvWjGOT1bl .nav-item:focus,
.cid-uvWjGOT1bl .nav-link:focus {
  outline: none;
}
.cid-uvWjGOT1bl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWjGOT1bl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWjGOT1bl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWjGOT1bl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWjGOT1bl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWjGOT1bl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWjGOT1bl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWjGOT1bl .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWjGOT1bl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWjGOT1bl .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWjGOT1bl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWjGOT1bl .navbar.collapsed {
  justify-content: center;
}
.cid-uvWjGOT1bl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWjGOT1bl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWjGOT1bl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWjGOT1bl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWjGOT1bl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWjGOT1bl .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-uvWjGOT1bl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWjGOT1bl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWjGOT1bl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWjGOT1bl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWjGOT1bl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWjGOT1bl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWjGOT1bl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWjGOT1bl .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-uvWjGOT1bl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWjGOT1bl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWjGOT1bl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWjGOT1bl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWjGOT1bl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWjGOT1bl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWjGOT1bl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWjGOT1bl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWjGOT1bl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWjGOT1bl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWjGOT1bl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWjGOT1bl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWjGOT1bl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWjGOT1bl .dropdown-item.active,
.cid-uvWjGOT1bl .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWjGOT1bl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWjGOT1bl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWjGOT1bl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWjGOT1bl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWjGOT1bl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWjGOT1bl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWjGOT1bl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWjGOT1bl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWjGOT1bl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWjGOT1bl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWjGOT1bl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWjGOT1bl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWjGOT1bl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWjGOT1bl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWjGOT1bl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWjGOT1bl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWjGOT1bl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWjGOT1bl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWjGOT1bl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWjGOT1bl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWjGOT1bl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWjGOT1bl .navbar {
    height: 70px;
  }
  .cid-uvWjGOT1bl .navbar.opened {
    height: auto;
  }
  .cid-uvWjGOT1bl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWjGPEh7a {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWjGPEh7a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjGPEh7a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjGPEh7a .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjGPEh7a .mbr-text,
.cid-uvWjGPEh7a .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjGPEh7a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWjGQc0sr {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWjGQc0sr img,
.cid-uvWjGQc0sr .item-img {
  width: 100%;
}
.cid-uvWjGQc0sr .item:focus,
.cid-uvWjGQc0sr span:focus {
  outline: none;
}
.cid-uvWjGQc0sr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWjGQc0sr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWjGQc0sr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWjGQc0sr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWjGQc0sr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWjGQc0sr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWjGQc0sr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWjGQc0sr .mbr-section-title {
  color: #ffffff;
}
.cid-uvWjGQc0sr .mbr-text,
.cid-uvWjGQc0sr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWjGQc0sr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWjGQc0sr .item-subtitle {
  text-align: left;
}
.cid-uvWjGQc0sr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkmL55IS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkmL55IS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkmL55IS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkmL55IS .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkmL55IS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhDaKYHg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhDaKYHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhDaKYHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhDaKYHg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhDaKYHg .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhC9KelH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhC9KelH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhC9KelH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhC9KelH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhC9KelH .number {
  color: #ffffff;
}
.cid-uYNhC9KelH .period {
  display: block;
}
.cid-uYNhC9KelH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhC9KelH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhC9KelH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhC9KelH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhC9KelH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhC9KelH .mbr-text {
  color: #ffffff;
}
.cid-uYNhC9KelH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhC9KelH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhC9KelH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhC9KelH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWjGRpCbw {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWjGRpCbw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjGRpCbw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjGRpCbw .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWjGRpCbw .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWjGRpCbw .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWjGRpCbw .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWjGRpCbw .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWjGRpCbw .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWjGRpCbw .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWjGRpCbw .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWjGRpCbw .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWjGRpCbw [class^="socicon-"]:before,
.cid-uvWjGRpCbw [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWjGRpCbw .mbr-section-title,
.cid-uvWjGRpCbw .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWjGRWkpH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWjGRWkpH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjGRWkpH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjGRWkpH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWjGRWkpH .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWjGRWkpH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWjGRWkpH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWjGRWkpH .mbr-text {
  color: #ffffff;
}
.cid-uvWjGRWkpH .card-title {
  color: #ffffff;
}
.cid-uvWjGRWkpH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWjGRWkpH .mbr-section-title {
  color: #ffffff;
}
.cid-uvWjGRWkpH .link {
  color: #4479d9;
}
.cid-uvWjGSFA8r {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWjGSFA8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWjGSFA8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWjGSFA8r .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWjGSFA8r .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWjGSFA8r .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWjGSFA8r .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWjGSFA8r div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWjGSFA8r .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWkxrnYt4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWkxrnYt4 nav.navbar {
  position: fixed;
}
.cid-uvWkxrnYt4 .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-uvWkxrnYt4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWkxrnYt4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWkxrnYt4 .dropdown-item:hover,
.cid-uvWkxrnYt4 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWkxrnYt4 .dropdown-item:hover span {
  color: white;
}
.cid-uvWkxrnYt4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWkxrnYt4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWkxrnYt4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWkxrnYt4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWkxrnYt4 .nav-link {
  position: relative;
}
.cid-uvWkxrnYt4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWkxrnYt4 .container {
    flex-wrap: wrap;
  }
}
.cid-uvWkxrnYt4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWkxrnYt4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWkxrnYt4 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWkxrnYt4 .dropdown-menu,
.cid-uvWkxrnYt4 .navbar.opened {
  background: #000000 !important;
}
.cid-uvWkxrnYt4 .nav-item:focus,
.cid-uvWkxrnYt4 .nav-link:focus {
  outline: none;
}
.cid-uvWkxrnYt4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWkxrnYt4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWkxrnYt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWkxrnYt4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWkxrnYt4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWkxrnYt4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWkxrnYt4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWkxrnYt4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWkxrnYt4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWkxrnYt4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWkxrnYt4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWkxrnYt4 .navbar.collapsed {
  justify-content: center;
}
.cid-uvWkxrnYt4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWkxrnYt4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWkxrnYt4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWkxrnYt4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWkxrnYt4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWkxrnYt4 .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-uvWkxrnYt4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWkxrnYt4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWkxrnYt4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWkxrnYt4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWkxrnYt4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWkxrnYt4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWkxrnYt4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWkxrnYt4 .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-uvWkxrnYt4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWkxrnYt4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWkxrnYt4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWkxrnYt4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWkxrnYt4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWkxrnYt4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWkxrnYt4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWkxrnYt4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWkxrnYt4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWkxrnYt4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWkxrnYt4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWkxrnYt4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWkxrnYt4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWkxrnYt4 .dropdown-item.active,
.cid-uvWkxrnYt4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWkxrnYt4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWkxrnYt4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWkxrnYt4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWkxrnYt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWkxrnYt4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWkxrnYt4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWkxrnYt4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWkxrnYt4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWkxrnYt4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWkxrnYt4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWkxrnYt4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWkxrnYt4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWkxrnYt4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWkxrnYt4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWkxrnYt4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWkxrnYt4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWkxrnYt4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWkxrnYt4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWkxrnYt4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWkxrnYt4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWkxrnYt4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWkxrnYt4 .navbar {
    height: 70px;
  }
  .cid-uvWkxrnYt4 .navbar.opened {
    height: auto;
  }
  .cid-uvWkxrnYt4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWkxs9Fu0 {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWkxs9Fu0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWkxs9Fu0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWkxs9Fu0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWkxs9Fu0 .mbr-text,
.cid-uvWkxs9Fu0 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWkxs9Fu0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWkxsGOph {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWkxsGOph img,
.cid-uvWkxsGOph .item-img {
  width: 100%;
}
.cid-uvWkxsGOph .item:focus,
.cid-uvWkxsGOph span:focus {
  outline: none;
}
.cid-uvWkxsGOph .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWkxsGOph .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWkxsGOph .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWkxsGOph .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWkxsGOph .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWkxsGOph .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWkxsGOph .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWkxsGOph .mbr-section-title {
  color: #ffffff;
}
.cid-uvWkxsGOph .mbr-text,
.cid-uvWkxsGOph .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWkxsGOph .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWkxsGOph .item-subtitle {
  text-align: left;
}
.cid-uvWkxsGOph .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkpionsd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkpionsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkpionsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkpionsd .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkpionsd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhHHYkkd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhHHYkkd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhHHYkkd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhHHYkkd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhHHYkkd .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhGJJ84y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhGJJ84y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhGJJ84y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhGJJ84y .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhGJJ84y .number {
  color: #ffffff;
}
.cid-uYNhGJJ84y .period {
  display: block;
}
.cid-uYNhGJJ84y .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhGJJ84y .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhGJJ84y .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhGJJ84y .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhGJJ84y .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhGJJ84y .mbr-text {
  color: #ffffff;
}
.cid-uYNhGJJ84y .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhGJJ84y .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhGJJ84y .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhGJJ84y .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWkxtUp6R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWkxtUp6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWkxtUp6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWkxtUp6R .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWkxtUp6R .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWkxtUp6R .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWkxtUp6R .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWkxtUp6R .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWkxtUp6R .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWkxtUp6R .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWkxtUp6R .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWkxtUp6R .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWkxtUp6R [class^="socicon-"]:before,
.cid-uvWkxtUp6R [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWkxtUp6R .mbr-section-title,
.cid-uvWkxtUp6R .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWkxuswB3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWkxuswB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWkxuswB3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWkxuswB3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWkxuswB3 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWkxuswB3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWkxuswB3 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWkxuswB3 .mbr-text {
  color: #ffffff;
}
.cid-uvWkxuswB3 .card-title {
  color: #ffffff;
}
.cid-uvWkxuswB3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWkxuswB3 .mbr-section-title {
  color: #ffffff;
}
.cid-uvWkxuswB3 .link {
  color: #4479d9;
}
.cid-uvWkxv6Djk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWkxv6Djk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWkxv6Djk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWkxv6Djk .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWkxv6Djk .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWkxv6Djk .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWkxv6Djk .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWkxv6Djk div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWkxv6Djk .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWmeNbvBb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWmeNbvBb nav.navbar {
  position: fixed;
}
.cid-uvWmeNbvBb .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-uvWmeNbvBb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWmeNbvBb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWmeNbvBb .dropdown-item:hover,
.cid-uvWmeNbvBb .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWmeNbvBb .dropdown-item:hover span {
  color: white;
}
.cid-uvWmeNbvBb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWmeNbvBb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWmeNbvBb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWmeNbvBb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWmeNbvBb .nav-link {
  position: relative;
}
.cid-uvWmeNbvBb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWmeNbvBb .container {
    flex-wrap: wrap;
  }
}
.cid-uvWmeNbvBb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWmeNbvBb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWmeNbvBb .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWmeNbvBb .dropdown-menu,
.cid-uvWmeNbvBb .navbar.opened {
  background: #000000 !important;
}
.cid-uvWmeNbvBb .nav-item:focus,
.cid-uvWmeNbvBb .nav-link:focus {
  outline: none;
}
.cid-uvWmeNbvBb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWmeNbvBb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWmeNbvBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWmeNbvBb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWmeNbvBb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWmeNbvBb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWmeNbvBb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWmeNbvBb .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWmeNbvBb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWmeNbvBb .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWmeNbvBb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWmeNbvBb .navbar.collapsed {
  justify-content: center;
}
.cid-uvWmeNbvBb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWmeNbvBb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWmeNbvBb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWmeNbvBb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWmeNbvBb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWmeNbvBb .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-uvWmeNbvBb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWmeNbvBb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWmeNbvBb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWmeNbvBb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWmeNbvBb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWmeNbvBb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWmeNbvBb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWmeNbvBb .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-uvWmeNbvBb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWmeNbvBb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWmeNbvBb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWmeNbvBb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWmeNbvBb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWmeNbvBb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWmeNbvBb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWmeNbvBb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWmeNbvBb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWmeNbvBb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWmeNbvBb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWmeNbvBb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWmeNbvBb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWmeNbvBb .dropdown-item.active,
.cid-uvWmeNbvBb .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWmeNbvBb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWmeNbvBb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWmeNbvBb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWmeNbvBb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWmeNbvBb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWmeNbvBb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWmeNbvBb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWmeNbvBb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWmeNbvBb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWmeNbvBb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWmeNbvBb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWmeNbvBb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWmeNbvBb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWmeNbvBb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWmeNbvBb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWmeNbvBb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWmeNbvBb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWmeNbvBb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWmeNbvBb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWmeNbvBb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWmeNbvBb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWmeNbvBb .navbar {
    height: 70px;
  }
  .cid-uvWmeNbvBb .navbar.opened {
    height: auto;
  }
  .cid-uvWmeNbvBb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWmeNUp7J {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWmeNUp7J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWmeNUp7J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWmeNUp7J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWmeNUp7J .mbr-text,
.cid-uvWmeNUp7J .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWmeNUp7J .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWmeOq75I {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWmeOq75I img,
.cid-uvWmeOq75I .item-img {
  width: 100%;
}
.cid-uvWmeOq75I .item:focus,
.cid-uvWmeOq75I span:focus {
  outline: none;
}
.cid-uvWmeOq75I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWmeOq75I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWmeOq75I .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWmeOq75I .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWmeOq75I .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWmeOq75I .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWmeOq75I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWmeOq75I .mbr-section-title {
  color: #ffffff;
}
.cid-uvWmeOq75I .mbr-text,
.cid-uvWmeOq75I .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWmeOq75I .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWmeOq75I .item-subtitle {
  text-align: left;
}
.cid-uvWmeOq75I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkrxKves {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkrxKves .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkrxKves .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkrxKves .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkrxKves .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhN453el {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhN453el .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhN453el .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhN453el .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhN453el .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhLTtGk7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhLTtGk7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhLTtGk7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhLTtGk7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhLTtGk7 .number {
  color: #ffffff;
}
.cid-uYNhLTtGk7 .period {
  display: block;
}
.cid-uYNhLTtGk7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhLTtGk7 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhLTtGk7 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhLTtGk7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhLTtGk7 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhLTtGk7 .mbr-text {
  color: #ffffff;
}
.cid-uYNhLTtGk7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhLTtGk7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhLTtGk7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhLTtGk7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWmePDlkk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWmePDlkk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWmePDlkk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWmePDlkk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWmePDlkk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWmePDlkk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWmePDlkk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWmePDlkk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWmePDlkk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWmePDlkk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWmePDlkk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWmePDlkk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWmePDlkk [class^="socicon-"]:before,
.cid-uvWmePDlkk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWmePDlkk .mbr-section-title,
.cid-uvWmePDlkk .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWmeQe3YV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWmeQe3YV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWmeQe3YV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWmeQe3YV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWmeQe3YV .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWmeQe3YV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWmeQe3YV .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWmeQe3YV .mbr-text {
  color: #ffffff;
}
.cid-uvWmeQe3YV .card-title {
  color: #ffffff;
}
.cid-uvWmeQe3YV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWmeQe3YV .mbr-section-title {
  color: #ffffff;
}
.cid-uvWmeQe3YV .link {
  color: #4479d9;
}
.cid-uvWmeQTveP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWmeQTveP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWmeQTveP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWmeQTveP .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWmeQTveP .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWmeQTveP .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWmeQTveP .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWmeQTveP div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWmeQTveP .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWpLpGs7d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWpLpGs7d nav.navbar {
  position: fixed;
}
.cid-uvWpLpGs7d .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-uvWpLpGs7d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWpLpGs7d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWpLpGs7d .dropdown-item:hover,
.cid-uvWpLpGs7d .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWpLpGs7d .dropdown-item:hover span {
  color: white;
}
.cid-uvWpLpGs7d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWpLpGs7d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWpLpGs7d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWpLpGs7d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWpLpGs7d .nav-link {
  position: relative;
}
.cid-uvWpLpGs7d .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWpLpGs7d .container {
    flex-wrap: wrap;
  }
}
.cid-uvWpLpGs7d .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWpLpGs7d .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWpLpGs7d .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWpLpGs7d .dropdown-menu,
.cid-uvWpLpGs7d .navbar.opened {
  background: #000000 !important;
}
.cid-uvWpLpGs7d .nav-item:focus,
.cid-uvWpLpGs7d .nav-link:focus {
  outline: none;
}
.cid-uvWpLpGs7d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWpLpGs7d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWpLpGs7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWpLpGs7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWpLpGs7d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWpLpGs7d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWpLpGs7d .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWpLpGs7d .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWpLpGs7d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWpLpGs7d .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWpLpGs7d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWpLpGs7d .navbar.collapsed {
  justify-content: center;
}
.cid-uvWpLpGs7d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWpLpGs7d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWpLpGs7d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWpLpGs7d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWpLpGs7d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWpLpGs7d .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-uvWpLpGs7d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWpLpGs7d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWpLpGs7d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWpLpGs7d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWpLpGs7d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWpLpGs7d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWpLpGs7d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWpLpGs7d .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-uvWpLpGs7d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWpLpGs7d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWpLpGs7d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWpLpGs7d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWpLpGs7d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWpLpGs7d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWpLpGs7d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWpLpGs7d .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWpLpGs7d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWpLpGs7d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWpLpGs7d .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWpLpGs7d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWpLpGs7d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWpLpGs7d .dropdown-item.active,
.cid-uvWpLpGs7d .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWpLpGs7d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWpLpGs7d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWpLpGs7d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWpLpGs7d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWpLpGs7d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWpLpGs7d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWpLpGs7d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWpLpGs7d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWpLpGs7d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWpLpGs7d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWpLpGs7d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWpLpGs7d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWpLpGs7d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWpLpGs7d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWpLpGs7d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWpLpGs7d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWpLpGs7d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWpLpGs7d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWpLpGs7d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWpLpGs7d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWpLpGs7d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWpLpGs7d .navbar {
    height: 70px;
  }
  .cid-uvWpLpGs7d .navbar.opened {
    height: auto;
  }
  .cid-uvWpLpGs7d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWpLqr7Xi {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWpLqr7Xi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWpLqr7Xi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWpLqr7Xi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWpLqr7Xi .mbr-text,
.cid-uvWpLqr7Xi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWpLqr7Xi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWpLr12pG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWpLr12pG img,
.cid-uvWpLr12pG .item-img {
  width: 100%;
}
.cid-uvWpLr12pG .item:focus,
.cid-uvWpLr12pG span:focus {
  outline: none;
}
.cid-uvWpLr12pG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWpLr12pG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWpLr12pG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWpLr12pG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWpLr12pG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWpLr12pG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWpLr12pG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWpLr12pG .mbr-section-title {
  color: #ffffff;
}
.cid-uvWpLr12pG .mbr-text,
.cid-uvWpLr12pG .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWpLr12pG .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWpLr12pG .item-subtitle {
  text-align: left;
}
.cid-uvWpLr12pG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWktFrGAU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWktFrGAU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWktFrGAU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWktFrGAU .mbr-section-title {
  color: #ffffff;
}
.cid-uZWktFrGAU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhT2FlAA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhT2FlAA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhT2FlAA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhT2FlAA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhT2FlAA .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhS7sNKs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhS7sNKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhS7sNKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhS7sNKs .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhS7sNKs .number {
  color: #ffffff;
}
.cid-uYNhS7sNKs .period {
  display: block;
}
.cid-uYNhS7sNKs .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhS7sNKs .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhS7sNKs .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhS7sNKs .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhS7sNKs .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhS7sNKs .mbr-text {
  color: #ffffff;
}
.cid-uYNhS7sNKs .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhS7sNKs .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhS7sNKs .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhS7sNKs .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWpLsjZe3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWpLsjZe3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWpLsjZe3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWpLsjZe3 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWpLsjZe3 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWpLsjZe3 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWpLsjZe3 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWpLsjZe3 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWpLsjZe3 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWpLsjZe3 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWpLsjZe3 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWpLsjZe3 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWpLsjZe3 [class^="socicon-"]:before,
.cid-uvWpLsjZe3 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWpLsjZe3 .mbr-section-title,
.cid-uvWpLsjZe3 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWpLsSF8L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWpLsSF8L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWpLsSF8L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWpLsSF8L .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWpLsSF8L .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWpLsSF8L .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWpLsSF8L .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWpLsSF8L .mbr-text {
  color: #ffffff;
}
.cid-uvWpLsSF8L .card-title {
  color: #ffffff;
}
.cid-uvWpLsSF8L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWpLsSF8L .mbr-section-title {
  color: #ffffff;
}
.cid-uvWpLsSF8L .link {
  color: #4479d9;
}
.cid-uvWpLtwnJE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWpLtwnJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWpLtwnJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWpLtwnJE .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWpLtwnJE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWpLtwnJE .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWpLtwnJE .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWpLtwnJE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWpLtwnJE .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWqt75mhV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWqt75mhV nav.navbar {
  position: fixed;
}
.cid-uvWqt75mhV .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-uvWqt75mhV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWqt75mhV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWqt75mhV .dropdown-item:hover,
.cid-uvWqt75mhV .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWqt75mhV .dropdown-item:hover span {
  color: white;
}
.cid-uvWqt75mhV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWqt75mhV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWqt75mhV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWqt75mhV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWqt75mhV .nav-link {
  position: relative;
}
.cid-uvWqt75mhV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWqt75mhV .container {
    flex-wrap: wrap;
  }
}
.cid-uvWqt75mhV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWqt75mhV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWqt75mhV .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWqt75mhV .dropdown-menu,
.cid-uvWqt75mhV .navbar.opened {
  background: #000000 !important;
}
.cid-uvWqt75mhV .nav-item:focus,
.cid-uvWqt75mhV .nav-link:focus {
  outline: none;
}
.cid-uvWqt75mhV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWqt75mhV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWqt75mhV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWqt75mhV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWqt75mhV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWqt75mhV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWqt75mhV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWqt75mhV .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWqt75mhV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWqt75mhV .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWqt75mhV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWqt75mhV .navbar.collapsed {
  justify-content: center;
}
.cid-uvWqt75mhV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWqt75mhV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWqt75mhV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWqt75mhV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWqt75mhV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWqt75mhV .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-uvWqt75mhV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWqt75mhV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWqt75mhV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWqt75mhV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWqt75mhV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWqt75mhV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWqt75mhV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWqt75mhV .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-uvWqt75mhV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWqt75mhV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWqt75mhV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWqt75mhV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWqt75mhV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWqt75mhV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWqt75mhV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWqt75mhV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWqt75mhV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWqt75mhV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWqt75mhV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWqt75mhV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWqt75mhV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWqt75mhV .dropdown-item.active,
.cid-uvWqt75mhV .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWqt75mhV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWqt75mhV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWqt75mhV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWqt75mhV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWqt75mhV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWqt75mhV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWqt75mhV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWqt75mhV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWqt75mhV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWqt75mhV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWqt75mhV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWqt75mhV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWqt75mhV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWqt75mhV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWqt75mhV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWqt75mhV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWqt75mhV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWqt75mhV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWqt75mhV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWqt75mhV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWqt75mhV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWqt75mhV .navbar {
    height: 70px;
  }
  .cid-uvWqt75mhV .navbar.opened {
    height: auto;
  }
  .cid-uvWqt75mhV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWqt7QKiA {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWqt7QKiA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWqt7QKiA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWqt7QKiA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWqt7QKiA .mbr-text,
.cid-uvWqt7QKiA .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWqt7QKiA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWqt8qXHY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWqt8qXHY img,
.cid-uvWqt8qXHY .item-img {
  width: 100%;
}
.cid-uvWqt8qXHY .item:focus,
.cid-uvWqt8qXHY span:focus {
  outline: none;
}
.cid-uvWqt8qXHY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWqt8qXHY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWqt8qXHY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWqt8qXHY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWqt8qXHY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWqt8qXHY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWqt8qXHY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWqt8qXHY .mbr-section-title {
  color: #ffffff;
}
.cid-uvWqt8qXHY .mbr-text,
.cid-uvWqt8qXHY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWqt8qXHY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWqt8qXHY .item-subtitle {
  text-align: left;
}
.cid-uvWqt8qXHY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkvHP8jT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkvHP8jT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkvHP8jT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkvHP8jT .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkvHP8jT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhYbIx6I {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNhYbIx6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhYbIx6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhYbIx6I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNhYbIx6I .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhXdpjEK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNhXdpjEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNhXdpjEK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNhXdpjEK .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNhXdpjEK .number {
  color: #ffffff;
}
.cid-uYNhXdpjEK .period {
  display: block;
}
.cid-uYNhXdpjEK .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNhXdpjEK .period {
    font-size: 0.8rem;
  }
}
.cid-uYNhXdpjEK .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNhXdpjEK .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNhXdpjEK .mbr-section-title {
  color: #ffffff;
}
.cid-uYNhXdpjEK .mbr-text {
  color: #ffffff;
}
.cid-uYNhXdpjEK .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNhXdpjEK .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNhXdpjEK .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNhXdpjEK .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWqt9D3O6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWqt9D3O6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWqt9D3O6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWqt9D3O6 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWqt9D3O6 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWqt9D3O6 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWqt9D3O6 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWqt9D3O6 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWqt9D3O6 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWqt9D3O6 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWqt9D3O6 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWqt9D3O6 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWqt9D3O6 [class^="socicon-"]:before,
.cid-uvWqt9D3O6 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWqt9D3O6 .mbr-section-title,
.cid-uvWqt9D3O6 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWqtacKXC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWqtacKXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWqtacKXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWqtacKXC .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWqtacKXC .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWqtacKXC .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWqtacKXC .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWqtacKXC .mbr-text {
  color: #ffffff;
}
.cid-uvWqtacKXC .card-title {
  color: #ffffff;
}
.cid-uvWqtacKXC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWqtacKXC .mbr-section-title {
  color: #ffffff;
}
.cid-uvWqtacKXC .link {
  color: #4479d9;
}
.cid-uvWqtaQanK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWqtaQanK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWqtaQanK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWqtaQanK .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWqtaQanK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWqtaQanK .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWqtaQanK .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWqtaQanK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWqtaQanK .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWrfIfpPU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWrfIfpPU nav.navbar {
  position: fixed;
}
.cid-uvWrfIfpPU .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-uvWrfIfpPU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWrfIfpPU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWrfIfpPU .dropdown-item:hover,
.cid-uvWrfIfpPU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWrfIfpPU .dropdown-item:hover span {
  color: white;
}
.cid-uvWrfIfpPU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWrfIfpPU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWrfIfpPU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWrfIfpPU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWrfIfpPU .nav-link {
  position: relative;
}
.cid-uvWrfIfpPU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWrfIfpPU .container {
    flex-wrap: wrap;
  }
}
.cid-uvWrfIfpPU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWrfIfpPU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWrfIfpPU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWrfIfpPU .dropdown-menu,
.cid-uvWrfIfpPU .navbar.opened {
  background: #000000 !important;
}
.cid-uvWrfIfpPU .nav-item:focus,
.cid-uvWrfIfpPU .nav-link:focus {
  outline: none;
}
.cid-uvWrfIfpPU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWrfIfpPU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWrfIfpPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWrfIfpPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWrfIfpPU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWrfIfpPU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWrfIfpPU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWrfIfpPU .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWrfIfpPU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWrfIfpPU .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWrfIfpPU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWrfIfpPU .navbar.collapsed {
  justify-content: center;
}
.cid-uvWrfIfpPU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWrfIfpPU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWrfIfpPU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWrfIfpPU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWrfIfpPU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWrfIfpPU .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-uvWrfIfpPU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWrfIfpPU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWrfIfpPU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWrfIfpPU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWrfIfpPU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWrfIfpPU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWrfIfpPU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWrfIfpPU .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-uvWrfIfpPU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWrfIfpPU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWrfIfpPU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWrfIfpPU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWrfIfpPU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWrfIfpPU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWrfIfpPU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWrfIfpPU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWrfIfpPU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWrfIfpPU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWrfIfpPU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWrfIfpPU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWrfIfpPU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWrfIfpPU .dropdown-item.active,
.cid-uvWrfIfpPU .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWrfIfpPU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWrfIfpPU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWrfIfpPU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWrfIfpPU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWrfIfpPU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWrfIfpPU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWrfIfpPU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWrfIfpPU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWrfIfpPU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWrfIfpPU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWrfIfpPU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWrfIfpPU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWrfIfpPU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWrfIfpPU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWrfIfpPU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWrfIfpPU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWrfIfpPU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWrfIfpPU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWrfIfpPU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWrfIfpPU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWrfIfpPU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWrfIfpPU .navbar {
    height: 70px;
  }
  .cid-uvWrfIfpPU .navbar.opened {
    height: auto;
  }
  .cid-uvWrfIfpPU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWrfIYsu3 {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWrfIYsu3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWrfIYsu3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWrfIYsu3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWrfIYsu3 .mbr-text,
.cid-uvWrfIYsu3 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWrfIYsu3 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWrfJv6mr {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWrfJv6mr img,
.cid-uvWrfJv6mr .item-img {
  width: 100%;
}
.cid-uvWrfJv6mr .item:focus,
.cid-uvWrfJv6mr span:focus {
  outline: none;
}
.cid-uvWrfJv6mr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWrfJv6mr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWrfJv6mr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWrfJv6mr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWrfJv6mr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWrfJv6mr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWrfJv6mr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWrfJv6mr .mbr-section-title {
  color: #ffffff;
}
.cid-uvWrfJv6mr .mbr-text,
.cid-uvWrfJv6mr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWrfJv6mr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWrfJv6mr .item-subtitle {
  text-align: left;
}
.cid-uvWrfJv6mr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkzSRAG6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkzSRAG6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkzSRAG6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkzSRAG6 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkzSRAG6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNi3anSC5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNi3anSC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNi3anSC5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNi3anSC5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNi3anSC5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNi25puTw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNi25puTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNi25puTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNi25puTw .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNi25puTw .number {
  color: #ffffff;
}
.cid-uYNi25puTw .period {
  display: block;
}
.cid-uYNi25puTw .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNi25puTw .period {
    font-size: 0.8rem;
  }
}
.cid-uYNi25puTw .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNi25puTw .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNi25puTw .mbr-section-title {
  color: #ffffff;
}
.cid-uYNi25puTw .mbr-text {
  color: #ffffff;
}
.cid-uYNi25puTw .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNi25puTw .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNi25puTw .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNi25puTw .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWrfKMZQk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWrfKMZQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWrfKMZQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWrfKMZQk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWrfKMZQk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWrfKMZQk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWrfKMZQk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWrfKMZQk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWrfKMZQk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWrfKMZQk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWrfKMZQk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWrfKMZQk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWrfKMZQk [class^="socicon-"]:before,
.cid-uvWrfKMZQk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWrfKMZQk .mbr-section-title,
.cid-uvWrfKMZQk .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWrfLjw4N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWrfLjw4N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWrfLjw4N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWrfLjw4N .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWrfLjw4N .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWrfLjw4N .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWrfLjw4N .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWrfLjw4N .mbr-text {
  color: #ffffff;
}
.cid-uvWrfLjw4N .card-title {
  color: #ffffff;
}
.cid-uvWrfLjw4N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWrfLjw4N .mbr-section-title {
  color: #ffffff;
}
.cid-uvWrfLjw4N .link {
  color: #4479d9;
}
.cid-uvWrfLXSK7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWrfLXSK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWrfLXSK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWrfLXSK7 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWrfLXSK7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWrfLXSK7 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWrfLXSK7 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWrfLXSK7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWrfLXSK7 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWsldA3MH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWsldA3MH nav.navbar {
  position: fixed;
}
.cid-uvWsldA3MH .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-uvWsldA3MH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWsldA3MH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWsldA3MH .dropdown-item:hover,
.cid-uvWsldA3MH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWsldA3MH .dropdown-item:hover span {
  color: white;
}
.cid-uvWsldA3MH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWsldA3MH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWsldA3MH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWsldA3MH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWsldA3MH .nav-link {
  position: relative;
}
.cid-uvWsldA3MH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWsldA3MH .container {
    flex-wrap: wrap;
  }
}
.cid-uvWsldA3MH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWsldA3MH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWsldA3MH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWsldA3MH .dropdown-menu,
.cid-uvWsldA3MH .navbar.opened {
  background: #000000 !important;
}
.cid-uvWsldA3MH .nav-item:focus,
.cid-uvWsldA3MH .nav-link:focus {
  outline: none;
}
.cid-uvWsldA3MH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWsldA3MH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWsldA3MH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWsldA3MH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWsldA3MH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWsldA3MH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWsldA3MH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWsldA3MH .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWsldA3MH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWsldA3MH .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWsldA3MH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWsldA3MH .navbar.collapsed {
  justify-content: center;
}
.cid-uvWsldA3MH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWsldA3MH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWsldA3MH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWsldA3MH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWsldA3MH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWsldA3MH .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-uvWsldA3MH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWsldA3MH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWsldA3MH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWsldA3MH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWsldA3MH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWsldA3MH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWsldA3MH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWsldA3MH .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-uvWsldA3MH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWsldA3MH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWsldA3MH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWsldA3MH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWsldA3MH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWsldA3MH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWsldA3MH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWsldA3MH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWsldA3MH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWsldA3MH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWsldA3MH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWsldA3MH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWsldA3MH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWsldA3MH .dropdown-item.active,
.cid-uvWsldA3MH .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWsldA3MH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWsldA3MH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWsldA3MH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWsldA3MH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWsldA3MH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWsldA3MH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWsldA3MH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWsldA3MH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWsldA3MH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWsldA3MH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWsldA3MH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWsldA3MH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWsldA3MH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWsldA3MH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWsldA3MH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWsldA3MH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWsldA3MH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWsldA3MH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWsldA3MH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWsldA3MH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWsldA3MH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWsldA3MH .navbar {
    height: 70px;
  }
  .cid-uvWsldA3MH .navbar.opened {
    height: auto;
  }
  .cid-uvWsldA3MH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWslelkpD {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWslelkpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWslelkpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWslelkpD .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWslelkpD .mbr-text,
.cid-uvWslelkpD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWslelkpD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWsleVXIn {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWsleVXIn img,
.cid-uvWsleVXIn .item-img {
  width: 100%;
}
.cid-uvWsleVXIn .item:focus,
.cid-uvWsleVXIn span:focus {
  outline: none;
}
.cid-uvWsleVXIn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWsleVXIn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWsleVXIn .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWsleVXIn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWsleVXIn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWsleVXIn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWsleVXIn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWsleVXIn .mbr-section-title {
  color: #ffffff;
}
.cid-uvWsleVXIn .mbr-text,
.cid-uvWsleVXIn .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWsleVXIn .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWsleVXIn .item-subtitle {
  text-align: left;
}
.cid-uvWsleVXIn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkD2AF1r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkD2AF1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkD2AF1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkD2AF1r .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkD2AF1r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNi8625sL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNi8625sL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNi8625sL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNi8625sL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNi8625sL .mbr-section-title {
  color: #ffffff;
}
.cid-uYNi6SCFvf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNi6SCFvf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNi6SCFvf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNi6SCFvf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNi6SCFvf .number {
  color: #ffffff;
}
.cid-uYNi6SCFvf .period {
  display: block;
}
.cid-uYNi6SCFvf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNi6SCFvf .period {
    font-size: 0.8rem;
  }
}
.cid-uYNi6SCFvf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNi6SCFvf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNi6SCFvf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNi6SCFvf .mbr-text {
  color: #ffffff;
}
.cid-uYNi6SCFvf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNi6SCFvf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNi6SCFvf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNi6SCFvf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWslgbyi9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWslgbyi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWslgbyi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWslgbyi9 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWslgbyi9 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWslgbyi9 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWslgbyi9 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWslgbyi9 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWslgbyi9 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWslgbyi9 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWslgbyi9 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWslgbyi9 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWslgbyi9 [class^="socicon-"]:before,
.cid-uvWslgbyi9 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWslgbyi9 .mbr-section-title,
.cid-uvWslgbyi9 .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWslgJK15 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWslgJK15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWslgJK15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWslgJK15 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWslgJK15 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWslgJK15 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWslgJK15 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWslgJK15 .mbr-text {
  color: #ffffff;
}
.cid-uvWslgJK15 .card-title {
  color: #ffffff;
}
.cid-uvWslgJK15 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWslgJK15 .mbr-section-title {
  color: #ffffff;
}
.cid-uvWslgJK15 .link {
  color: #4479d9;
}
.cid-uvWslhosQL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWslhosQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWslhosQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWslhosQL .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWslhosQL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWslhosQL .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWslhosQL .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWslhosQL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWslhosQL .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWusn5Sk4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWusn5Sk4 nav.navbar {
  position: fixed;
}
.cid-uvWusn5Sk4 .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-uvWusn5Sk4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWusn5Sk4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWusn5Sk4 .dropdown-item:hover,
.cid-uvWusn5Sk4 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWusn5Sk4 .dropdown-item:hover span {
  color: white;
}
.cid-uvWusn5Sk4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWusn5Sk4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWusn5Sk4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWusn5Sk4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWusn5Sk4 .nav-link {
  position: relative;
}
.cid-uvWusn5Sk4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWusn5Sk4 .container {
    flex-wrap: wrap;
  }
}
.cid-uvWusn5Sk4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWusn5Sk4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWusn5Sk4 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWusn5Sk4 .dropdown-menu,
.cid-uvWusn5Sk4 .navbar.opened {
  background: #000000 !important;
}
.cid-uvWusn5Sk4 .nav-item:focus,
.cid-uvWusn5Sk4 .nav-link:focus {
  outline: none;
}
.cid-uvWusn5Sk4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWusn5Sk4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWusn5Sk4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWusn5Sk4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWusn5Sk4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWusn5Sk4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWusn5Sk4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWusn5Sk4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWusn5Sk4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWusn5Sk4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWusn5Sk4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWusn5Sk4 .navbar.collapsed {
  justify-content: center;
}
.cid-uvWusn5Sk4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWusn5Sk4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWusn5Sk4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWusn5Sk4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWusn5Sk4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWusn5Sk4 .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-uvWusn5Sk4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWusn5Sk4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWusn5Sk4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWusn5Sk4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWusn5Sk4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWusn5Sk4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWusn5Sk4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWusn5Sk4 .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-uvWusn5Sk4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWusn5Sk4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWusn5Sk4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWusn5Sk4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWusn5Sk4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWusn5Sk4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWusn5Sk4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWusn5Sk4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWusn5Sk4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWusn5Sk4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWusn5Sk4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWusn5Sk4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWusn5Sk4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWusn5Sk4 .dropdown-item.active,
.cid-uvWusn5Sk4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWusn5Sk4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWusn5Sk4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWusn5Sk4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWusn5Sk4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWusn5Sk4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWusn5Sk4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWusn5Sk4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWusn5Sk4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWusn5Sk4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWusn5Sk4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWusn5Sk4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWusn5Sk4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWusn5Sk4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWusn5Sk4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWusn5Sk4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWusn5Sk4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWusn5Sk4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWusn5Sk4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWusn5Sk4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWusn5Sk4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWusn5Sk4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWusn5Sk4 .navbar {
    height: 70px;
  }
  .cid-uvWusn5Sk4 .navbar.opened {
    height: auto;
  }
  .cid-uvWusn5Sk4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWusnSB9M {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWusnSB9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWusnSB9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWusnSB9M .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWusnSB9M .mbr-text,
.cid-uvWusnSB9M .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWusnSB9M .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWusopQEq {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWusopQEq img,
.cid-uvWusopQEq .item-img {
  width: 100%;
}
.cid-uvWusopQEq .item:focus,
.cid-uvWusopQEq span:focus {
  outline: none;
}
.cid-uvWusopQEq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWusopQEq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWusopQEq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWusopQEq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWusopQEq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWusopQEq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWusopQEq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWusopQEq .mbr-section-title {
  color: #ffffff;
}
.cid-uvWusopQEq .mbr-text,
.cid-uvWusopQEq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWusopQEq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWusopQEq .item-subtitle {
  text-align: left;
}
.cid-uvWusopQEq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkFj5nkb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkFj5nkb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkFj5nkb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkFj5nkb .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkFj5nkb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNidv9qc9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNidv9qc9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNidv9qc9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNidv9qc9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNidv9qc9 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNicj3WoH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNicj3WoH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNicj3WoH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNicj3WoH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNicj3WoH .number {
  color: #ffffff;
}
.cid-uYNicj3WoH .period {
  display: block;
}
.cid-uYNicj3WoH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNicj3WoH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNicj3WoH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNicj3WoH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNicj3WoH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNicj3WoH .mbr-text {
  color: #ffffff;
}
.cid-uYNicj3WoH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNicj3WoH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNicj3WoH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNicj3WoH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWuspGG2u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWuspGG2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWuspGG2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWuspGG2u .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWuspGG2u .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWuspGG2u .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWuspGG2u .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWuspGG2u .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWuspGG2u .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWuspGG2u .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWuspGG2u .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWuspGG2u .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWuspGG2u [class^="socicon-"]:before,
.cid-uvWuspGG2u [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWuspGG2u .mbr-section-title,
.cid-uvWuspGG2u .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWusqeDi0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWusqeDi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWusqeDi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWusqeDi0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWusqeDi0 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWusqeDi0 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWusqeDi0 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWusqeDi0 .mbr-text {
  color: #ffffff;
}
.cid-uvWusqeDi0 .card-title {
  color: #ffffff;
}
.cid-uvWusqeDi0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWusqeDi0 .mbr-section-title {
  color: #ffffff;
}
.cid-uvWusqeDi0 .link {
  color: #4479d9;
}
.cid-uvWusqZEeO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWusqZEeO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWusqZEeO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWusqZEeO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWusqZEeO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWusqZEeO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWusqZEeO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWusqZEeO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWusqZEeO .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWvYe9L4S {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWvYe9L4S nav.navbar {
  position: fixed;
}
.cid-uvWvYe9L4S .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-uvWvYe9L4S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWvYe9L4S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWvYe9L4S .dropdown-item:hover,
.cid-uvWvYe9L4S .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWvYe9L4S .dropdown-item:hover span {
  color: white;
}
.cid-uvWvYe9L4S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWvYe9L4S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWvYe9L4S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWvYe9L4S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWvYe9L4S .nav-link {
  position: relative;
}
.cid-uvWvYe9L4S .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWvYe9L4S .container {
    flex-wrap: wrap;
  }
}
.cid-uvWvYe9L4S .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWvYe9L4S .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWvYe9L4S .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWvYe9L4S .dropdown-menu,
.cid-uvWvYe9L4S .navbar.opened {
  background: #000000 !important;
}
.cid-uvWvYe9L4S .nav-item:focus,
.cid-uvWvYe9L4S .nav-link:focus {
  outline: none;
}
.cid-uvWvYe9L4S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWvYe9L4S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWvYe9L4S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWvYe9L4S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWvYe9L4S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWvYe9L4S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWvYe9L4S .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWvYe9L4S .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWvYe9L4S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWvYe9L4S .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWvYe9L4S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWvYe9L4S .navbar.collapsed {
  justify-content: center;
}
.cid-uvWvYe9L4S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWvYe9L4S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWvYe9L4S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWvYe9L4S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWvYe9L4S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWvYe9L4S .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-uvWvYe9L4S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWvYe9L4S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWvYe9L4S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWvYe9L4S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWvYe9L4S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWvYe9L4S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWvYe9L4S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWvYe9L4S .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-uvWvYe9L4S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWvYe9L4S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWvYe9L4S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWvYe9L4S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWvYe9L4S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWvYe9L4S .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWvYe9L4S .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWvYe9L4S .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWvYe9L4S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWvYe9L4S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWvYe9L4S .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWvYe9L4S .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWvYe9L4S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWvYe9L4S .dropdown-item.active,
.cid-uvWvYe9L4S .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWvYe9L4S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWvYe9L4S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWvYe9L4S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWvYe9L4S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWvYe9L4S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWvYe9L4S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWvYe9L4S ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWvYe9L4S .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWvYe9L4S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWvYe9L4S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWvYe9L4S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWvYe9L4S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWvYe9L4S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWvYe9L4S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWvYe9L4S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWvYe9L4S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWvYe9L4S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWvYe9L4S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWvYe9L4S .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWvYe9L4S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWvYe9L4S .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWvYe9L4S .navbar {
    height: 70px;
  }
  .cid-uvWvYe9L4S .navbar.opened {
    height: auto;
  }
  .cid-uvWvYe9L4S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWvYeSOOp {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWvYeSOOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWvYeSOOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWvYeSOOp .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWvYeSOOp .mbr-text,
.cid-uvWvYeSOOp .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWvYeSOOp .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWvYfqHHN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWvYfqHHN img,
.cid-uvWvYfqHHN .item-img {
  width: 100%;
}
.cid-uvWvYfqHHN .item:focus,
.cid-uvWvYfqHHN span:focus {
  outline: none;
}
.cid-uvWvYfqHHN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWvYfqHHN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWvYfqHHN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWvYfqHHN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWvYfqHHN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWvYfqHHN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWvYfqHHN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWvYfqHHN .mbr-section-title {
  color: #ffffff;
}
.cid-uvWvYfqHHN .mbr-text,
.cid-uvWvYfqHHN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWvYfqHHN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWvYfqHHN .item-subtitle {
  text-align: left;
}
.cid-uvWvYfqHHN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkI4h7KZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkI4h7KZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkI4h7KZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkI4h7KZ .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkI4h7KZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNivxSxXA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNivxSxXA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNivxSxXA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNivxSxXA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNivxSxXA .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiuAt5BB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNiuAt5BB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiuAt5BB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiuAt5BB .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNiuAt5BB .number {
  color: #ffffff;
}
.cid-uYNiuAt5BB .period {
  display: block;
}
.cid-uYNiuAt5BB .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNiuAt5BB .period {
    font-size: 0.8rem;
  }
}
.cid-uYNiuAt5BB .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNiuAt5BB .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNiuAt5BB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiuAt5BB .mbr-text {
  color: #ffffff;
}
.cid-uYNiuAt5BB .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNiuAt5BB .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNiuAt5BB .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNiuAt5BB .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWvYgEgFc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWvYgEgFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWvYgEgFc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWvYgEgFc .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWvYgEgFc .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWvYgEgFc .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWvYgEgFc .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWvYgEgFc .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWvYgEgFc .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWvYgEgFc .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWvYgEgFc .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWvYgEgFc .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWvYgEgFc [class^="socicon-"]:before,
.cid-uvWvYgEgFc [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWvYgEgFc .mbr-section-title,
.cid-uvWvYgEgFc .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWvYhcTQZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWvYhcTQZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWvYhcTQZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWvYhcTQZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWvYhcTQZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWvYhcTQZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWvYhcTQZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWvYhcTQZ .mbr-text {
  color: #ffffff;
}
.cid-uvWvYhcTQZ .card-title {
  color: #ffffff;
}
.cid-uvWvYhcTQZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWvYhcTQZ .mbr-section-title {
  color: #ffffff;
}
.cid-uvWvYhcTQZ .link {
  color: #4479d9;
}
.cid-uvWvYhVBvp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWvYhVBvp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWvYhVBvp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWvYhVBvp .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWvYhVBvp .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWvYhVBvp .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWvYhVBvp .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWvYhVBvp div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWvYhVBvp .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWxiO6wrU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWxiO6wrU nav.navbar {
  position: fixed;
}
.cid-uvWxiO6wrU .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-uvWxiO6wrU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWxiO6wrU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWxiO6wrU .dropdown-item:hover,
.cid-uvWxiO6wrU .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWxiO6wrU .dropdown-item:hover span {
  color: white;
}
.cid-uvWxiO6wrU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWxiO6wrU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWxiO6wrU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWxiO6wrU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWxiO6wrU .nav-link {
  position: relative;
}
.cid-uvWxiO6wrU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWxiO6wrU .container {
    flex-wrap: wrap;
  }
}
.cid-uvWxiO6wrU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWxiO6wrU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWxiO6wrU .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWxiO6wrU .dropdown-menu,
.cid-uvWxiO6wrU .navbar.opened {
  background: #000000 !important;
}
.cid-uvWxiO6wrU .nav-item:focus,
.cid-uvWxiO6wrU .nav-link:focus {
  outline: none;
}
.cid-uvWxiO6wrU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWxiO6wrU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWxiO6wrU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWxiO6wrU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWxiO6wrU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWxiO6wrU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWxiO6wrU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWxiO6wrU .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWxiO6wrU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWxiO6wrU .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWxiO6wrU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWxiO6wrU .navbar.collapsed {
  justify-content: center;
}
.cid-uvWxiO6wrU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWxiO6wrU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWxiO6wrU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWxiO6wrU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWxiO6wrU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWxiO6wrU .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-uvWxiO6wrU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWxiO6wrU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWxiO6wrU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWxiO6wrU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWxiO6wrU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWxiO6wrU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWxiO6wrU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWxiO6wrU .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-uvWxiO6wrU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWxiO6wrU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWxiO6wrU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWxiO6wrU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWxiO6wrU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWxiO6wrU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWxiO6wrU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWxiO6wrU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWxiO6wrU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWxiO6wrU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWxiO6wrU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWxiO6wrU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWxiO6wrU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWxiO6wrU .dropdown-item.active,
.cid-uvWxiO6wrU .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWxiO6wrU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWxiO6wrU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWxiO6wrU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWxiO6wrU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWxiO6wrU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWxiO6wrU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWxiO6wrU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWxiO6wrU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWxiO6wrU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWxiO6wrU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWxiO6wrU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWxiO6wrU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWxiO6wrU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWxiO6wrU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWxiO6wrU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWxiO6wrU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWxiO6wrU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWxiO6wrU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWxiO6wrU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWxiO6wrU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWxiO6wrU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWxiO6wrU .navbar {
    height: 70px;
  }
  .cid-uvWxiO6wrU .navbar.opened {
    height: auto;
  }
  .cid-uvWxiO6wrU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWxiOQJLC {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWxiOQJLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWxiOQJLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWxiOQJLC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWxiOQJLC .mbr-text,
.cid-uvWxiOQJLC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWxiOQJLC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWxiPrH7H {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWxiPrH7H img,
.cid-uvWxiPrH7H .item-img {
  width: 100%;
}
.cid-uvWxiPrH7H .item:focus,
.cid-uvWxiPrH7H span:focus {
  outline: none;
}
.cid-uvWxiPrH7H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWxiPrH7H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWxiPrH7H .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWxiPrH7H .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWxiPrH7H .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWxiPrH7H .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWxiPrH7H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWxiPrH7H .mbr-section-title {
  color: #ffffff;
}
.cid-uvWxiPrH7H .mbr-text,
.cid-uvWxiPrH7H .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWxiPrH7H .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWxiPrH7H .item-subtitle {
  text-align: left;
}
.cid-uvWxiPrH7H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkKkqlvM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkKkqlvM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkKkqlvM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkKkqlvM .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkKkqlvM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiAMQ9MO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNiAMQ9MO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiAMQ9MO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiAMQ9MO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiAMQ9MO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNizHPkP8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNizHPkP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNizHPkP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNizHPkP8 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNizHPkP8 .number {
  color: #ffffff;
}
.cid-uYNizHPkP8 .period {
  display: block;
}
.cid-uYNizHPkP8 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNizHPkP8 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNizHPkP8 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNizHPkP8 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNizHPkP8 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNizHPkP8 .mbr-text {
  color: #ffffff;
}
.cid-uYNizHPkP8 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNizHPkP8 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNizHPkP8 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNizHPkP8 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWxiQGZMk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWxiQGZMk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWxiQGZMk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWxiQGZMk .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWxiQGZMk .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWxiQGZMk .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWxiQGZMk .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWxiQGZMk .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWxiQGZMk .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWxiQGZMk .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWxiQGZMk .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWxiQGZMk .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWxiQGZMk [class^="socicon-"]:before,
.cid-uvWxiQGZMk [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWxiQGZMk .mbr-section-title,
.cid-uvWxiQGZMk .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWxiRfnHU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWxiRfnHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWxiRfnHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWxiRfnHU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWxiRfnHU .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWxiRfnHU .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWxiRfnHU .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWxiRfnHU .mbr-text {
  color: #ffffff;
}
.cid-uvWxiRfnHU .card-title {
  color: #ffffff;
}
.cid-uvWxiRfnHU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWxiRfnHU .mbr-section-title {
  color: #ffffff;
}
.cid-uvWxiRfnHU .link {
  color: #4479d9;
}
.cid-uvWxiRVG9d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWxiRVG9d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWxiRVG9d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWxiRVG9d .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWxiRVG9d .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWxiRVG9d .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWxiRVG9d .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWxiRVG9d div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWxiRVG9d .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvWy3476O7 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvWy3476O7 nav.navbar {
  position: fixed;
}
.cid-uvWy3476O7 .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-uvWy3476O7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvWy3476O7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvWy3476O7 .dropdown-item:hover,
.cid-uvWy3476O7 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvWy3476O7 .dropdown-item:hover span {
  color: white;
}
.cid-uvWy3476O7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvWy3476O7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvWy3476O7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvWy3476O7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvWy3476O7 .nav-link {
  position: relative;
}
.cid-uvWy3476O7 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWy3476O7 .container {
    flex-wrap: wrap;
  }
}
.cid-uvWy3476O7 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvWy3476O7 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvWy3476O7 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvWy3476O7 .dropdown-menu,
.cid-uvWy3476O7 .navbar.opened {
  background: #000000 !important;
}
.cid-uvWy3476O7 .nav-item:focus,
.cid-uvWy3476O7 .nav-link:focus {
  outline: none;
}
.cid-uvWy3476O7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvWy3476O7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvWy3476O7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvWy3476O7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvWy3476O7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvWy3476O7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvWy3476O7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvWy3476O7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uvWy3476O7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvWy3476O7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uvWy3476O7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvWy3476O7 .navbar.collapsed {
  justify-content: center;
}
.cid-uvWy3476O7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvWy3476O7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvWy3476O7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvWy3476O7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvWy3476O7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvWy3476O7 .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-uvWy3476O7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvWy3476O7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvWy3476O7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvWy3476O7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvWy3476O7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvWy3476O7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvWy3476O7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvWy3476O7 .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-uvWy3476O7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvWy3476O7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvWy3476O7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvWy3476O7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvWy3476O7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvWy3476O7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvWy3476O7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvWy3476O7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvWy3476O7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvWy3476O7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvWy3476O7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvWy3476O7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvWy3476O7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvWy3476O7 .dropdown-item.active,
.cid-uvWy3476O7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uvWy3476O7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvWy3476O7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvWy3476O7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvWy3476O7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvWy3476O7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvWy3476O7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvWy3476O7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvWy3476O7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvWy3476O7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvWy3476O7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvWy3476O7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvWy3476O7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWy3476O7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvWy3476O7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvWy3476O7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWy3476O7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvWy3476O7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvWy3476O7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvWy3476O7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvWy3476O7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvWy3476O7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvWy3476O7 .navbar {
    height: 70px;
  }
  .cid-uvWy3476O7 .navbar.opened {
    height: auto;
  }
  .cid-uvWy3476O7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvWy34S3YS {
  background-image: url("../../../assets/images/mcville-inline-spinners-banner.webp");
}
.cid-uvWy34S3YS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWy34S3YS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWy34S3YS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvWy34S3YS .mbr-text,
.cid-uvWy34S3YS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvWy34S3YS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uvWy35qDBH {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWy35qDBH img,
.cid-uvWy35qDBH .item-img {
  width: 100%;
}
.cid-uvWy35qDBH .item:focus,
.cid-uvWy35qDBH span:focus {
  outline: none;
}
.cid-uvWy35qDBH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uvWy35qDBH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uvWy35qDBH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uvWy35qDBH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uvWy35qDBH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uvWy35qDBH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uvWy35qDBH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uvWy35qDBH .mbr-section-title {
  color: #ffffff;
}
.cid-uvWy35qDBH .mbr-text,
.cid-uvWy35qDBH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uvWy35qDBH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uvWy35qDBH .item-subtitle {
  text-align: left;
}
.cid-uvWy35qDBH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZWkMu4899 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWkMu4899 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWkMu4899 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWkMu4899 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWkMu4899 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiHinCRJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNiHinCRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiHinCRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiHinCRJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiHinCRJ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiG90BYe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNiG90BYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiG90BYe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiG90BYe .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNiG90BYe .number {
  color: #ffffff;
}
.cid-uYNiG90BYe .period {
  display: block;
}
.cid-uYNiG90BYe .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNiG90BYe .period {
    font-size: 0.8rem;
  }
}
.cid-uYNiG90BYe .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNiG90BYe .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNiG90BYe .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiG90BYe .mbr-text {
  color: #ffffff;
}
.cid-uYNiG90BYe .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNiG90BYe .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNiG90BYe .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNiG90BYe .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvWy36FA1l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvWy36FA1l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWy36FA1l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWy36FA1l .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvWy36FA1l .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvWy36FA1l .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvWy36FA1l .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvWy36FA1l .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvWy36FA1l .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvWy36FA1l .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvWy36FA1l .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvWy36FA1l .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvWy36FA1l [class^="socicon-"]:before,
.cid-uvWy36FA1l [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvWy36FA1l .mbr-section-title,
.cid-uvWy36FA1l .mbr-social-likes {
  color: #ffffff;
}
.cid-uvWy37eMKu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvWy37eMKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWy37eMKu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWy37eMKu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvWy37eMKu .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvWy37eMKu .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWy37eMKu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvWy37eMKu .mbr-text {
  color: #ffffff;
}
.cid-uvWy37eMKu .card-title {
  color: #ffffff;
}
.cid-uvWy37eMKu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvWy37eMKu .mbr-section-title {
  color: #ffffff;
}
.cid-uvWy37eMKu .link {
  color: #4479d9;
}
.cid-uvWy37XhTg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvWy37XhTg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvWy37XhTg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvWy37XhTg .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvWy37XhTg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvWy37XhTg .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvWy37XhTg .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvWy37XhTg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvWy37XhTg .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uvZYJJIswI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uvZYJJIswI nav.navbar {
  position: fixed;
}
.cid-uvZYJJIswI .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-uvZYJJIswI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvZYJJIswI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvZYJJIswI .dropdown-item:hover,
.cid-uvZYJJIswI .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uvZYJJIswI .dropdown-item:hover span {
  color: white;
}
.cid-uvZYJJIswI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvZYJJIswI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvZYJJIswI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvZYJJIswI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvZYJJIswI .nav-link {
  position: relative;
}
.cid-uvZYJJIswI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvZYJJIswI .container {
    flex-wrap: wrap;
  }
}
.cid-uvZYJJIswI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvZYJJIswI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvZYJJIswI .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvZYJJIswI .dropdown-menu,
.cid-uvZYJJIswI .navbar.opened {
  background: #000000 !important;
}
.cid-uvZYJJIswI .nav-item:focus,
.cid-uvZYJJIswI .nav-link:focus {
  outline: none;
}
.cid-uvZYJJIswI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvZYJJIswI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvZYJJIswI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvZYJJIswI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvZYJJIswI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvZYJJIswI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvZYJJIswI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uvZYJJIswI .navbar.opened {
  transition: all 0.3s;
}
.cid-uvZYJJIswI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvZYJJIswI .navbar .navbar-logo img {
  width: auto;
}
.cid-uvZYJJIswI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvZYJJIswI .navbar.collapsed {
  justify-content: center;
}
.cid-uvZYJJIswI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvZYJJIswI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvZYJJIswI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uvZYJJIswI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvZYJJIswI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvZYJJIswI .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-uvZYJJIswI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvZYJJIswI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvZYJJIswI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvZYJJIswI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvZYJJIswI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvZYJJIswI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvZYJJIswI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvZYJJIswI .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-uvZYJJIswI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvZYJJIswI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvZYJJIswI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvZYJJIswI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvZYJJIswI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvZYJJIswI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvZYJJIswI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvZYJJIswI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvZYJJIswI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvZYJJIswI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvZYJJIswI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uvZYJJIswI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvZYJJIswI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvZYJJIswI .dropdown-item.active,
.cid-uvZYJJIswI .dropdown-item:active {
  background-color: transparent;
}
.cid-uvZYJJIswI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvZYJJIswI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvZYJJIswI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvZYJJIswI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvZYJJIswI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvZYJJIswI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvZYJJIswI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvZYJJIswI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvZYJJIswI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvZYJJIswI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uvZYJJIswI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvZYJJIswI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvZYJJIswI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvZYJJIswI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvZYJJIswI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvZYJJIswI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvZYJJIswI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvZYJJIswI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvZYJJIswI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvZYJJIswI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvZYJJIswI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uvZYJJIswI .navbar {
    height: 70px;
  }
  .cid-uvZYJJIswI .navbar.opened {
    height: auto;
  }
  .cid-uvZYJJIswI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvZYJKskEj {
  background-image: url("../../../assets/images/plastic-screws-for-standoffs.webp");
}
.cid-uvZYJKskEj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvZYJKskEj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvZYJKskEj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uvZYJKskEj .mbr-text,
.cid-uvZYJKskEj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uvZYJKskEj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw01TLPwSS {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw01TLPwSS img,
.cid-uw01TLPwSS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw01TLPwSS .item:focus,
.cid-uw01TLPwSS span:focus {
  outline: none;
}
.cid-uw01TLPwSS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw01TLPwSS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw01TLPwSS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw01TLPwSS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw01TLPwSS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw01TLPwSS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw01TLPwSS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw01TLPwSS .mbr-section-title {
  color: #232323;
}
.cid-uw01TLPwSS .mbr-text,
.cid-uw01TLPwSS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw01TLPwSS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw01TLPwSS .item-subtitle {
  text-align: left;
}
.cid-uZWl5fQINu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWl5fQINu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWl5fQINu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWl5fQINu .mbr-section-title {
  color: #ffffff;
}
.cid-uZWl5fQINu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiWzwnn3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNiWzwnn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiWzwnn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiWzwnn3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNiWzwnn3 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiVonG3t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNiVonG3t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNiVonG3t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNiVonG3t .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNiVonG3t .number {
  color: #ffffff;
}
.cid-uYNiVonG3t .period {
  display: block;
}
.cid-uYNiVonG3t .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNiVonG3t .period {
    font-size: 0.8rem;
  }
}
.cid-uYNiVonG3t .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNiVonG3t .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNiVonG3t .mbr-section-title {
  color: #ffffff;
}
.cid-uYNiVonG3t .mbr-text {
  color: #ffffff;
}
.cid-uYNiVonG3t .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNiVonG3t .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNiVonG3t .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNiVonG3t .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uvZYJNs5wN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uvZYJNs5wN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvZYJNs5wN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvZYJNs5wN .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uvZYJNs5wN .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uvZYJNs5wN .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uvZYJNs5wN .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uvZYJNs5wN .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uvZYJNs5wN .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uvZYJNs5wN .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uvZYJNs5wN .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uvZYJNs5wN .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uvZYJNs5wN [class^="socicon-"]:before,
.cid-uvZYJNs5wN [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uvZYJNs5wN .mbr-section-title,
.cid-uvZYJNs5wN .mbr-social-likes {
  color: #ffffff;
}
.cid-uvZYJO12C8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uvZYJO12C8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvZYJO12C8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvZYJO12C8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uvZYJO12C8 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uvZYJO12C8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uvZYJO12C8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvZYJO12C8 .mbr-text {
  color: #ffffff;
}
.cid-uvZYJO12C8 .card-title {
  color: #ffffff;
}
.cid-uvZYJO12C8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvZYJO12C8 .mbr-section-title {
  color: #ffffff;
}
.cid-uvZYJO12C8 .link {
  color: #4479d9;
}
.cid-uvZYJOH7Rg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uvZYJOH7Rg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvZYJOH7Rg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvZYJOH7Rg .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uvZYJOH7Rg .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvZYJOH7Rg .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uvZYJOH7Rg .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uvZYJOH7Rg div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uvZYJOH7Rg .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw04NdXps2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw04NdXps2 nav.navbar {
  position: fixed;
}
.cid-uw04NdXps2 .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-uw04NdXps2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw04NdXps2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw04NdXps2 .dropdown-item:hover,
.cid-uw04NdXps2 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw04NdXps2 .dropdown-item:hover span {
  color: white;
}
.cid-uw04NdXps2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw04NdXps2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw04NdXps2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw04NdXps2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw04NdXps2 .nav-link {
  position: relative;
}
.cid-uw04NdXps2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw04NdXps2 .container {
    flex-wrap: wrap;
  }
}
.cid-uw04NdXps2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw04NdXps2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw04NdXps2 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw04NdXps2 .dropdown-menu,
.cid-uw04NdXps2 .navbar.opened {
  background: #000000 !important;
}
.cid-uw04NdXps2 .nav-item:focus,
.cid-uw04NdXps2 .nav-link:focus {
  outline: none;
}
.cid-uw04NdXps2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw04NdXps2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw04NdXps2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw04NdXps2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw04NdXps2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw04NdXps2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw04NdXps2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw04NdXps2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uw04NdXps2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw04NdXps2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uw04NdXps2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw04NdXps2 .navbar.collapsed {
  justify-content: center;
}
.cid-uw04NdXps2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw04NdXps2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw04NdXps2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw04NdXps2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw04NdXps2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw04NdXps2 .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-uw04NdXps2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw04NdXps2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw04NdXps2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw04NdXps2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw04NdXps2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw04NdXps2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw04NdXps2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw04NdXps2 .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-uw04NdXps2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw04NdXps2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw04NdXps2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw04NdXps2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw04NdXps2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw04NdXps2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw04NdXps2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw04NdXps2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw04NdXps2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw04NdXps2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw04NdXps2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw04NdXps2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw04NdXps2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw04NdXps2 .dropdown-item.active,
.cid-uw04NdXps2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uw04NdXps2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw04NdXps2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw04NdXps2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw04NdXps2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw04NdXps2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw04NdXps2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw04NdXps2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw04NdXps2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw04NdXps2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw04NdXps2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw04NdXps2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw04NdXps2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw04NdXps2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw04NdXps2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw04NdXps2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw04NdXps2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw04NdXps2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw04NdXps2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw04NdXps2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw04NdXps2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw04NdXps2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw04NdXps2 .navbar {
    height: 70px;
  }
  .cid-uw04NdXps2 .navbar.opened {
    height: auto;
  }
  .cid-uw04NdXps2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw04NeKCc4 {
  background-image: url("../../../assets/images/plastic-screws-for-standoffs.webp");
}
.cid-uw04NeKCc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw04NeKCc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw04NeKCc4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw04NeKCc4 .mbr-text,
.cid-uw04NeKCc4 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw04NeKCc4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw04NfjAWT {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw04NfjAWT img,
.cid-uw04NfjAWT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw04NfjAWT .item:focus,
.cid-uw04NfjAWT span:focus {
  outline: none;
}
.cid-uw04NfjAWT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw04NfjAWT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw04NfjAWT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw04NfjAWT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw04NfjAWT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw04NfjAWT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw04NfjAWT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw04NfjAWT .mbr-section-title {
  color: #232323;
}
.cid-uw04NfjAWT .mbr-text,
.cid-uw04NfjAWT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw04NfjAWT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw04NfjAWT .item-subtitle {
  text-align: left;
}
.cid-uZWmoY1qsf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmoY1qsf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmoY1qsf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmoY1qsf .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmoY1qsf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNj5Jh718 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNj5Jh718 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNj5Jh718 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNj5Jh718 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNj5Jh718 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNj4xy9fm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNj4xy9fm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNj4xy9fm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNj4xy9fm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNj4xy9fm .number {
  color: #ffffff;
}
.cid-uYNj4xy9fm .period {
  display: block;
}
.cid-uYNj4xy9fm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNj4xy9fm .period {
    font-size: 0.8rem;
  }
}
.cid-uYNj4xy9fm .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNj4xy9fm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNj4xy9fm .mbr-section-title {
  color: #ffffff;
}
.cid-uYNj4xy9fm .mbr-text {
  color: #ffffff;
}
.cid-uYNj4xy9fm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNj4xy9fm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNj4xy9fm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNj4xy9fm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw04NgAO3Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw04NgAO3Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw04NgAO3Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw04NgAO3Z .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw04NgAO3Z .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw04NgAO3Z .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw04NgAO3Z .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw04NgAO3Z .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw04NgAO3Z .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw04NgAO3Z .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw04NgAO3Z .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw04NgAO3Z .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw04NgAO3Z [class^="socicon-"]:before,
.cid-uw04NgAO3Z [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw04NgAO3Z .mbr-section-title,
.cid-uw04NgAO3Z .mbr-social-likes {
  color: #ffffff;
}
.cid-uw04Nh8JJL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw04Nh8JJL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw04Nh8JJL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw04Nh8JJL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw04Nh8JJL .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw04Nh8JJL .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw04Nh8JJL .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw04Nh8JJL .mbr-text {
  color: #ffffff;
}
.cid-uw04Nh8JJL .card-title {
  color: #ffffff;
}
.cid-uw04Nh8JJL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw04Nh8JJL .mbr-section-title {
  color: #ffffff;
}
.cid-uw04Nh8JJL .link {
  color: #4479d9;
}
.cid-uw04NhMtyC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw04NhMtyC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw04NhMtyC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw04NhMtyC .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw04NhMtyC .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw04NhMtyC .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw04NhMtyC .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw04NhMtyC div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw04NhMtyC .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw06pJEkPj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw06pJEkPj nav.navbar {
  position: fixed;
}
.cid-uw06pJEkPj .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-uw06pJEkPj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw06pJEkPj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw06pJEkPj .dropdown-item:hover,
.cid-uw06pJEkPj .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw06pJEkPj .dropdown-item:hover span {
  color: white;
}
.cid-uw06pJEkPj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw06pJEkPj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw06pJEkPj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw06pJEkPj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw06pJEkPj .nav-link {
  position: relative;
}
.cid-uw06pJEkPj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw06pJEkPj .container {
    flex-wrap: wrap;
  }
}
.cid-uw06pJEkPj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw06pJEkPj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw06pJEkPj .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw06pJEkPj .dropdown-menu,
.cid-uw06pJEkPj .navbar.opened {
  background: #000000 !important;
}
.cid-uw06pJEkPj .nav-item:focus,
.cid-uw06pJEkPj .nav-link:focus {
  outline: none;
}
.cid-uw06pJEkPj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw06pJEkPj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw06pJEkPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw06pJEkPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw06pJEkPj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw06pJEkPj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw06pJEkPj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw06pJEkPj .navbar.opened {
  transition: all 0.3s;
}
.cid-uw06pJEkPj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw06pJEkPj .navbar .navbar-logo img {
  width: auto;
}
.cid-uw06pJEkPj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw06pJEkPj .navbar.collapsed {
  justify-content: center;
}
.cid-uw06pJEkPj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw06pJEkPj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw06pJEkPj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw06pJEkPj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw06pJEkPj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw06pJEkPj .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-uw06pJEkPj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw06pJEkPj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw06pJEkPj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw06pJEkPj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw06pJEkPj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw06pJEkPj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw06pJEkPj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw06pJEkPj .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-uw06pJEkPj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw06pJEkPj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw06pJEkPj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw06pJEkPj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw06pJEkPj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw06pJEkPj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw06pJEkPj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw06pJEkPj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw06pJEkPj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw06pJEkPj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw06pJEkPj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw06pJEkPj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw06pJEkPj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw06pJEkPj .dropdown-item.active,
.cid-uw06pJEkPj .dropdown-item:active {
  background-color: transparent;
}
.cid-uw06pJEkPj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw06pJEkPj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw06pJEkPj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw06pJEkPj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw06pJEkPj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw06pJEkPj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw06pJEkPj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw06pJEkPj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw06pJEkPj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw06pJEkPj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw06pJEkPj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw06pJEkPj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw06pJEkPj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw06pJEkPj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw06pJEkPj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw06pJEkPj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw06pJEkPj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw06pJEkPj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw06pJEkPj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw06pJEkPj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw06pJEkPj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw06pJEkPj .navbar {
    height: 70px;
  }
  .cid-uw06pJEkPj .navbar.opened {
    height: auto;
  }
  .cid-uw06pJEkPj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw06pKulCC {
  background-image: url("../../../assets/images/plastic-screws-for-standoffs.webp");
}
.cid-uw06pKulCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw06pKulCC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw06pKulCC .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw06pKulCC .mbr-text,
.cid-uw06pKulCC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw06pKulCC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw06pL339I {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw06pL339I img,
.cid-uw06pL339I .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw06pL339I .item:focus,
.cid-uw06pL339I span:focus {
  outline: none;
}
.cid-uw06pL339I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw06pL339I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw06pL339I .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw06pL339I .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw06pL339I .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw06pL339I .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw06pL339I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw06pL339I .mbr-section-title {
  color: #232323;
}
.cid-uw06pL339I .mbr-text,
.cid-uw06pL339I .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw06pL339I .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw06pL339I .item-subtitle {
  text-align: left;
}
.cid-uZWmrgstn2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmrgstn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmrgstn2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmrgstn2 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmrgstn2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjj3PMga {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNjj3PMga .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjj3PMga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjj3PMga .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjj3PMga .mbr-section-title {
  color: #ffffff;
}
.cid-uYNji0Hc2i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNji0Hc2i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNji0Hc2i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNji0Hc2i .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNji0Hc2i .number {
  color: #ffffff;
}
.cid-uYNji0Hc2i .period {
  display: block;
}
.cid-uYNji0Hc2i .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNji0Hc2i .period {
    font-size: 0.8rem;
  }
}
.cid-uYNji0Hc2i .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNji0Hc2i .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNji0Hc2i .mbr-section-title {
  color: #ffffff;
}
.cid-uYNji0Hc2i .mbr-text {
  color: #ffffff;
}
.cid-uYNji0Hc2i .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNji0Hc2i .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNji0Hc2i .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNji0Hc2i .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw06pMjxtG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw06pMjxtG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw06pMjxtG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw06pMjxtG .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw06pMjxtG .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw06pMjxtG .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw06pMjxtG .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw06pMjxtG .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw06pMjxtG .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw06pMjxtG .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw06pMjxtG .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw06pMjxtG .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw06pMjxtG [class^="socicon-"]:before,
.cid-uw06pMjxtG [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw06pMjxtG .mbr-section-title,
.cid-uw06pMjxtG .mbr-social-likes {
  color: #ffffff;
}
.cid-uw06pMSw6w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw06pMSw6w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw06pMSw6w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw06pMSw6w .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw06pMSw6w .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw06pMSw6w .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw06pMSw6w .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw06pMSw6w .mbr-text {
  color: #ffffff;
}
.cid-uw06pMSw6w .card-title {
  color: #ffffff;
}
.cid-uw06pMSw6w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw06pMSw6w .mbr-section-title {
  color: #ffffff;
}
.cid-uw06pMSw6w .link {
  color: #4479d9;
}
.cid-uw06pNActw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw06pNActw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw06pNActw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw06pNActw .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw06pNActw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw06pNActw .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw06pNActw .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw06pNActw div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw06pNActw .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw08xm64yu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw08xm64yu nav.navbar {
  position: fixed;
}
.cid-uw08xm64yu .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-uw08xm64yu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw08xm64yu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw08xm64yu .dropdown-item:hover,
.cid-uw08xm64yu .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw08xm64yu .dropdown-item:hover span {
  color: white;
}
.cid-uw08xm64yu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw08xm64yu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw08xm64yu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw08xm64yu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw08xm64yu .nav-link {
  position: relative;
}
.cid-uw08xm64yu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw08xm64yu .container {
    flex-wrap: wrap;
  }
}
.cid-uw08xm64yu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw08xm64yu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw08xm64yu .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw08xm64yu .dropdown-menu,
.cid-uw08xm64yu .navbar.opened {
  background: #000000 !important;
}
.cid-uw08xm64yu .nav-item:focus,
.cid-uw08xm64yu .nav-link:focus {
  outline: none;
}
.cid-uw08xm64yu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw08xm64yu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw08xm64yu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw08xm64yu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw08xm64yu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw08xm64yu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw08xm64yu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw08xm64yu .navbar.opened {
  transition: all 0.3s;
}
.cid-uw08xm64yu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw08xm64yu .navbar .navbar-logo img {
  width: auto;
}
.cid-uw08xm64yu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw08xm64yu .navbar.collapsed {
  justify-content: center;
}
.cid-uw08xm64yu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw08xm64yu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw08xm64yu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw08xm64yu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw08xm64yu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw08xm64yu .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-uw08xm64yu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw08xm64yu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw08xm64yu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw08xm64yu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw08xm64yu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw08xm64yu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw08xm64yu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw08xm64yu .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-uw08xm64yu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw08xm64yu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw08xm64yu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw08xm64yu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw08xm64yu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw08xm64yu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw08xm64yu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw08xm64yu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw08xm64yu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw08xm64yu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw08xm64yu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw08xm64yu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw08xm64yu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw08xm64yu .dropdown-item.active,
.cid-uw08xm64yu .dropdown-item:active {
  background-color: transparent;
}
.cid-uw08xm64yu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw08xm64yu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw08xm64yu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw08xm64yu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw08xm64yu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw08xm64yu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw08xm64yu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw08xm64yu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw08xm64yu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw08xm64yu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw08xm64yu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw08xm64yu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw08xm64yu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw08xm64yu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw08xm64yu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw08xm64yu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw08xm64yu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw08xm64yu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw08xm64yu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw08xm64yu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw08xm64yu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw08xm64yu .navbar {
    height: 70px;
  }
  .cid-uw08xm64yu .navbar.opened {
    height: auto;
  }
  .cid-uw08xm64yu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw08xmST1L {
  background-image: url("../../../assets/images/plastic-screws-for-standoffs.webp");
}
.cid-uw08xmST1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw08xmST1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw08xmST1L .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw08xmST1L .mbr-text,
.cid-uw08xmST1L .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw08xmST1L .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw08xnpgo4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw08xnpgo4 img,
.cid-uw08xnpgo4 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw08xnpgo4 .item:focus,
.cid-uw08xnpgo4 span:focus {
  outline: none;
}
.cid-uw08xnpgo4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw08xnpgo4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw08xnpgo4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw08xnpgo4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw08xnpgo4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw08xnpgo4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw08xnpgo4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw08xnpgo4 .mbr-section-title {
  color: #232323;
}
.cid-uw08xnpgo4 .mbr-text,
.cid-uw08xnpgo4 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw08xnpgo4 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw08xnpgo4 .item-subtitle {
  text-align: left;
}
.cid-uZWmtzh93E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmtzh93E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmtzh93E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmtzh93E .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmtzh93E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjogdzr4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNjogdzr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjogdzr4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjogdzr4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjogdzr4 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjmQskMW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNjmQskMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjmQskMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjmQskMW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNjmQskMW .number {
  color: #ffffff;
}
.cid-uYNjmQskMW .period {
  display: block;
}
.cid-uYNjmQskMW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNjmQskMW .period {
    font-size: 0.8rem;
  }
}
.cid-uYNjmQskMW .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNjmQskMW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNjmQskMW .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjmQskMW .mbr-text {
  color: #ffffff;
}
.cid-uYNjmQskMW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNjmQskMW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNjmQskMW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNjmQskMW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw08xoFxhj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw08xoFxhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw08xoFxhj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw08xoFxhj .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw08xoFxhj .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw08xoFxhj .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw08xoFxhj .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw08xoFxhj .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw08xoFxhj .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw08xoFxhj .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw08xoFxhj .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw08xoFxhj .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw08xoFxhj [class^="socicon-"]:before,
.cid-uw08xoFxhj [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw08xoFxhj .mbr-section-title,
.cid-uw08xoFxhj .mbr-social-likes {
  color: #ffffff;
}
.cid-uw08xpd5oh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw08xpd5oh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw08xpd5oh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw08xpd5oh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw08xpd5oh .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw08xpd5oh .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw08xpd5oh .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw08xpd5oh .mbr-text {
  color: #ffffff;
}
.cid-uw08xpd5oh .card-title {
  color: #ffffff;
}
.cid-uw08xpd5oh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw08xpd5oh .mbr-section-title {
  color: #ffffff;
}
.cid-uw08xpd5oh .link {
  color: #4479d9;
}
.cid-uw08xpRFd9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw08xpRFd9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw08xpRFd9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw08xpRFd9 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw08xpRFd9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw08xpRFd9 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw08xpRFd9 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw08xpRFd9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw08xpRFd9 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw09NA00kl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw09NA00kl nav.navbar {
  position: fixed;
}
.cid-uw09NA00kl .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-uw09NA00kl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw09NA00kl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw09NA00kl .dropdown-item:hover,
.cid-uw09NA00kl .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw09NA00kl .dropdown-item:hover span {
  color: white;
}
.cid-uw09NA00kl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw09NA00kl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw09NA00kl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw09NA00kl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw09NA00kl .nav-link {
  position: relative;
}
.cid-uw09NA00kl .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw09NA00kl .container {
    flex-wrap: wrap;
  }
}
.cid-uw09NA00kl .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw09NA00kl .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw09NA00kl .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw09NA00kl .dropdown-menu,
.cid-uw09NA00kl .navbar.opened {
  background: #000000 !important;
}
.cid-uw09NA00kl .nav-item:focus,
.cid-uw09NA00kl .nav-link:focus {
  outline: none;
}
.cid-uw09NA00kl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw09NA00kl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw09NA00kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw09NA00kl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw09NA00kl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw09NA00kl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw09NA00kl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw09NA00kl .navbar.opened {
  transition: all 0.3s;
}
.cid-uw09NA00kl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw09NA00kl .navbar .navbar-logo img {
  width: auto;
}
.cid-uw09NA00kl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw09NA00kl .navbar.collapsed {
  justify-content: center;
}
.cid-uw09NA00kl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw09NA00kl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw09NA00kl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw09NA00kl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw09NA00kl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw09NA00kl .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-uw09NA00kl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw09NA00kl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw09NA00kl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw09NA00kl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw09NA00kl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw09NA00kl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw09NA00kl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw09NA00kl .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-uw09NA00kl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw09NA00kl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw09NA00kl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw09NA00kl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw09NA00kl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw09NA00kl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw09NA00kl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw09NA00kl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw09NA00kl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw09NA00kl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw09NA00kl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw09NA00kl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw09NA00kl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw09NA00kl .dropdown-item.active,
.cid-uw09NA00kl .dropdown-item:active {
  background-color: transparent;
}
.cid-uw09NA00kl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw09NA00kl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw09NA00kl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw09NA00kl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw09NA00kl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw09NA00kl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw09NA00kl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw09NA00kl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw09NA00kl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw09NA00kl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw09NA00kl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw09NA00kl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw09NA00kl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw09NA00kl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw09NA00kl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw09NA00kl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw09NA00kl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw09NA00kl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw09NA00kl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw09NA00kl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw09NA00kl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw09NA00kl .navbar {
    height: 70px;
  }
  .cid-uw09NA00kl .navbar.opened {
    height: auto;
  }
  .cid-uw09NA00kl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw09NALvXq {
  background-image: url("../../../assets/images/steel-nuts-banner.webp");
}
.cid-uw09NALvXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw09NALvXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw09NALvXq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw09NALvXq .mbr-text,
.cid-uw09NALvXq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw09NALvXq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw09NBpUbd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw09NBpUbd img,
.cid-uw09NBpUbd .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw09NBpUbd .item:focus,
.cid-uw09NBpUbd span:focus {
  outline: none;
}
.cid-uw09NBpUbd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw09NBpUbd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw09NBpUbd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw09NBpUbd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw09NBpUbd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw09NBpUbd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw09NBpUbd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw09NBpUbd .mbr-section-title {
  color: #232323;
}
.cid-uw09NBpUbd .mbr-text,
.cid-uw09NBpUbd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw09NBpUbd .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw09NBpUbd .item-subtitle {
  text-align: left;
}
.cid-uZWmvO25b3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmvO25b3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmvO25b3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmvO25b3 .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmvO25b3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjtr4LBO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNjtr4LBO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjtr4LBO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjtr4LBO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjtr4LBO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjsdJRx2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNjsdJRx2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjsdJRx2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjsdJRx2 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNjsdJRx2 .number {
  color: #ffffff;
}
.cid-uYNjsdJRx2 .period {
  display: block;
}
.cid-uYNjsdJRx2 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNjsdJRx2 .period {
    font-size: 0.8rem;
  }
}
.cid-uYNjsdJRx2 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNjsdJRx2 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNjsdJRx2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjsdJRx2 .mbr-text {
  color: #ffffff;
}
.cid-uYNjsdJRx2 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNjsdJRx2 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNjsdJRx2 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNjsdJRx2 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw09NCC4nW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw09NCC4nW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw09NCC4nW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw09NCC4nW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw09NCC4nW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw09NCC4nW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw09NCC4nW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw09NCC4nW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw09NCC4nW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw09NCC4nW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw09NCC4nW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw09NCC4nW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw09NCC4nW [class^="socicon-"]:before,
.cid-uw09NCC4nW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw09NCC4nW .mbr-section-title,
.cid-uw09NCC4nW .mbr-social-likes {
  color: #ffffff;
}
.cid-uw09ND92W2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw09ND92W2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw09ND92W2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw09ND92W2 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw09ND92W2 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw09ND92W2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw09ND92W2 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw09ND92W2 .mbr-text {
  color: #ffffff;
}
.cid-uw09ND92W2 .card-title {
  color: #ffffff;
}
.cid-uw09ND92W2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw09ND92W2 .mbr-section-title {
  color: #ffffff;
}
.cid-uw09ND92W2 .link {
  color: #4479d9;
}
.cid-uw09NDO4gz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw09NDO4gz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw09NDO4gz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw09NDO4gz .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw09NDO4gz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw09NDO4gz .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw09NDO4gz .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw09NDO4gz div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw09NDO4gz .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw0dc8kvLh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw0dc8kvLh nav.navbar {
  position: fixed;
}
.cid-uw0dc8kvLh .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-uw0dc8kvLh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw0dc8kvLh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw0dc8kvLh .dropdown-item:hover,
.cid-uw0dc8kvLh .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw0dc8kvLh .dropdown-item:hover span {
  color: white;
}
.cid-uw0dc8kvLh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw0dc8kvLh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw0dc8kvLh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw0dc8kvLh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw0dc8kvLh .nav-link {
  position: relative;
}
.cid-uw0dc8kvLh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw0dc8kvLh .container {
    flex-wrap: wrap;
  }
}
.cid-uw0dc8kvLh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw0dc8kvLh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw0dc8kvLh .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw0dc8kvLh .dropdown-menu,
.cid-uw0dc8kvLh .navbar.opened {
  background: #000000 !important;
}
.cid-uw0dc8kvLh .nav-item:focus,
.cid-uw0dc8kvLh .nav-link:focus {
  outline: none;
}
.cid-uw0dc8kvLh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw0dc8kvLh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw0dc8kvLh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw0dc8kvLh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw0dc8kvLh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw0dc8kvLh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw0dc8kvLh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw0dc8kvLh .navbar.opened {
  transition: all 0.3s;
}
.cid-uw0dc8kvLh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw0dc8kvLh .navbar .navbar-logo img {
  width: auto;
}
.cid-uw0dc8kvLh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw0dc8kvLh .navbar.collapsed {
  justify-content: center;
}
.cid-uw0dc8kvLh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw0dc8kvLh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw0dc8kvLh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw0dc8kvLh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw0dc8kvLh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw0dc8kvLh .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-uw0dc8kvLh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw0dc8kvLh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw0dc8kvLh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw0dc8kvLh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw0dc8kvLh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw0dc8kvLh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw0dc8kvLh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw0dc8kvLh .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-uw0dc8kvLh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw0dc8kvLh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw0dc8kvLh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw0dc8kvLh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw0dc8kvLh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw0dc8kvLh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw0dc8kvLh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw0dc8kvLh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw0dc8kvLh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw0dc8kvLh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw0dc8kvLh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw0dc8kvLh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw0dc8kvLh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw0dc8kvLh .dropdown-item.active,
.cid-uw0dc8kvLh .dropdown-item:active {
  background-color: transparent;
}
.cid-uw0dc8kvLh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw0dc8kvLh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw0dc8kvLh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw0dc8kvLh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw0dc8kvLh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw0dc8kvLh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw0dc8kvLh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw0dc8kvLh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw0dc8kvLh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw0dc8kvLh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw0dc8kvLh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw0dc8kvLh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw0dc8kvLh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw0dc8kvLh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw0dc8kvLh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw0dc8kvLh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw0dc8kvLh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw0dc8kvLh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw0dc8kvLh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw0dc8kvLh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw0dc8kvLh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0dc8kvLh .navbar {
    height: 70px;
  }
  .cid-uw0dc8kvLh .navbar.opened {
    height: auto;
  }
  .cid-uw0dc8kvLh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw0dc97NRH {
  background-image: url("../../../assets/images/plastic-screws.webp");
}
.cid-uw0dc97NRH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dc97NRH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0dc97NRH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw0dc97NRH .mbr-text,
.cid-uw0dc97NRH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw0dc97NRH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw0dc9F5GD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw0dc9F5GD img,
.cid-uw0dc9F5GD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw0dc9F5GD .item:focus,
.cid-uw0dc9F5GD span:focus {
  outline: none;
}
.cid-uw0dc9F5GD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw0dc9F5GD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw0dc9F5GD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw0dc9F5GD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0dc9F5GD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw0dc9F5GD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw0dc9F5GD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw0dc9F5GD .mbr-section-title {
  color: #232323;
}
.cid-uw0dc9F5GD .mbr-text,
.cid-uw0dc9F5GD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw0dc9F5GD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw0dc9F5GD .item-subtitle {
  text-align: left;
}
.cid-uZWmxZ1xSa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmxZ1xSa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmxZ1xSa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmxZ1xSa .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmxZ1xSa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjAYH6sO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNjAYH6sO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjAYH6sO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjAYH6sO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNjAYH6sO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjzNRziy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNjzNRziy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNjzNRziy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNjzNRziy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNjzNRziy .number {
  color: #ffffff;
}
.cid-uYNjzNRziy .period {
  display: block;
}
.cid-uYNjzNRziy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNjzNRziy .period {
    font-size: 0.8rem;
  }
}
.cid-uYNjzNRziy .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNjzNRziy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNjzNRziy .mbr-section-title {
  color: #ffffff;
}
.cid-uYNjzNRziy .mbr-text {
  color: #ffffff;
}
.cid-uYNjzNRziy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNjzNRziy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNjzNRziy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNjzNRziy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw0dcaTKQD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0dcaTKQD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dcaTKQD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0dcaTKQD .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw0dcaTKQD .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw0dcaTKQD .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw0dcaTKQD .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw0dcaTKQD .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw0dcaTKQD .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw0dcaTKQD .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw0dcaTKQD .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw0dcaTKQD .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw0dcaTKQD [class^="socicon-"]:before,
.cid-uw0dcaTKQD [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw0dcaTKQD .mbr-section-title,
.cid-uw0dcaTKQD .mbr-social-likes {
  color: #ffffff;
}
.cid-uw0dcbvptu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw0dcbvptu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dcbvptu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0dcbvptu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw0dcbvptu .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw0dcbvptu .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw0dcbvptu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw0dcbvptu .mbr-text {
  color: #ffffff;
}
.cid-uw0dcbvptu .card-title {
  color: #ffffff;
}
.cid-uw0dcbvptu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw0dcbvptu .mbr-section-title {
  color: #ffffff;
}
.cid-uw0dcbvptu .link {
  color: #4479d9;
}
.cid-uw0dcca4fo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw0dcca4fo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0dcca4fo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0dcca4fo .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw0dcca4fo .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw0dcca4fo .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw0dcca4fo .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw0dcca4fo div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw0dcca4fo .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw0ktcZxnT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw0ktcZxnT nav.navbar {
  position: fixed;
}
.cid-uw0ktcZxnT .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-uw0ktcZxnT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw0ktcZxnT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw0ktcZxnT .dropdown-item:hover,
.cid-uw0ktcZxnT .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw0ktcZxnT .dropdown-item:hover span {
  color: white;
}
.cid-uw0ktcZxnT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw0ktcZxnT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw0ktcZxnT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw0ktcZxnT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw0ktcZxnT .nav-link {
  position: relative;
}
.cid-uw0ktcZxnT .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw0ktcZxnT .container {
    flex-wrap: wrap;
  }
}
.cid-uw0ktcZxnT .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw0ktcZxnT .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw0ktcZxnT .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw0ktcZxnT .dropdown-menu,
.cid-uw0ktcZxnT .navbar.opened {
  background: #000000 !important;
}
.cid-uw0ktcZxnT .nav-item:focus,
.cid-uw0ktcZxnT .nav-link:focus {
  outline: none;
}
.cid-uw0ktcZxnT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw0ktcZxnT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw0ktcZxnT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw0ktcZxnT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw0ktcZxnT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw0ktcZxnT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw0ktcZxnT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw0ktcZxnT .navbar.opened {
  transition: all 0.3s;
}
.cid-uw0ktcZxnT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw0ktcZxnT .navbar .navbar-logo img {
  width: auto;
}
.cid-uw0ktcZxnT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw0ktcZxnT .navbar.collapsed {
  justify-content: center;
}
.cid-uw0ktcZxnT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw0ktcZxnT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw0ktcZxnT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw0ktcZxnT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw0ktcZxnT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw0ktcZxnT .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-uw0ktcZxnT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw0ktcZxnT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw0ktcZxnT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw0ktcZxnT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw0ktcZxnT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw0ktcZxnT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw0ktcZxnT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw0ktcZxnT .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-uw0ktcZxnT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw0ktcZxnT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw0ktcZxnT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw0ktcZxnT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw0ktcZxnT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw0ktcZxnT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw0ktcZxnT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw0ktcZxnT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw0ktcZxnT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw0ktcZxnT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw0ktcZxnT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw0ktcZxnT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw0ktcZxnT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw0ktcZxnT .dropdown-item.active,
.cid-uw0ktcZxnT .dropdown-item:active {
  background-color: transparent;
}
.cid-uw0ktcZxnT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw0ktcZxnT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw0ktcZxnT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw0ktcZxnT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw0ktcZxnT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw0ktcZxnT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw0ktcZxnT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw0ktcZxnT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw0ktcZxnT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw0ktcZxnT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw0ktcZxnT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw0ktcZxnT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw0ktcZxnT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw0ktcZxnT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw0ktcZxnT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw0ktcZxnT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw0ktcZxnT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw0ktcZxnT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw0ktcZxnT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw0ktcZxnT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw0ktcZxnT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw0ktcZxnT .navbar {
    height: 70px;
  }
  .cid-uw0ktcZxnT .navbar.opened {
    height: auto;
  }
  .cid-uw0ktcZxnT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw0ktdMuci {
  background-image: url("../../../assets/images/ferrite-core-on-pcb-banner.webp");
}
.cid-uw0ktdMuci .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0ktdMuci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0ktdMuci .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw0ktdMuci .mbr-text,
.cid-uw0ktdMuci .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw0ktdMuci .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw0lBnK7xx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw0lBnK7xx img,
.cid-uw0lBnK7xx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw0lBnK7xx .item:focus,
.cid-uw0lBnK7xx span:focus {
  outline: none;
}
.cid-uw0lBnK7xx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw0lBnK7xx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw0lBnK7xx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw0lBnK7xx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw0lBnK7xx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw0lBnK7xx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw0lBnK7xx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw0lBnK7xx .mbr-section-title {
  color: #232323;
}
.cid-uw0lBnK7xx .mbr-text,
.cid-uw0lBnK7xx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw0lBnK7xx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw0lBnK7xx .item-subtitle {
  text-align: left;
}
.cid-uZWmBoeTYw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmBoeTYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmBoeTYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmBoeTYw .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmBoeTYw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNk8x7zKT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNk8x7zKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNk8x7zKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNk8x7zKT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNk8x7zKT .mbr-section-title {
  color: #ffffff;
}
.cid-uYNk7h01Py {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNk7h01Py .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNk7h01Py .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNk7h01Py .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNk7h01Py .number {
  color: #ffffff;
}
.cid-uYNk7h01Py .period {
  display: block;
}
.cid-uYNk7h01Py .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNk7h01Py .period {
    font-size: 0.8rem;
  }
}
.cid-uYNk7h01Py .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNk7h01Py .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNk7h01Py .mbr-section-title {
  color: #ffffff;
}
.cid-uYNk7h01Py .mbr-text {
  color: #ffffff;
}
.cid-uYNk7h01Py .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNk7h01Py .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNk7h01Py .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNk7h01Py .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw0ktgpuGI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw0ktgpuGI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0ktgpuGI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0ktgpuGI .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw0ktgpuGI .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw0ktgpuGI .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw0ktgpuGI .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw0ktgpuGI .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw0ktgpuGI .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw0ktgpuGI .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw0ktgpuGI .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw0ktgpuGI .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw0ktgpuGI [class^="socicon-"]:before,
.cid-uw0ktgpuGI [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw0ktgpuGI .mbr-section-title,
.cid-uw0ktgpuGI .mbr-social-likes {
  color: #ffffff;
}
.cid-uw0kth1BjZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw0kth1BjZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0kth1BjZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0kth1BjZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw0kth1BjZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw0kth1BjZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw0kth1BjZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw0kth1BjZ .mbr-text {
  color: #ffffff;
}
.cid-uw0kth1BjZ .card-title {
  color: #ffffff;
}
.cid-uw0kth1BjZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw0kth1BjZ .mbr-section-title {
  color: #ffffff;
}
.cid-uw0kth1BjZ .link {
  color: #4479d9;
}
.cid-uw0kthKylK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw0kthKylK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw0kthKylK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw0kthKylK .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw0kthKylK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw0kthKylK .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw0kthKylK .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw0kthKylK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw0kthKylK .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw1P93Poaa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw1P93Poaa nav.navbar {
  position: fixed;
}
.cid-uw1P93Poaa .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-uw1P93Poaa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw1P93Poaa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw1P93Poaa .dropdown-item:hover,
.cid-uw1P93Poaa .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw1P93Poaa .dropdown-item:hover span {
  color: white;
}
.cid-uw1P93Poaa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw1P93Poaa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw1P93Poaa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw1P93Poaa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw1P93Poaa .nav-link {
  position: relative;
}
.cid-uw1P93Poaa .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw1P93Poaa .container {
    flex-wrap: wrap;
  }
}
.cid-uw1P93Poaa .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw1P93Poaa .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw1P93Poaa .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw1P93Poaa .dropdown-menu,
.cid-uw1P93Poaa .navbar.opened {
  background: #000000 !important;
}
.cid-uw1P93Poaa .nav-item:focus,
.cid-uw1P93Poaa .nav-link:focus {
  outline: none;
}
.cid-uw1P93Poaa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw1P93Poaa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw1P93Poaa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw1P93Poaa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw1P93Poaa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw1P93Poaa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw1P93Poaa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw1P93Poaa .navbar.opened {
  transition: all 0.3s;
}
.cid-uw1P93Poaa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw1P93Poaa .navbar .navbar-logo img {
  width: auto;
}
.cid-uw1P93Poaa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw1P93Poaa .navbar.collapsed {
  justify-content: center;
}
.cid-uw1P93Poaa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw1P93Poaa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw1P93Poaa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw1P93Poaa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw1P93Poaa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw1P93Poaa .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-uw1P93Poaa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw1P93Poaa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw1P93Poaa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw1P93Poaa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw1P93Poaa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw1P93Poaa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw1P93Poaa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw1P93Poaa .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-uw1P93Poaa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw1P93Poaa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw1P93Poaa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw1P93Poaa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw1P93Poaa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw1P93Poaa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw1P93Poaa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw1P93Poaa .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw1P93Poaa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw1P93Poaa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw1P93Poaa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw1P93Poaa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw1P93Poaa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw1P93Poaa .dropdown-item.active,
.cid-uw1P93Poaa .dropdown-item:active {
  background-color: transparent;
}
.cid-uw1P93Poaa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw1P93Poaa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw1P93Poaa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw1P93Poaa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw1P93Poaa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw1P93Poaa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw1P93Poaa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw1P93Poaa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw1P93Poaa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw1P93Poaa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw1P93Poaa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw1P93Poaa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw1P93Poaa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw1P93Poaa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw1P93Poaa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw1P93Poaa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw1P93Poaa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw1P93Poaa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw1P93Poaa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw1P93Poaa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw1P93Poaa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw1P93Poaa .navbar {
    height: 70px;
  }
  .cid-uw1P93Poaa .navbar.opened {
    height: auto;
  }
  .cid-uw1P93Poaa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw1P94EfsU {
  background-image: url("../../../assets/images/inductor-on-pcb.webp");
}
.cid-uw1P94EfsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1P94EfsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1P94EfsU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw1P94EfsU .mbr-text,
.cid-uw1P94EfsU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw1P94EfsU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw1P95eOQN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw1P95eOQN img,
.cid-uw1P95eOQN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw1P95eOQN .item:focus,
.cid-uw1P95eOQN span:focus {
  outline: none;
}
.cid-uw1P95eOQN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw1P95eOQN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw1P95eOQN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw1P95eOQN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw1P95eOQN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw1P95eOQN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw1P95eOQN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw1P95eOQN .mbr-section-title {
  color: #232323;
}
.cid-uw1P95eOQN .mbr-text,
.cid-uw1P95eOQN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw1P95eOQN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw1P95eOQN .item-subtitle {
  text-align: left;
}
.cid-uZWmDFhBZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmDFhBZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmDFhBZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmDFhBZX .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmDFhBZX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNke6CJ34 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNke6CJ34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNke6CJ34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNke6CJ34 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNke6CJ34 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkcM9hmN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkcM9hmN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkcM9hmN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkcM9hmN .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkcM9hmN .number {
  color: #ffffff;
}
.cid-uYNkcM9hmN .period {
  display: block;
}
.cid-uYNkcM9hmN .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkcM9hmN .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkcM9hmN .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkcM9hmN .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkcM9hmN .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkcM9hmN .mbr-text {
  color: #ffffff;
}
.cid-uYNkcM9hmN .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkcM9hmN .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkcM9hmN .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkcM9hmN .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw1P96pX7t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw1P96pX7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1P96pX7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1P96pX7t .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw1P96pX7t .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw1P96pX7t .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw1P96pX7t .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw1P96pX7t .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw1P96pX7t .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw1P96pX7t .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw1P96pX7t .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw1P96pX7t .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw1P96pX7t [class^="socicon-"]:before,
.cid-uw1P96pX7t [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw1P96pX7t .mbr-section-title,
.cid-uw1P96pX7t .mbr-social-likes {
  color: #ffffff;
}
.cid-uw1P96VuGG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw1P96VuGG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1P96VuGG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1P96VuGG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw1P96VuGG .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw1P96VuGG .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw1P96VuGG .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw1P96VuGG .mbr-text {
  color: #ffffff;
}
.cid-uw1P96VuGG .card-title {
  color: #ffffff;
}
.cid-uw1P96VuGG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw1P96VuGG .mbr-section-title {
  color: #ffffff;
}
.cid-uw1P96VuGG .link {
  color: #4479d9;
}
.cid-uw1P97wzoE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw1P97wzoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1P97wzoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1P97wzoE .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw1P97wzoE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw1P97wzoE .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw1P97wzoE .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw1P97wzoE div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw1P97wzoE .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uw1QlEfe2A {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uw1QlEfe2A nav.navbar {
  position: fixed;
}
.cid-uw1QlEfe2A .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-uw1QlEfe2A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uw1QlEfe2A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uw1QlEfe2A .dropdown-item:hover,
.cid-uw1QlEfe2A .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uw1QlEfe2A .dropdown-item:hover span {
  color: white;
}
.cid-uw1QlEfe2A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uw1QlEfe2A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uw1QlEfe2A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uw1QlEfe2A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uw1QlEfe2A .nav-link {
  position: relative;
}
.cid-uw1QlEfe2A .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw1QlEfe2A .container {
    flex-wrap: wrap;
  }
}
.cid-uw1QlEfe2A .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uw1QlEfe2A .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uw1QlEfe2A .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uw1QlEfe2A .dropdown-menu,
.cid-uw1QlEfe2A .navbar.opened {
  background: #000000 !important;
}
.cid-uw1QlEfe2A .nav-item:focus,
.cid-uw1QlEfe2A .nav-link:focus {
  outline: none;
}
.cid-uw1QlEfe2A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uw1QlEfe2A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uw1QlEfe2A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uw1QlEfe2A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uw1QlEfe2A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uw1QlEfe2A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uw1QlEfe2A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uw1QlEfe2A .navbar.opened {
  transition: all 0.3s;
}
.cid-uw1QlEfe2A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uw1QlEfe2A .navbar .navbar-logo img {
  width: auto;
}
.cid-uw1QlEfe2A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uw1QlEfe2A .navbar.collapsed {
  justify-content: center;
}
.cid-uw1QlEfe2A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uw1QlEfe2A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uw1QlEfe2A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uw1QlEfe2A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uw1QlEfe2A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uw1QlEfe2A .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-uw1QlEfe2A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uw1QlEfe2A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uw1QlEfe2A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uw1QlEfe2A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uw1QlEfe2A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uw1QlEfe2A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uw1QlEfe2A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uw1QlEfe2A .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-uw1QlEfe2A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uw1QlEfe2A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uw1QlEfe2A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uw1QlEfe2A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uw1QlEfe2A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uw1QlEfe2A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uw1QlEfe2A .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uw1QlEfe2A .navbar.navbar-short {
  min-height: 60px;
}
.cid-uw1QlEfe2A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uw1QlEfe2A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uw1QlEfe2A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uw1QlEfe2A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uw1QlEfe2A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uw1QlEfe2A .dropdown-item.active,
.cid-uw1QlEfe2A .dropdown-item:active {
  background-color: transparent;
}
.cid-uw1QlEfe2A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uw1QlEfe2A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uw1QlEfe2A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uw1QlEfe2A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uw1QlEfe2A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uw1QlEfe2A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uw1QlEfe2A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uw1QlEfe2A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uw1QlEfe2A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uw1QlEfe2A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uw1QlEfe2A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uw1QlEfe2A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw1QlEfe2A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uw1QlEfe2A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uw1QlEfe2A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw1QlEfe2A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uw1QlEfe2A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uw1QlEfe2A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uw1QlEfe2A .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uw1QlEfe2A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uw1QlEfe2A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uw1QlEfe2A .navbar {
    height: 70px;
  }
  .cid-uw1QlEfe2A .navbar.opened {
    height: auto;
  }
  .cid-uw1QlEfe2A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw1QlF13eh {
  background-image: url("../../../assets/images/inductor-on-pcb.webp");
}
.cid-uw1QlF13eh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1QlF13eh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1QlF13eh .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uw1QlF13eh .mbr-text,
.cid-uw1QlF13eh .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uw1QlF13eh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uw1QlFAido {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw1QlFAido img,
.cid-uw1QlFAido .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uw1QlFAido .item:focus,
.cid-uw1QlFAido span:focus {
  outline: none;
}
.cid-uw1QlFAido .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uw1QlFAido .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uw1QlFAido .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uw1QlFAido .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uw1QlFAido .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uw1QlFAido .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uw1QlFAido .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uw1QlFAido .mbr-section-title {
  color: #232323;
}
.cid-uw1QlFAido .mbr-text,
.cid-uw1QlFAido .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw1QlFAido .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw1QlFAido .item-subtitle {
  text-align: left;
}
.cid-uZWmFSJlbr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZWmFSJlbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZWmFSJlbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZWmFSJlbr .mbr-section-title {
  color: #ffffff;
}
.cid-uZWmFSJlbr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkl0cGru {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNkl0cGru .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkl0cGru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkl0cGru .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNkl0cGru .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkjRh2uR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNkjRh2uR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNkjRh2uR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNkjRh2uR .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNkjRh2uR .number {
  color: #ffffff;
}
.cid-uYNkjRh2uR .period {
  display: block;
}
.cid-uYNkjRh2uR .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNkjRh2uR .period {
    font-size: 0.8rem;
  }
}
.cid-uYNkjRh2uR .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNkjRh2uR .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNkjRh2uR .mbr-section-title {
  color: #ffffff;
}
.cid-uYNkjRh2uR .mbr-text {
  color: #ffffff;
}
.cid-uYNkjRh2uR .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNkjRh2uR .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNkjRh2uR .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNkjRh2uR .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uw1QlGNnTF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uw1QlGNnTF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1QlGNnTF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1QlGNnTF .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uw1QlGNnTF .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uw1QlGNnTF .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uw1QlGNnTF .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uw1QlGNnTF .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uw1QlGNnTF .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uw1QlGNnTF .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uw1QlGNnTF .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uw1QlGNnTF .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uw1QlGNnTF [class^="socicon-"]:before,
.cid-uw1QlGNnTF [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uw1QlGNnTF .mbr-section-title,
.cid-uw1QlGNnTF .mbr-social-likes {
  color: #ffffff;
}
.cid-uw1QlHjUTN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uw1QlHjUTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1QlHjUTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1QlHjUTN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uw1QlHjUTN .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uw1QlHjUTN .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uw1QlHjUTN .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uw1QlHjUTN .mbr-text {
  color: #ffffff;
}
.cid-uw1QlHjUTN .card-title {
  color: #ffffff;
}
.cid-uw1QlHjUTN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw1QlHjUTN .mbr-section-title {
  color: #ffffff;
}
.cid-uw1QlHjUTN .link {
  color: #4479d9;
}
.cid-uw1QlHW2wh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uw1QlHW2wh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw1QlHW2wh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw1QlHW2wh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uw1QlHW2wh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uw1QlHW2wh .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uw1QlHW2wh .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uw1QlHW2wh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uw1QlHW2wh .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uy6ThqppOZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uy6ThqppOZ nav.navbar {
  position: fixed;
}
.cid-uy6ThqppOZ .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-uy6ThqppOZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uy6ThqppOZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uy6ThqppOZ .dropdown-item:hover,
.cid-uy6ThqppOZ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uy6ThqppOZ .dropdown-item:hover span {
  color: white;
}
.cid-uy6ThqppOZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uy6ThqppOZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uy6ThqppOZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uy6ThqppOZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uy6ThqppOZ .nav-link {
  position: relative;
}
.cid-uy6ThqppOZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uy6ThqppOZ .container {
    flex-wrap: wrap;
  }
}
.cid-uy6ThqppOZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uy6ThqppOZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uy6ThqppOZ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uy6ThqppOZ .dropdown-menu,
.cid-uy6ThqppOZ .navbar.opened {
  background: #000000 !important;
}
.cid-uy6ThqppOZ .nav-item:focus,
.cid-uy6ThqppOZ .nav-link:focus {
  outline: none;
}
.cid-uy6ThqppOZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uy6ThqppOZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uy6ThqppOZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uy6ThqppOZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uy6ThqppOZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uy6ThqppOZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uy6ThqppOZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uy6ThqppOZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uy6ThqppOZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uy6ThqppOZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uy6ThqppOZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uy6ThqppOZ .navbar.collapsed {
  justify-content: center;
}
.cid-uy6ThqppOZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uy6ThqppOZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uy6ThqppOZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uy6ThqppOZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uy6ThqppOZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uy6ThqppOZ .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-uy6ThqppOZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uy6ThqppOZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uy6ThqppOZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uy6ThqppOZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uy6ThqppOZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uy6ThqppOZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uy6ThqppOZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uy6ThqppOZ .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-uy6ThqppOZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uy6ThqppOZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uy6ThqppOZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uy6ThqppOZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uy6ThqppOZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uy6ThqppOZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uy6ThqppOZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uy6ThqppOZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uy6ThqppOZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uy6ThqppOZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uy6ThqppOZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uy6ThqppOZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uy6ThqppOZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uy6ThqppOZ .dropdown-item.active,
.cid-uy6ThqppOZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uy6ThqppOZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uy6ThqppOZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uy6ThqppOZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uy6ThqppOZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uy6ThqppOZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uy6ThqppOZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uy6ThqppOZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uy6ThqppOZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uy6ThqppOZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uy6ThqppOZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uy6ThqppOZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uy6ThqppOZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy6ThqppOZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uy6ThqppOZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uy6ThqppOZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy6ThqppOZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uy6ThqppOZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uy6ThqppOZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uy6ThqppOZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uy6ThqppOZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uy6ThqppOZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uy6ThqppOZ .navbar {
    height: 70px;
  }
  .cid-uy6ThqppOZ .navbar.opened {
    height: auto;
  }
  .cid-uy6ThqppOZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uy6ThrdQoq {
  background-image: url("../../../assets/images/apocalypse-scorpion-pepper-plant.webp");
}
.cid-uy6ThrdQoq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6ThrdQoq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6ThrdQoq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uy6ThrdQoq .mbr-text,
.cid-uy6ThrdQoq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uy6ThrdQoq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uy6ThuZ0o0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uy6ThuZ0o0 img,
.cid-uy6ThuZ0o0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uy6ThuZ0o0 .item:focus,
.cid-uy6ThuZ0o0 span:focus {
  outline: none;
}
.cid-uy6ThuZ0o0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uy6ThuZ0o0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uy6ThuZ0o0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uy6ThuZ0o0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uy6ThuZ0o0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uy6ThuZ0o0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uy6ThuZ0o0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uy6ThuZ0o0 .mbr-section-title {
  color: #232323;
}
.cid-uy6ThuZ0o0 .mbr-text,
.cid-uy6ThuZ0o0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uy6ThuZ0o0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uy6ThuZ0o0 .item-subtitle {
  text-align: left;
}
.cid-uZYftDI5Ov {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYftDI5Ov .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYftDI5Ov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYftDI5Ov .mbr-section-title {
  color: #ffffff;
}
.cid-uZYftDI5Ov .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqBFLbTq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNqBFLbTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqBFLbTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqBFLbTq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNqBFLbTq .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqAKBMxB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNqAKBMxB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNqAKBMxB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNqAKBMxB .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNqAKBMxB .number {
  color: #ffffff;
}
.cid-uYNqAKBMxB .period {
  display: block;
}
.cid-uYNqAKBMxB .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNqAKBMxB .period {
    font-size: 0.8rem;
  }
}
.cid-uYNqAKBMxB .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNqAKBMxB .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNqAKBMxB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNqAKBMxB .mbr-text {
  color: #ffffff;
}
.cid-uYNqAKBMxB .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNqAKBMxB .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNqAKBMxB .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNqAKBMxB .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uy6Thwx38c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uy6Thwx38c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6Thwx38c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6Thwx38c .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uy6Thwx38c .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uy6Thwx38c .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uy6Thwx38c .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uy6Thwx38c .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uy6Thwx38c .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uy6Thwx38c .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uy6Thwx38c .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uy6Thwx38c .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uy6Thwx38c [class^="socicon-"]:before,
.cid-uy6Thwx38c [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uy6Thwx38c .mbr-section-title,
.cid-uy6Thwx38c .mbr-social-likes {
  color: #ffffff;
}
.cid-uy6ThxgdlG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uy6ThxgdlG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6ThxgdlG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6ThxgdlG .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uy6ThxgdlG .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uy6ThxgdlG .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uy6ThxgdlG .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uy6ThxgdlG .mbr-text {
  color: #ffffff;
}
.cid-uy6ThxgdlG .card-title {
  color: #ffffff;
}
.cid-uy6ThxgdlG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy6ThxgdlG .mbr-section-title {
  color: #ffffff;
}
.cid-uy6ThxgdlG .link {
  color: #4479d9;
}
.cid-uy6Thy4STS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uy6Thy4STS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uy6Thy4STS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uy6Thy4STS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uy6Thy4STS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uy6Thy4STS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uy6Thy4STS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uy6Thy4STS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uy6Thy4STS .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uAjQf9odGo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uAjQf9odGo nav.navbar {
  position: fixed;
}
.cid-uAjQf9odGo .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-uAjQf9odGo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAjQf9odGo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAjQf9odGo .dropdown-item:hover,
.cid-uAjQf9odGo .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uAjQf9odGo .dropdown-item:hover span {
  color: white;
}
.cid-uAjQf9odGo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAjQf9odGo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAjQf9odGo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAjQf9odGo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAjQf9odGo .nav-link {
  position: relative;
}
.cid-uAjQf9odGo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAjQf9odGo .container {
    flex-wrap: wrap;
  }
}
.cid-uAjQf9odGo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAjQf9odGo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uAjQf9odGo .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAjQf9odGo .dropdown-menu,
.cid-uAjQf9odGo .navbar.opened {
  background: #000000 !important;
}
.cid-uAjQf9odGo .nav-item:focus,
.cid-uAjQf9odGo .nav-link:focus {
  outline: none;
}
.cid-uAjQf9odGo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAjQf9odGo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAjQf9odGo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAjQf9odGo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAjQf9odGo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAjQf9odGo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAjQf9odGo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uAjQf9odGo .navbar.opened {
  transition: all 0.3s;
}
.cid-uAjQf9odGo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAjQf9odGo .navbar .navbar-logo img {
  width: auto;
}
.cid-uAjQf9odGo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAjQf9odGo .navbar.collapsed {
  justify-content: center;
}
.cid-uAjQf9odGo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAjQf9odGo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAjQf9odGo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uAjQf9odGo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAjQf9odGo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAjQf9odGo .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-uAjQf9odGo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAjQf9odGo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAjQf9odGo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAjQf9odGo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAjQf9odGo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAjQf9odGo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAjQf9odGo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAjQf9odGo .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-uAjQf9odGo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAjQf9odGo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAjQf9odGo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAjQf9odGo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAjQf9odGo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAjQf9odGo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAjQf9odGo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAjQf9odGo .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAjQf9odGo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAjQf9odGo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAjQf9odGo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAjQf9odGo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAjQf9odGo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAjQf9odGo .dropdown-item.active,
.cid-uAjQf9odGo .dropdown-item:active {
  background-color: transparent;
}
.cid-uAjQf9odGo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAjQf9odGo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAjQf9odGo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAjQf9odGo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uAjQf9odGo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAjQf9odGo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAjQf9odGo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAjQf9odGo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAjQf9odGo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAjQf9odGo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAjQf9odGo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAjQf9odGo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAjQf9odGo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAjQf9odGo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAjQf9odGo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAjQf9odGo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAjQf9odGo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAjQf9odGo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAjQf9odGo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAjQf9odGo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAjQf9odGo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAjQf9odGo .navbar {
    height: 70px;
  }
  .cid-uAjQf9odGo .navbar.opened {
    height: auto;
  }
  .cid-uAjQf9odGo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAjQfah1xj {
  background-image: url("../../../assets/images/20241129-133656-hdr-2000x2667.webp");
}
.cid-uAjQfah1xj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfah1xj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfah1xj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uAjQfah1xj .mbr-text,
.cid-uAjQfah1xj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uAjQfah1xj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAsEbIkFbR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAsEbIkFbR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAsEbIkFbR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAsEbIkFbR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjRYHos3M {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjRYHos3M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjRYHos3M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjRYHos3M .video-wrapper iframe {
  width: 100%;
}
.cid-uAjRYHos3M .mbr-section-title,
.cid-uAjRYHos3M .mbr-section-subtitle,
.cid-uAjRYHos3M .mbr-text {
  text-align: center;
}
.cid-uAjRYHos3M .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjRYHos3M .mbr-section-title {
  color: #ffffff;
}
.cid-uAjT9ynIKX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjT9ynIKX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjT9ynIKX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjT9ynIKX .video-wrapper iframe {
  width: 100%;
}
.cid-uAjT9ynIKX .mbr-section-title,
.cid-uAjT9ynIKX .mbr-section-subtitle,
.cid-uAjT9ynIKX .mbr-text {
  text-align: center;
}
.cid-uAjT9ynIKX .mbr-section-title {
  color: #ffffff;
}
.cid-uAjT9ynIKX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjTaodp6d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjTaodp6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjTaodp6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjTaodp6d .video-wrapper iframe {
  width: 100%;
}
.cid-uAjTaodp6d .mbr-section-title,
.cid-uAjTaodp6d .mbr-section-subtitle,
.cid-uAjTaodp6d .mbr-text {
  text-align: center;
}
.cid-uAjTaodp6d .mbr-section-title {
  color: #ffffff;
}
.cid-uAjTaodp6d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjWckmi6y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjWckmi6y img,
.cid-uAjWckmi6y .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAjWckmi6y .item:focus,
.cid-uAjWckmi6y span:focus {
  outline: none;
}
.cid-uAjWckmi6y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAjWckmi6y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAjWckmi6y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAjWckmi6y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAjWckmi6y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAjWckmi6y .mbr-section-title {
  color: #232323;
}
.cid-uAjWckmi6y .mbr-text,
.cid-uAjWckmi6y .mbr-section-btn {
  text-align: left;
}
.cid-uAjWckmi6y .item-title {
  text-align: left;
}
.cid-uAjWckmi6y .item-subtitle {
  text-align: center;
}
.cid-uAvzxh9cT8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAvzxh9cT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAvzxh9cT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAvzxh9cT8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAvzxh9cT8 .mbr-section-title {
  color: #ffffff;
}
.cid-v2KHLnqZhI {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-v2KHLnqZhI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2KHLnqZhI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2KHLnqZhI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2KHLnqZhI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v2KHLnqZhI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2KHLnqZhI .mbr-description {
  color: #ffffff;
}
.cid-v2KHLnqZhI .mbr-text {
  color: #ffffff;
}
.cid-v2KHLnqZhI .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPvGcsuH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dPvGcsuH img,
.cid-v1dPvGcsuH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dPvGcsuH .item:focus,
.cid-v1dPvGcsuH span:focus {
  outline: none;
}
.cid-v1dPvGcsuH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dPvGcsuH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dPvGcsuH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dPvGcsuH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dPvGcsuH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dPvGcsuH .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPvGcsuH .mbr-text,
.cid-v1dPvGcsuH .mbr-section-btn {
  text-align: left;
}
.cid-v1dPvGcsuH .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dPvGcsuH .item-subtitle {
  text-align: center;
}
.cid-v1dPvGcsuH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjQfcYfp8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjQfcYfp8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfcYfp8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfcYfp8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjQfcYfp8 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPwBc2Zs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dPwBc2Zs img,
.cid-v1dPwBc2Zs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dPwBc2Zs .item:focus,
.cid-v1dPwBc2Zs span:focus {
  outline: none;
}
.cid-v1dPwBc2Zs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dPwBc2Zs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dPwBc2Zs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dPwBc2Zs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dPwBc2Zs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dPwBc2Zs .mbr-section-title {
  color: #232323;
}
.cid-v1dPwBc2Zs .mbr-text,
.cid-v1dPwBc2Zs .mbr-section-btn {
  text-align: left;
}
.cid-v1dPwBc2Zs .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dPwBc2Zs .item-subtitle {
  text-align: center;
}
.cid-uAjQfern46 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjQfern46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfern46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfern46 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjQfern46 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPxPN8Sn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dPxPN8Sn img,
.cid-v1dPxPN8Sn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dPxPN8Sn .item:focus,
.cid-v1dPxPN8Sn span:focus {
  outline: none;
}
.cid-v1dPxPN8Sn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dPxPN8Sn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dPxPN8Sn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dPxPN8Sn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dPxPN8Sn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dPxPN8Sn .mbr-section-title {
  color: #232323;
}
.cid-v1dPxPN8Sn .mbr-text,
.cid-v1dPxPN8Sn .mbr-section-btn {
  text-align: left;
}
.cid-v1dPxPN8Sn .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dPxPN8Sn .item-subtitle {
  text-align: center;
}
.cid-uAjQffXF3F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjQffXF3F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQffXF3F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQffXF3F .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPz4fEZs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dPz4fEZs img,
.cid-v1dPz4fEZs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dPz4fEZs .item:focus,
.cid-v1dPz4fEZs span:focus {
  outline: none;
}
.cid-v1dPz4fEZs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dPz4fEZs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dPz4fEZs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dPz4fEZs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dPz4fEZs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dPz4fEZs .mbr-section-title {
  color: #232323;
}
.cid-v1dPz4fEZs .mbr-text,
.cid-v1dPz4fEZs .mbr-section-btn {
  text-align: left;
}
.cid-v1dPz4fEZs .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dPz4fEZs .item-subtitle {
  text-align: center;
}
.cid-uAjQfhAL7K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjQfhAL7K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfhAL7K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfhAL7K .mbr-section-title {
  color: #ffffff;
}
.cid-v1dPzFHNwc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dPzFHNwc img,
.cid-v1dPzFHNwc .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dPzFHNwc .item:focus,
.cid-v1dPzFHNwc span:focus {
  outline: none;
}
.cid-v1dPzFHNwc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dPzFHNwc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dPzFHNwc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dPzFHNwc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dPzFHNwc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dPzFHNwc .mbr-section-title {
  color: #232323;
}
.cid-v1dPzFHNwc .mbr-text,
.cid-v1dPzFHNwc .mbr-section-btn {
  text-align: left;
}
.cid-v1dPzFHNwc .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dPzFHNwc .item-subtitle {
  text-align: center;
}
.cid-uAjQfijmzZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uAjQfijmzZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfijmzZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfijmzZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjQfijmzZ .mbr-section-title {
  color: #ffffff;
}
.cid-uYN2igpGoP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN2igpGoP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN2igpGoP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN2igpGoP .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN2igpGoP .number {
  color: #ffffff;
}
.cid-uYN2igpGoP .period {
  display: block;
}
.cid-uYN2igpGoP .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN2igpGoP .period {
    font-size: 0.8rem;
  }
}
.cid-uYN2igpGoP .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN2igpGoP .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN2igpGoP .mbr-section-title {
  color: #ffffff;
}
.cid-uYN2igpGoP .mbr-text {
  color: #ffffff;
}
.cid-uYN2igpGoP .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN2igpGoP .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN2igpGoP .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN2igpGoP .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAjQfjY2Mo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uAjQfjY2Mo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfjY2Mo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfjY2Mo .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uAjQfjY2Mo .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uAjQfjY2Mo .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uAjQfjY2Mo .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uAjQfjY2Mo .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uAjQfjY2Mo .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uAjQfjY2Mo .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uAjQfjY2Mo .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uAjQfjY2Mo .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uAjQfjY2Mo [class^="socicon-"]:before,
.cid-uAjQfjY2Mo [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uAjQfjY2Mo .mbr-section-title,
.cid-uAjQfjY2Mo .mbr-social-likes {
  color: #ffffff;
}
.cid-uAjQfkKxNE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAjQfkKxNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQfkKxNE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQfkKxNE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uAjQfkKxNE .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uAjQfkKxNE .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAjQfkKxNE .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uAjQfkKxNE .mbr-text {
  color: #ffffff;
}
.cid-uAjQfkKxNE .card-title {
  color: #ffffff;
}
.cid-uAjQfkKxNE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAjQfkKxNE .mbr-section-title {
  color: #ffffff;
}
.cid-uAjQfkKxNE .link {
  color: #4479d9;
}
.cid-uAjQflDHhR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uAjQflDHhR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAjQflDHhR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAjQflDHhR .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uAjQflDHhR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAjQflDHhR .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAjQflDHhR .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAjQflDHhR div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAjQflDHhR .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v17StqHbbQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v17StqHbbQ img,
.cid-v17StqHbbQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v17StqHbbQ .item:focus,
.cid-v17StqHbbQ span:focus {
  outline: none;
}
.cid-v17StqHbbQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v17StqHbbQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v17StqHbbQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17StqHbbQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v17StqHbbQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v17StqHbbQ .mbr-section-title {
  color: #232323;
}
.cid-v17StqHbbQ .mbr-text,
.cid-v17StqHbbQ .mbr-section-btn {
  text-align: left;
}
.cid-v17StqHbbQ .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v17StqHbbQ .item-subtitle {
  text-align: center;
}
.cid-uDkPBicEyJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uDkPBicEyJ nav.navbar {
  position: fixed;
}
.cid-uDkPBicEyJ .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-uDkPBicEyJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDkPBicEyJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDkPBicEyJ .dropdown-item:hover,
.cid-uDkPBicEyJ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uDkPBicEyJ .dropdown-item:hover span {
  color: white;
}
.cid-uDkPBicEyJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDkPBicEyJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDkPBicEyJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDkPBicEyJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDkPBicEyJ .nav-link {
  position: relative;
}
.cid-uDkPBicEyJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uDkPBicEyJ .container {
    flex-wrap: wrap;
  }
}
.cid-uDkPBicEyJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uDkPBicEyJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uDkPBicEyJ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDkPBicEyJ .dropdown-menu,
.cid-uDkPBicEyJ .navbar.opened {
  background: #000000 !important;
}
.cid-uDkPBicEyJ .nav-item:focus,
.cid-uDkPBicEyJ .nav-link:focus {
  outline: none;
}
.cid-uDkPBicEyJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDkPBicEyJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDkPBicEyJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDkPBicEyJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDkPBicEyJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDkPBicEyJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDkPBicEyJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uDkPBicEyJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uDkPBicEyJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDkPBicEyJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uDkPBicEyJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDkPBicEyJ .navbar.collapsed {
  justify-content: center;
}
.cid-uDkPBicEyJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDkPBicEyJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDkPBicEyJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uDkPBicEyJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDkPBicEyJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDkPBicEyJ .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-uDkPBicEyJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDkPBicEyJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDkPBicEyJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDkPBicEyJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDkPBicEyJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDkPBicEyJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDkPBicEyJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDkPBicEyJ .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-uDkPBicEyJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDkPBicEyJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDkPBicEyJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDkPBicEyJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDkPBicEyJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDkPBicEyJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uDkPBicEyJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uDkPBicEyJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDkPBicEyJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDkPBicEyJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDkPBicEyJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDkPBicEyJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDkPBicEyJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDkPBicEyJ .dropdown-item.active,
.cid-uDkPBicEyJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uDkPBicEyJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDkPBicEyJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDkPBicEyJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDkPBicEyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uDkPBicEyJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDkPBicEyJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDkPBicEyJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDkPBicEyJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDkPBicEyJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDkPBicEyJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uDkPBicEyJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDkPBicEyJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkPBicEyJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDkPBicEyJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDkPBicEyJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkPBicEyJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDkPBicEyJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDkPBicEyJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDkPBicEyJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDkPBicEyJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDkPBicEyJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDkPBicEyJ .navbar {
    height: 70px;
  }
  .cid-uDkPBicEyJ .navbar.opened {
    height: auto;
  }
  .cid-uDkPBicEyJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDkPBj2mdH {
  background-image: url("../../../assets/images/20220606-71820-2000x1500.webp");
}
.cid-uDkPBj2mdH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBj2mdH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBj2mdH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uDkPBj2mdH .mbr-text,
.cid-uDkPBj2mdH .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uDkPBj2mdH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDkRaxGUQx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkRaxGUQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkRaxGUQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkRaxGUQx .mbr-section-title {
  color: #ffffff;
}
.cid-uDkRaxGUQx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkTnHziVM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkTnHziVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkTnHziVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkTnHziVM .mbr-section-title {
  color: #ffffff;
}
.cid-uDkTnHziVM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1T6cghbFW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1T6cghbFW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1T6cghbFW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1T6cghbFW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1SZzLtfBQ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-v1SZzLtfBQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v1SZzLtfBQ LABEL {
  color: #ffffff;
}
.cid-v1SZzLtfBQ H4 {
  color: #ffffff;
}
.cid-v1dOAhu42O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOAhu42O img,
.cid-v1dOAhu42O .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOAhu42O .item:focus,
.cid-v1dOAhu42O span:focus {
  outline: none;
}
.cid-v1dOAhu42O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOAhu42O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOAhu42O .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOAhu42O .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOAhu42O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOAhu42O .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOAhu42O .mbr-text,
.cid-v1dOAhu42O .mbr-section-btn {
  text-align: left;
}
.cid-v1dOAhu42O .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOAhu42O .item-subtitle {
  text-align: center;
}
.cid-v1dOAhu42O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkPBlEE2r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkPBlEE2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBlEE2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBlEE2r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkPBlEE2r .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOBpG3ym {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOBpG3ym img,
.cid-v1dOBpG3ym .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOBpG3ym .item:focus,
.cid-v1dOBpG3ym span:focus {
  outline: none;
}
.cid-v1dOBpG3ym .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOBpG3ym .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOBpG3ym .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOBpG3ym .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOBpG3ym .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOBpG3ym .mbr-section-title {
  color: #232323;
}
.cid-v1dOBpG3ym .mbr-text,
.cid-v1dOBpG3ym .mbr-section-btn {
  text-align: left;
}
.cid-v1dOBpG3ym .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOBpG3ym .item-subtitle {
  text-align: center;
}
.cid-uDkPBnchQI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkPBnchQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBnchQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBnchQI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkPBnchQI .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOCe0zD7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOCe0zD7 img,
.cid-v1dOCe0zD7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOCe0zD7 .item:focus,
.cid-v1dOCe0zD7 span:focus {
  outline: none;
}
.cid-v1dOCe0zD7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOCe0zD7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOCe0zD7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOCe0zD7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOCe0zD7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOCe0zD7 .mbr-section-title {
  color: #232323;
}
.cid-v1dOCe0zD7 .mbr-text,
.cid-v1dOCe0zD7 .mbr-section-btn {
  text-align: left;
}
.cid-v1dOCe0zD7 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOCe0zD7 .item-subtitle {
  text-align: center;
}
.cid-uDkPBoMl9z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkPBoMl9z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBoMl9z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBoMl9z .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOD2oaG9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOD2oaG9 img,
.cid-v1dOD2oaG9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOD2oaG9 .item:focus,
.cid-v1dOD2oaG9 span:focus {
  outline: none;
}
.cid-v1dOD2oaG9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOD2oaG9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOD2oaG9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOD2oaG9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOD2oaG9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOD2oaG9 .mbr-section-title {
  color: #232323;
}
.cid-v1dOD2oaG9 .mbr-text,
.cid-v1dOD2oaG9 .mbr-section-btn {
  text-align: left;
}
.cid-v1dOD2oaG9 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOD2oaG9 .item-subtitle {
  text-align: center;
}
.cid-uDkPBqrdmH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkPBqrdmH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBqrdmH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBqrdmH .mbr-section-title {
  color: #ffffff;
}
.cid-v1dODCzJbI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dODCzJbI img,
.cid-v1dODCzJbI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dODCzJbI .item:focus,
.cid-v1dODCzJbI span:focus {
  outline: none;
}
.cid-v1dODCzJbI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dODCzJbI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dODCzJbI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dODCzJbI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dODCzJbI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dODCzJbI .mbr-section-title {
  color: #232323;
}
.cid-v1dODCzJbI .mbr-text,
.cid-v1dODCzJbI .mbr-section-btn {
  text-align: left;
}
.cid-v1dODCzJbI .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dODCzJbI .item-subtitle {
  text-align: center;
}
.cid-uDkPBrcIHX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uDkPBrcIHX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBrcIHX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBrcIHX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkPBrcIHX .mbr-section-title {
  color: #ffffff;
}
.cid-uYN1PE4Mc9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN1PE4Mc9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN1PE4Mc9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN1PE4Mc9 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN1PE4Mc9 .number {
  color: #ffffff;
}
.cid-uYN1PE4Mc9 .period {
  display: block;
}
.cid-uYN1PE4Mc9 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN1PE4Mc9 .period {
    font-size: 0.8rem;
  }
}
.cid-uYN1PE4Mc9 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN1PE4Mc9 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN1PE4Mc9 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN1PE4Mc9 .mbr-text {
  color: #ffffff;
}
.cid-uYN1PE4Mc9 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN1PE4Mc9 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN1PE4Mc9 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN1PE4Mc9 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uDkPBsS0zp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uDkPBsS0zp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBsS0zp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBsS0zp .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uDkPBsS0zp .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uDkPBsS0zp .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uDkPBsS0zp .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uDkPBsS0zp .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uDkPBsS0zp .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uDkPBsS0zp .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uDkPBsS0zp .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uDkPBsS0zp .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uDkPBsS0zp [class^="socicon-"]:before,
.cid-uDkPBsS0zp [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uDkPBsS0zp .mbr-section-title,
.cid-uDkPBsS0zp .mbr-social-likes {
  color: #ffffff;
}
.cid-uDkPBtJ1Zd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uDkPBtJ1Zd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBtJ1Zd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBtJ1Zd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uDkPBtJ1Zd .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uDkPBtJ1Zd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDkPBtJ1Zd .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uDkPBtJ1Zd .mbr-text {
  color: #ffffff;
}
.cid-uDkPBtJ1Zd .card-title {
  color: #ffffff;
}
.cid-uDkPBtJ1Zd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDkPBtJ1Zd .mbr-section-title {
  color: #ffffff;
}
.cid-uDkPBtJ1Zd .link {
  color: #4479d9;
}
.cid-uDkPBuGVfu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uDkPBuGVfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDkPBuGVfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDkPBuGVfu .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uDkPBuGVfu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDkPBuGVfu .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uDkPBuGVfu .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uDkPBuGVfu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uDkPBuGVfu .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uEClnuS4SS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uEClnuS4SS nav.navbar {
  position: fixed;
}
.cid-uEClnuS4SS .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-uEClnuS4SS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uEClnuS4SS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uEClnuS4SS .dropdown-item:hover,
.cid-uEClnuS4SS .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uEClnuS4SS .dropdown-item:hover span {
  color: white;
}
.cid-uEClnuS4SS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uEClnuS4SS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uEClnuS4SS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uEClnuS4SS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uEClnuS4SS .nav-link {
  position: relative;
}
.cid-uEClnuS4SS .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uEClnuS4SS .container {
    flex-wrap: wrap;
  }
}
.cid-uEClnuS4SS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uEClnuS4SS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uEClnuS4SS .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uEClnuS4SS .dropdown-menu,
.cid-uEClnuS4SS .navbar.opened {
  background: #000000 !important;
}
.cid-uEClnuS4SS .nav-item:focus,
.cid-uEClnuS4SS .nav-link:focus {
  outline: none;
}
.cid-uEClnuS4SS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uEClnuS4SS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uEClnuS4SS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uEClnuS4SS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uEClnuS4SS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uEClnuS4SS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uEClnuS4SS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uEClnuS4SS .navbar.opened {
  transition: all 0.3s;
}
.cid-uEClnuS4SS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uEClnuS4SS .navbar .navbar-logo img {
  width: auto;
}
.cid-uEClnuS4SS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uEClnuS4SS .navbar.collapsed {
  justify-content: center;
}
.cid-uEClnuS4SS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uEClnuS4SS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uEClnuS4SS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uEClnuS4SS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uEClnuS4SS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uEClnuS4SS .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-uEClnuS4SS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uEClnuS4SS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uEClnuS4SS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uEClnuS4SS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uEClnuS4SS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uEClnuS4SS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uEClnuS4SS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uEClnuS4SS .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-uEClnuS4SS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uEClnuS4SS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uEClnuS4SS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uEClnuS4SS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uEClnuS4SS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uEClnuS4SS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uEClnuS4SS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uEClnuS4SS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uEClnuS4SS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uEClnuS4SS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uEClnuS4SS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uEClnuS4SS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uEClnuS4SS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uEClnuS4SS .dropdown-item.active,
.cid-uEClnuS4SS .dropdown-item:active {
  background-color: transparent;
}
.cid-uEClnuS4SS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uEClnuS4SS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uEClnuS4SS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uEClnuS4SS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uEClnuS4SS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uEClnuS4SS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uEClnuS4SS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uEClnuS4SS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uEClnuS4SS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uEClnuS4SS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uEClnuS4SS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uEClnuS4SS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEClnuS4SS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uEClnuS4SS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uEClnuS4SS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEClnuS4SS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uEClnuS4SS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uEClnuS4SS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uEClnuS4SS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uEClnuS4SS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uEClnuS4SS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uEClnuS4SS .navbar {
    height: 70px;
  }
  .cid-uEClnuS4SS .navbar.opened {
    height: auto;
  }
  .cid-uEClnuS4SS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uEClnvHRld {
  background-image: url("../../../assets/images/20220606-71820-2000x1500.webp");
}
.cid-uEClnvHRld .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnvHRld .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnvHRld .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uEClnvHRld .mbr-text,
.cid-uEClnvHRld .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uEClnvHRld .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vb7BouCPej {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vb7BouCPej .mbr-fallback-image.disabled {
  display: none;
}
.cid-vb7BouCPej .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vb7BouCPej .mbr-section-title {
  color: #ffffff;
}
.cid-vb7BouCPej .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFkON0plOv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFkON0plOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFkON0plOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFkON0plOv .mbr-section-title {
  color: #ffffff;
}
.cid-uFkON0plOv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uECpLUmrEL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uECpLUmrEL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECpLUmrEL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uECpLUmrEL .mbr-section-title {
  color: #ffffff;
}
.cid-uECpLUmrEL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uECA8QRCYH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uECA8QRCYH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECA8QRCYH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uECA8QRCYH .mbr-section-title {
  color: #ffffff;
}
.cid-uECA8QRCYH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uECC0V4eu9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uECC0V4eu9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uECC0V4eu9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uECC0V4eu9 .mbr-section-title {
  color: #ffffff;
}
.cid-uECC0V4eu9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uECFKusG5e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uECFKusG5e img,
.cid-uECFKusG5e .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uECFKusG5e .item:focus,
.cid-uECFKusG5e span:focus {
  outline: none;
}
.cid-uECFKusG5e .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uECFKusG5e .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uECFKusG5e .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uECFKusG5e .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uECFKusG5e .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uECFKusG5e .mbr-section-title {
  color: #ffffff;
}
.cid-uECFKusG5e .mbr-text,
.cid-uECFKusG5e .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uECFKusG5e .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uECFKusG5e .item-subtitle {
  text-align: center;
}
.cid-uECFKusG5e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uECIqd8TlS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uECIqd8TlS img,
.cid-uECIqd8TlS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uECIqd8TlS .item:focus,
.cid-uECIqd8TlS span:focus {
  outline: none;
}
.cid-uECIqd8TlS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uECIqd8TlS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uECIqd8TlS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uECIqd8TlS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uECIqd8TlS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uECIqd8TlS .mbr-section-title {
  color: #ffffff;
}
.cid-uECIqd8TlS .mbr-text,
.cid-uECIqd8TlS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uECIqd8TlS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uECIqd8TlS .item-subtitle {
  text-align: center;
}
.cid-uECIqd8TlS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFkysWmeZc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFkysWmeZc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFkysWmeZc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFkysWmeZc .mbr-section-title {
  color: #ffffff;
}
.cid-uFkysWmeZc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFkK8WFPAM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFkK8WFPAM img,
.cid-uFkK8WFPAM .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uFkK8WFPAM .item:focus,
.cid-uFkK8WFPAM span:focus {
  outline: none;
}
.cid-uFkK8WFPAM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFkK8WFPAM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFkK8WFPAM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFkK8WFPAM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFkK8WFPAM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFkK8WFPAM .mbr-section-title {
  color: #232323;
}
.cid-uFkK8WFPAM .mbr-text,
.cid-uFkK8WFPAM .mbr-section-btn {
  text-align: left;
}
.cid-uFkK8WFPAM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uFkK8WFPAM .item-subtitle {
  text-align: center;
}
.cid-uEEN2lxwja {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEEN2lxwja .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEEN2lxwja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEEN2lxwja .mbr-section-title {
  color: #ffffff;
}
.cid-uEEN2lxwja .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFkwV6iqlt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFkwV6iqlt img,
.cid-uFkwV6iqlt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uFkwV6iqlt .item:focus,
.cid-uFkwV6iqlt span:focus {
  outline: none;
}
.cid-uFkwV6iqlt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFkwV6iqlt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFkwV6iqlt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFkwV6iqlt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFkwV6iqlt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFkwV6iqlt .mbr-section-title {
  color: #ffffff;
}
.cid-uFkwV6iqlt .mbr-text,
.cid-uFkwV6iqlt .mbr-section-btn {
  text-align: left;
}
.cid-uFkwV6iqlt .item-title {
  text-align: left;
}
.cid-uFkwV6iqlt .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uEEVGjTjos {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEEVGjTjos .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEEVGjTjos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEEVGjTjos .mbr-section-title {
  color: #ffffff;
}
.cid-uEEVGjTjos .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqxT0dktm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqxT0dktm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqxT0dktm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqxT0dktm .mbr-section-title {
  color: #ffffff;
}
.cid-uFqxT0dktm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqCV5g8wb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqCV5g8wb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqCV5g8wb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqCV5g8wb .mbr-section-title {
  color: #ffffff;
}
.cid-uFqCV5g8wb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqCXBCBGu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqCXBCBGu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqCXBCBGu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqCXBCBGu .mbr-section-title {
  color: #ffffff;
}
.cid-uFqCXBCBGu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqCZpjNn7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqCZpjNn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqCZpjNn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqCZpjNn7 .mbr-section-title {
  color: #ffffff;
}
.cid-uFqCZpjNn7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqD1tjE7b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqD1tjE7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqD1tjE7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqD1tjE7b .mbr-section-title {
  color: #ffffff;
}
.cid-uFqD1tjE7b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqD45mnzL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqD45mnzL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqD45mnzL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqD45mnzL .mbr-section-title {
  color: #ffffff;
}
.cid-uFqD45mnzL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqD604OKU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqD604OKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqD604OKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqD604OKU .mbr-section-title {
  color: #ffffff;
}
.cid-uFqD604OKU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqD7qXbEG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqD7qXbEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqD7qXbEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqD7qXbEG .mbr-section-title {
  color: #ffffff;
}
.cid-uFqD7qXbEG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqD9pNYfN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqD9pNYfN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqD9pNYfN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqD9pNYfN .mbr-section-title {
  color: #ffffff;
}
.cid-uFqD9pNYfN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqFinsPCt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqFinsPCt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqFinsPCt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqFinsPCt .mbr-section-title {
  color: #ffffff;
}
.cid-uFqFinsPCt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqFk5UfY3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqFk5UfY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqFk5UfY3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqFk5UfY3 .mbr-section-title {
  color: #ffffff;
}
.cid-uFqFk5UfY3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFqFmmtvMY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uFqFmmtvMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFqFmmtvMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFqFmmtvMY .mbr-section-title {
  color: #ffffff;
}
.cid-uFqFmmtvMY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHAOITF49C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uHAOITF49C img,
.cid-uHAOITF49C .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uHAOITF49C .item:focus,
.cid-uHAOITF49C span:focus {
  outline: none;
}
.cid-uHAOITF49C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uHAOITF49C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHAOITF49C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uHAOITF49C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uHAOITF49C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHAOITF49C .mbr-section-title {
  color: #232323;
}
.cid-uHAOITF49C .mbr-text,
.cid-uHAOITF49C .mbr-section-btn {
  text-align: left;
}
.cid-uHAOITF49C .item-title {
  text-align: left;
}
.cid-uHAOITF49C .item-subtitle {
  text-align: center;
}
.cid-v1dOQEatq3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOQEatq3 img,
.cid-v1dOQEatq3 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOQEatq3 .item:focus,
.cid-v1dOQEatq3 span:focus {
  outline: none;
}
.cid-v1dOQEatq3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOQEatq3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOQEatq3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOQEatq3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOQEatq3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOQEatq3 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOQEatq3 .mbr-text,
.cid-v1dOQEatq3 .mbr-section-btn {
  text-align: left;
}
.cid-v1dOQEatq3 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOQEatq3 .item-subtitle {
  text-align: center;
}
.cid-v1dOQEatq3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEClnzA8ed {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEClnzA8ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnzA8ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnzA8ed .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEClnzA8ed .mbr-section-title {
  color: #ffffff;
}
.cid-v1dORveMZo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dORveMZo img,
.cid-v1dORveMZo .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dORveMZo .item:focus,
.cid-v1dORveMZo span:focus {
  outline: none;
}
.cid-v1dORveMZo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dORveMZo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dORveMZo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dORveMZo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dORveMZo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dORveMZo .mbr-section-title {
  color: #232323;
}
.cid-v1dORveMZo .mbr-text,
.cid-v1dORveMZo .mbr-section-btn {
  text-align: left;
}
.cid-v1dORveMZo .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dORveMZo .item-subtitle {
  text-align: center;
}
.cid-uEClnB9RYn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEClnB9RYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnB9RYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnB9RYn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEClnB9RYn .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOSspoPm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOSspoPm img,
.cid-v1dOSspoPm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOSspoPm .item:focus,
.cid-v1dOSspoPm span:focus {
  outline: none;
}
.cid-v1dOSspoPm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOSspoPm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOSspoPm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOSspoPm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOSspoPm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOSspoPm .mbr-section-title {
  color: #232323;
}
.cid-v1dOSspoPm .mbr-text,
.cid-v1dOSspoPm .mbr-section-btn {
  text-align: left;
}
.cid-v1dOSspoPm .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOSspoPm .item-subtitle {
  text-align: center;
}
.cid-uEClnCKcN4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEClnCKcN4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnCKcN4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnCKcN4 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOTs6yC9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOTs6yC9 img,
.cid-v1dOTs6yC9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOTs6yC9 .item:focus,
.cid-v1dOTs6yC9 span:focus {
  outline: none;
}
.cid-v1dOTs6yC9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOTs6yC9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOTs6yC9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOTs6yC9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOTs6yC9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOTs6yC9 .mbr-section-title {
  color: #232323;
}
.cid-v1dOTs6yC9 .mbr-text,
.cid-v1dOTs6yC9 .mbr-section-btn {
  text-align: left;
}
.cid-v1dOTs6yC9 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOTs6yC9 .item-subtitle {
  text-align: center;
}
.cid-uEClnEugtA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEClnEugtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnEugtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnEugtA .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOUFHVSx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOUFHVSx img,
.cid-v1dOUFHVSx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOUFHVSx .item:focus,
.cid-v1dOUFHVSx span:focus {
  outline: none;
}
.cid-v1dOUFHVSx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOUFHVSx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOUFHVSx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOUFHVSx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOUFHVSx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOUFHVSx .mbr-section-title {
  color: #232323;
}
.cid-v1dOUFHVSx .mbr-text,
.cid-v1dOUFHVSx .mbr-section-btn {
  text-align: left;
}
.cid-v1dOUFHVSx .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOUFHVSx .item-subtitle {
  text-align: center;
}
.cid-uEClnFgejs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uEClnFgejs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnFgejs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnFgejs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEClnFgejs .mbr-section-title {
  color: #ffffff;
}
.cid-uYN23XyNmy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN23XyNmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN23XyNmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN23XyNmy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN23XyNmy .number {
  color: #ffffff;
}
.cid-uYN23XyNmy .period {
  display: block;
}
.cid-uYN23XyNmy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN23XyNmy .period {
    font-size: 0.8rem;
  }
}
.cid-uYN23XyNmy .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN23XyNmy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN23XyNmy .mbr-section-title {
  color: #ffffff;
}
.cid-uYN23XyNmy .mbr-text {
  color: #ffffff;
}
.cid-uYN23XyNmy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN23XyNmy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN23XyNmy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN23XyNmy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uEClnGXIj2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uEClnGXIj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnGXIj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnGXIj2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uEClnGXIj2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uEClnGXIj2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uEClnGXIj2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uEClnGXIj2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uEClnGXIj2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uEClnGXIj2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uEClnGXIj2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uEClnGXIj2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uEClnGXIj2 [class^="socicon-"]:before,
.cid-uEClnGXIj2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uEClnGXIj2 .mbr-section-title,
.cid-uEClnGXIj2 .mbr-social-likes {
  color: #ffffff;
}
.cid-uEClnHNvtl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uEClnHNvtl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnHNvtl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnHNvtl .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uEClnHNvtl .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uEClnHNvtl .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uEClnHNvtl .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uEClnHNvtl .mbr-text {
  color: #ffffff;
}
.cid-uEClnHNvtl .card-title {
  color: #ffffff;
}
.cid-uEClnHNvtl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEClnHNvtl .mbr-section-title {
  color: #ffffff;
}
.cid-uEClnHNvtl .link {
  color: #4479d9;
}
.cid-uEClnILUNa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uEClnILUNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEClnILUNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEClnILUNa .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uEClnILUNa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uEClnILUNa .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uEClnILUNa .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uEClnILUNa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uEClnILUNa .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGzrYblE2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGzrYblE2 nav.navbar {
  position: fixed;
}
.cid-uYGzrYblE2 .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-uYGzrYblE2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGzrYblE2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGzrYblE2 .dropdown-item:hover,
.cid-uYGzrYblE2 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGzrYblE2 .dropdown-item:hover span {
  color: white;
}
.cid-uYGzrYblE2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGzrYblE2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGzrYblE2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGzrYblE2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGzrYblE2 .nav-link {
  position: relative;
}
.cid-uYGzrYblE2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGzrYblE2 .container {
    flex-wrap: wrap;
  }
}
.cid-uYGzrYblE2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGzrYblE2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGzrYblE2 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGzrYblE2 .dropdown-menu,
.cid-uYGzrYblE2 .navbar.opened {
  background: #000000 !important;
}
.cid-uYGzrYblE2 .nav-item:focus,
.cid-uYGzrYblE2 .nav-link:focus {
  outline: none;
}
.cid-uYGzrYblE2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGzrYblE2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGzrYblE2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGzrYblE2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGzrYblE2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGzrYblE2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGzrYblE2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGzrYblE2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGzrYblE2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGzrYblE2 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGzrYblE2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGzrYblE2 .navbar.collapsed {
  justify-content: center;
}
.cid-uYGzrYblE2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGzrYblE2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGzrYblE2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGzrYblE2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGzrYblE2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGzrYblE2 .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-uYGzrYblE2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGzrYblE2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGzrYblE2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGzrYblE2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGzrYblE2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGzrYblE2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGzrYblE2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGzrYblE2 .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-uYGzrYblE2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGzrYblE2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGzrYblE2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGzrYblE2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGzrYblE2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGzrYblE2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGzrYblE2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGzrYblE2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGzrYblE2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGzrYblE2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGzrYblE2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGzrYblE2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGzrYblE2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGzrYblE2 .dropdown-item.active,
.cid-uYGzrYblE2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGzrYblE2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGzrYblE2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGzrYblE2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGzrYblE2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGzrYblE2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGzrYblE2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGzrYblE2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGzrYblE2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGzrYblE2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGzrYblE2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGzrYblE2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGzrYblE2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGzrYblE2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGzrYblE2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGzrYblE2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGzrYblE2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGzrYblE2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGzrYblE2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGzrYblE2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGzrYblE2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGzrYblE2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGzrYblE2 .navbar {
    height: 70px;
  }
  .cid-uYGzrYblE2 .navbar.opened {
    height: auto;
  }
  .cid-uYGzrYblE2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGzrYVxkL {
  background-image: url("../../../assets/images/sparkler-white-tip-radish-banner.webp");
}
.cid-uYGzrYVxkL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGzrYVxkL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGzrYVxkL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGzrYVxkL .mbr-text,
.cid-uYGzrYVxkL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGzrYVxkL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGzs05SoS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGzs05SoS img,
.cid-uYGzs05SoS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGzs05SoS .item:focus,
.cid-uYGzs05SoS span:focus {
  outline: none;
}
.cid-uYGzs05SoS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGzs05SoS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGzs05SoS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGzs05SoS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGzs05SoS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGzs05SoS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGzs05SoS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGzs05SoS .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGzs05SoS .mbr-text,
.cid-uYGzs05SoS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGzs05SoS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGzs05SoS .item-subtitle {
  text-align: left;
}
.cid-uYGzs05SoS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYeNzt7iQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYeNzt7iQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYeNzt7iQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYeNzt7iQ .mbr-section-title {
  color: #ffffff;
}
.cid-uZYeNzt7iQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpNQrnQO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpNQrnQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpNQrnQO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpNQrnQO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpNQrnQO .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpMMTnXf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpMMTnXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpMMTnXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpMMTnXf .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpMMTnXf .number {
  color: #ffffff;
}
.cid-uYNpMMTnXf .period {
  display: block;
}
.cid-uYNpMMTnXf .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpMMTnXf .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpMMTnXf .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpMMTnXf .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpMMTnXf .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpMMTnXf .mbr-text {
  color: #ffffff;
}
.cid-uYNpMMTnXf .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpMMTnXf .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpMMTnXf .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpMMTnXf .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGzs1w2mp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGzs1w2mp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGzs1w2mp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGzs1w2mp .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGzs1w2mp .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGzs1w2mp .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGzs1w2mp .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGzs1w2mp .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGzs1w2mp .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGzs1w2mp .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGzs1w2mp .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGzs1w2mp .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGzs1w2mp [class^="socicon-"]:before,
.cid-uYGzs1w2mp [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGzs1w2mp .mbr-section-title,
.cid-uYGzs1w2mp .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGzs26L64 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGzs26L64 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGzs26L64 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGzs26L64 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGzs26L64 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGzs26L64 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGzs26L64 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGzs26L64 .mbr-text {
  color: #ffffff;
}
.cid-uYGzs26L64 .card-title {
  color: #ffffff;
}
.cid-uYGzs26L64 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGzs26L64 .mbr-section-title {
  color: #ffffff;
}
.cid-uYGzs26L64 .link {
  color: #4479d9;
}
.cid-uYGzs2NxbQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGzs2NxbQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGzs2NxbQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGzs2NxbQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGzs2NxbQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGzs2NxbQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGzs2NxbQ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGzs2NxbQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGzs2NxbQ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGBlRQjtC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGBlRQjtC nav.navbar {
  position: fixed;
}
.cid-uYGBlRQjtC .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-uYGBlRQjtC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGBlRQjtC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGBlRQjtC .dropdown-item:hover,
.cid-uYGBlRQjtC .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGBlRQjtC .dropdown-item:hover span {
  color: white;
}
.cid-uYGBlRQjtC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGBlRQjtC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGBlRQjtC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGBlRQjtC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGBlRQjtC .nav-link {
  position: relative;
}
.cid-uYGBlRQjtC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGBlRQjtC .container {
    flex-wrap: wrap;
  }
}
.cid-uYGBlRQjtC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGBlRQjtC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGBlRQjtC .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGBlRQjtC .dropdown-menu,
.cid-uYGBlRQjtC .navbar.opened {
  background: #000000 !important;
}
.cid-uYGBlRQjtC .nav-item:focus,
.cid-uYGBlRQjtC .nav-link:focus {
  outline: none;
}
.cid-uYGBlRQjtC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGBlRQjtC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGBlRQjtC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGBlRQjtC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGBlRQjtC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGBlRQjtC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGBlRQjtC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGBlRQjtC .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGBlRQjtC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGBlRQjtC .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGBlRQjtC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGBlRQjtC .navbar.collapsed {
  justify-content: center;
}
.cid-uYGBlRQjtC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGBlRQjtC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGBlRQjtC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGBlRQjtC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGBlRQjtC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGBlRQjtC .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-uYGBlRQjtC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGBlRQjtC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGBlRQjtC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGBlRQjtC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGBlRQjtC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGBlRQjtC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGBlRQjtC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGBlRQjtC .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-uYGBlRQjtC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGBlRQjtC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGBlRQjtC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGBlRQjtC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGBlRQjtC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGBlRQjtC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGBlRQjtC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGBlRQjtC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGBlRQjtC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGBlRQjtC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGBlRQjtC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGBlRQjtC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGBlRQjtC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGBlRQjtC .dropdown-item.active,
.cid-uYGBlRQjtC .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGBlRQjtC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGBlRQjtC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGBlRQjtC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGBlRQjtC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGBlRQjtC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGBlRQjtC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGBlRQjtC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGBlRQjtC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGBlRQjtC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGBlRQjtC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGBlRQjtC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGBlRQjtC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGBlRQjtC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGBlRQjtC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGBlRQjtC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGBlRQjtC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGBlRQjtC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGBlRQjtC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGBlRQjtC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGBlRQjtC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGBlRQjtC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGBlRQjtC .navbar {
    height: 70px;
  }
  .cid-uYGBlRQjtC .navbar.opened {
    height: auto;
  }
  .cid-uYGBlRQjtC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGBlSAuaZ {
  background-image: url("../../../assets/images/cherry-belle-radish-banner.webp");
}
.cid-uYGBlSAuaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGBlSAuaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGBlSAuaZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGBlSAuaZ .mbr-text,
.cid-uYGBlSAuaZ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGBlSAuaZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGBlTNUQg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGBlTNUQg img,
.cid-uYGBlTNUQg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGBlTNUQg .item:focus,
.cid-uYGBlTNUQg span:focus {
  outline: none;
}
.cid-uYGBlTNUQg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGBlTNUQg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGBlTNUQg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGBlTNUQg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGBlTNUQg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGBlTNUQg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGBlTNUQg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGBlTNUQg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGBlTNUQg .mbr-text,
.cid-uYGBlTNUQg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGBlTNUQg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGBlTNUQg .item-subtitle {
  text-align: left;
}
.cid-uYGBlTNUQg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYe6Bu5Zb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYe6Bu5Zb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYe6Bu5Zb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYe6Bu5Zb .mbr-section-title {
  color: #ffffff;
}
.cid-uZYe6Bu5Zb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpCmVnCw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpCmVnCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpCmVnCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpCmVnCw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpCmVnCw .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpBhhEVB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpBhhEVB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpBhhEVB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpBhhEVB .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpBhhEVB .number {
  color: #ffffff;
}
.cid-uYNpBhhEVB .period {
  display: block;
}
.cid-uYNpBhhEVB .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpBhhEVB .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpBhhEVB .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpBhhEVB .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpBhhEVB .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpBhhEVB .mbr-text {
  color: #ffffff;
}
.cid-uYNpBhhEVB .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpBhhEVB .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpBhhEVB .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpBhhEVB .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGBlV9UbV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGBlV9UbV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGBlV9UbV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGBlV9UbV .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGBlV9UbV .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGBlV9UbV .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGBlV9UbV .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGBlV9UbV .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGBlV9UbV .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGBlV9UbV .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGBlV9UbV .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGBlV9UbV .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGBlV9UbV [class^="socicon-"]:before,
.cid-uYGBlV9UbV [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGBlV9UbV .mbr-section-title,
.cid-uYGBlV9UbV .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGBlVNcxK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGBlVNcxK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGBlVNcxK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGBlVNcxK .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGBlVNcxK .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGBlVNcxK .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGBlVNcxK .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGBlVNcxK .mbr-text {
  color: #ffffff;
}
.cid-uYGBlVNcxK .card-title {
  color: #ffffff;
}
.cid-uYGBlVNcxK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGBlVNcxK .mbr-section-title {
  color: #ffffff;
}
.cid-uYGBlVNcxK .link {
  color: #4479d9;
}
.cid-uYGBlWtHHO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGBlWtHHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGBlWtHHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGBlWtHHO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGBlWtHHO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGBlWtHHO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGBlWtHHO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGBlWtHHO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGBlWtHHO .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGCaI3GfH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGCaI3GfH nav.navbar {
  position: fixed;
}
.cid-uYGCaI3GfH .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-uYGCaI3GfH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGCaI3GfH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGCaI3GfH .dropdown-item:hover,
.cid-uYGCaI3GfH .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGCaI3GfH .dropdown-item:hover span {
  color: white;
}
.cid-uYGCaI3GfH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGCaI3GfH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGCaI3GfH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGCaI3GfH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGCaI3GfH .nav-link {
  position: relative;
}
.cid-uYGCaI3GfH .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGCaI3GfH .container {
    flex-wrap: wrap;
  }
}
.cid-uYGCaI3GfH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGCaI3GfH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGCaI3GfH .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGCaI3GfH .dropdown-menu,
.cid-uYGCaI3GfH .navbar.opened {
  background: #000000 !important;
}
.cid-uYGCaI3GfH .nav-item:focus,
.cid-uYGCaI3GfH .nav-link:focus {
  outline: none;
}
.cid-uYGCaI3GfH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGCaI3GfH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGCaI3GfH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGCaI3GfH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGCaI3GfH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGCaI3GfH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGCaI3GfH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGCaI3GfH .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGCaI3GfH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGCaI3GfH .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGCaI3GfH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGCaI3GfH .navbar.collapsed {
  justify-content: center;
}
.cid-uYGCaI3GfH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGCaI3GfH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGCaI3GfH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGCaI3GfH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGCaI3GfH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGCaI3GfH .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-uYGCaI3GfH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGCaI3GfH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGCaI3GfH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGCaI3GfH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGCaI3GfH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGCaI3GfH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGCaI3GfH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGCaI3GfH .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-uYGCaI3GfH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGCaI3GfH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGCaI3GfH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGCaI3GfH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGCaI3GfH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGCaI3GfH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGCaI3GfH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGCaI3GfH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGCaI3GfH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGCaI3GfH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGCaI3GfH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGCaI3GfH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGCaI3GfH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGCaI3GfH .dropdown-item.active,
.cid-uYGCaI3GfH .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGCaI3GfH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGCaI3GfH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGCaI3GfH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGCaI3GfH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGCaI3GfH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGCaI3GfH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGCaI3GfH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGCaI3GfH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGCaI3GfH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGCaI3GfH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGCaI3GfH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGCaI3GfH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGCaI3GfH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGCaI3GfH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGCaI3GfH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGCaI3GfH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGCaI3GfH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGCaI3GfH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGCaI3GfH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGCaI3GfH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGCaI3GfH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGCaI3GfH .navbar {
    height: 70px;
  }
  .cid-uYGCaI3GfH .navbar.opened {
    height: auto;
  }
  .cid-uYGCaI3GfH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGCaIQiK9 {
  background-image: url("../../../assets/images/white-icicle-radish-banner.webp");
}
.cid-uYGCaIQiK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGCaIQiK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGCaIQiK9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGCaIQiK9 .mbr-text,
.cid-uYGCaIQiK9 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGCaIQiK9 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGCaK3h0P {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGCaK3h0P img,
.cid-uYGCaK3h0P .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGCaK3h0P .item:focus,
.cid-uYGCaK3h0P span:focus {
  outline: none;
}
.cid-uYGCaK3h0P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGCaK3h0P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGCaK3h0P .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGCaK3h0P .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGCaK3h0P .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGCaK3h0P .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGCaK3h0P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGCaK3h0P .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGCaK3h0P .mbr-text,
.cid-uYGCaK3h0P .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGCaK3h0P .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGCaK3h0P .item-subtitle {
  text-align: left;
}
.cid-uYGCaK3h0P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYeJwNglk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYeJwNglk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYeJwNglk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYeJwNglk .mbr-section-title {
  color: #ffffff;
}
.cid-uZYeJwNglk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpIiee8J {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpIiee8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpIiee8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpIiee8J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpIiee8J .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpGSAMPc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpGSAMPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpGSAMPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpGSAMPc .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpGSAMPc .number {
  color: #ffffff;
}
.cid-uYNpGSAMPc .period {
  display: block;
}
.cid-uYNpGSAMPc .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpGSAMPc .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpGSAMPc .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpGSAMPc .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpGSAMPc .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpGSAMPc .mbr-text {
  color: #ffffff;
}
.cid-uYNpGSAMPc .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpGSAMPc .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpGSAMPc .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpGSAMPc .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGCaLr3mK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGCaLr3mK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGCaLr3mK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGCaLr3mK .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGCaLr3mK .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGCaLr3mK .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGCaLr3mK .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGCaLr3mK .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGCaLr3mK .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGCaLr3mK .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGCaLr3mK .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGCaLr3mK .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGCaLr3mK [class^="socicon-"]:before,
.cid-uYGCaLr3mK [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGCaLr3mK .mbr-section-title,
.cid-uYGCaLr3mK .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGCaM1EQX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGCaM1EQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGCaM1EQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGCaM1EQX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGCaM1EQX .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGCaM1EQX .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGCaM1EQX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGCaM1EQX .mbr-text {
  color: #ffffff;
}
.cid-uYGCaM1EQX .card-title {
  color: #ffffff;
}
.cid-uYGCaM1EQX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGCaM1EQX .mbr-section-title {
  color: #ffffff;
}
.cid-uYGCaM1EQX .link {
  color: #4479d9;
}
.cid-uYGCaMKQEG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGCaMKQEG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGCaMKQEG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGCaMKQEG .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGCaMKQEG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGCaMKQEG .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGCaMKQEG .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGCaMKQEG div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGCaMKQEG .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGMarB4Il {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGMarB4Il nav.navbar {
  position: fixed;
}
.cid-uYGMarB4Il .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-uYGMarB4Il .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGMarB4Il .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGMarB4Il .dropdown-item:hover,
.cid-uYGMarB4Il .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGMarB4Il .dropdown-item:hover span {
  color: white;
}
.cid-uYGMarB4Il .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGMarB4Il .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGMarB4Il .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGMarB4Il .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGMarB4Il .nav-link {
  position: relative;
}
.cid-uYGMarB4Il .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGMarB4Il .container {
    flex-wrap: wrap;
  }
}
.cid-uYGMarB4Il .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGMarB4Il .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGMarB4Il .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGMarB4Il .dropdown-menu,
.cid-uYGMarB4Il .navbar.opened {
  background: #000000 !important;
}
.cid-uYGMarB4Il .nav-item:focus,
.cid-uYGMarB4Il .nav-link:focus {
  outline: none;
}
.cid-uYGMarB4Il .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGMarB4Il .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGMarB4Il .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGMarB4Il .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGMarB4Il .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGMarB4Il .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGMarB4Il .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGMarB4Il .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGMarB4Il .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGMarB4Il .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGMarB4Il .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGMarB4Il .navbar.collapsed {
  justify-content: center;
}
.cid-uYGMarB4Il .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGMarB4Il .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGMarB4Il .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGMarB4Il .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGMarB4Il .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGMarB4Il .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-uYGMarB4Il .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGMarB4Il .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGMarB4Il .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGMarB4Il .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGMarB4Il .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGMarB4Il .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGMarB4Il .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGMarB4Il .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-uYGMarB4Il .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGMarB4Il .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGMarB4Il .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGMarB4Il .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGMarB4Il .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGMarB4Il .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGMarB4Il .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGMarB4Il .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGMarB4Il .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGMarB4Il .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGMarB4Il .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGMarB4Il .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGMarB4Il .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGMarB4Il .dropdown-item.active,
.cid-uYGMarB4Il .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGMarB4Il .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGMarB4Il .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGMarB4Il .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGMarB4Il .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGMarB4Il .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGMarB4Il .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGMarB4Il ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGMarB4Il .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGMarB4Il button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGMarB4Il button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGMarB4Il button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGMarB4Il button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGMarB4Il button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGMarB4Il button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGMarB4Il nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGMarB4Il nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGMarB4Il nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGMarB4Il nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGMarB4Il .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGMarB4Il a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGMarB4Il .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGMarB4Il .navbar {
    height: 70px;
  }
  .cid-uYGMarB4Il .navbar.opened {
    height: auto;
  }
  .cid-uYGMarB4Il .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGMasmBJF {
  background-image: url("../../../assets/images/great-lakes-lettuce.webp");
}
.cid-uYGMasmBJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGMasmBJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGMasmBJF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGMasmBJF .mbr-text,
.cid-uYGMasmBJF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGMasmBJF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGMatzDfx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGMatzDfx img,
.cid-uYGMatzDfx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGMatzDfx .item:focus,
.cid-uYGMatzDfx span:focus {
  outline: none;
}
.cid-uYGMatzDfx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGMatzDfx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGMatzDfx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGMatzDfx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGMatzDfx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGMatzDfx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGMatzDfx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGMatzDfx .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGMatzDfx .mbr-text,
.cid-uYGMatzDfx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGMatzDfx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGMatzDfx .item-subtitle {
  text-align: left;
}
.cid-uYGMatzDfx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYkxiC8Qy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYkxiC8Qy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYkxiC8Qy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYkxiC8Qy .mbr-section-title {
  color: #ffffff;
}
.cid-uZYkxiC8Qy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNutK64Ca {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNutK64Ca .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNutK64Ca .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNutK64Ca .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNutK64Ca .mbr-section-title {
  color: #ffffff;
}
.cid-uYNusCR5Yi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNusCR5Yi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNusCR5Yi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNusCR5Yi .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNusCR5Yi .number {
  color: #ffffff;
}
.cid-uYNusCR5Yi .period {
  display: block;
}
.cid-uYNusCR5Yi .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNusCR5Yi .period {
    font-size: 0.8rem;
  }
}
.cid-uYNusCR5Yi .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNusCR5Yi .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNusCR5Yi .mbr-section-title {
  color: #ffffff;
}
.cid-uYNusCR5Yi .mbr-text {
  color: #ffffff;
}
.cid-uYNusCR5Yi .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNusCR5Yi .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNusCR5Yi .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNusCR5Yi .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGMav2MaL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGMav2MaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGMav2MaL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGMav2MaL .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGMav2MaL .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGMav2MaL .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGMav2MaL .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGMav2MaL .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGMav2MaL .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGMav2MaL .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGMav2MaL .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGMav2MaL .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGMav2MaL [class^="socicon-"]:before,
.cid-uYGMav2MaL [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGMav2MaL .mbr-section-title,
.cid-uYGMav2MaL .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGMavEvOL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGMavEvOL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGMavEvOL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGMavEvOL .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGMavEvOL .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGMavEvOL .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGMavEvOL .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGMavEvOL .mbr-text {
  color: #ffffff;
}
.cid-uYGMavEvOL .card-title {
  color: #ffffff;
}
.cid-uYGMavEvOL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGMavEvOL .mbr-section-title {
  color: #ffffff;
}
.cid-uYGMavEvOL .link {
  color: #4479d9;
}
.cid-uYGMawnfMn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGMawnfMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGMawnfMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGMawnfMn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGMawnfMn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGMawnfMn .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGMawnfMn .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGMawnfMn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGMawnfMn .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGO9PhcHy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGO9PhcHy nav.navbar {
  position: fixed;
}
.cid-uYGO9PhcHy .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-uYGO9PhcHy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGO9PhcHy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGO9PhcHy .dropdown-item:hover,
.cid-uYGO9PhcHy .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGO9PhcHy .dropdown-item:hover span {
  color: white;
}
.cid-uYGO9PhcHy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGO9PhcHy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGO9PhcHy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGO9PhcHy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGO9PhcHy .nav-link {
  position: relative;
}
.cid-uYGO9PhcHy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGO9PhcHy .container {
    flex-wrap: wrap;
  }
}
.cid-uYGO9PhcHy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGO9PhcHy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGO9PhcHy .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGO9PhcHy .dropdown-menu,
.cid-uYGO9PhcHy .navbar.opened {
  background: #000000 !important;
}
.cid-uYGO9PhcHy .nav-item:focus,
.cid-uYGO9PhcHy .nav-link:focus {
  outline: none;
}
.cid-uYGO9PhcHy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGO9PhcHy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGO9PhcHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGO9PhcHy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGO9PhcHy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGO9PhcHy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGO9PhcHy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGO9PhcHy .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGO9PhcHy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGO9PhcHy .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGO9PhcHy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGO9PhcHy .navbar.collapsed {
  justify-content: center;
}
.cid-uYGO9PhcHy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGO9PhcHy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGO9PhcHy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGO9PhcHy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGO9PhcHy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGO9PhcHy .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-uYGO9PhcHy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGO9PhcHy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGO9PhcHy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGO9PhcHy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGO9PhcHy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGO9PhcHy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGO9PhcHy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGO9PhcHy .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-uYGO9PhcHy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGO9PhcHy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGO9PhcHy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGO9PhcHy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGO9PhcHy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGO9PhcHy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGO9PhcHy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGO9PhcHy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGO9PhcHy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGO9PhcHy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGO9PhcHy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGO9PhcHy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGO9PhcHy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGO9PhcHy .dropdown-item.active,
.cid-uYGO9PhcHy .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGO9PhcHy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGO9PhcHy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGO9PhcHy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGO9PhcHy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGO9PhcHy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGO9PhcHy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGO9PhcHy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGO9PhcHy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGO9PhcHy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGO9PhcHy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGO9PhcHy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGO9PhcHy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGO9PhcHy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGO9PhcHy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGO9PhcHy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGO9PhcHy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGO9PhcHy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGO9PhcHy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGO9PhcHy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGO9PhcHy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGO9PhcHy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGO9PhcHy .navbar {
    height: 70px;
  }
  .cid-uYGO9PhcHy .navbar.opened {
    height: auto;
  }
  .cid-uYGO9PhcHy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGO9UhIzI {
  background-image: url("../../../assets/images/salad-bowl-lettuce.webp");
}
.cid-uYGO9UhIzI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGO9UhIzI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGO9UhIzI .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGO9UhIzI .mbr-text,
.cid-uYGO9UhIzI .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGO9UhIzI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGO9VvBBi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGO9VvBBi img,
.cid-uYGO9VvBBi .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGO9VvBBi .item:focus,
.cid-uYGO9VvBBi span:focus {
  outline: none;
}
.cid-uYGO9VvBBi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGO9VvBBi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGO9VvBBi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGO9VvBBi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGO9VvBBi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGO9VvBBi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGO9VvBBi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGO9VvBBi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGO9VvBBi .mbr-text,
.cid-uYGO9VvBBi .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGO9VvBBi .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGO9VvBBi .item-subtitle {
  text-align: left;
}
.cid-uYGO9VvBBi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYktozGeY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYktozGeY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYktozGeY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYktozGeY .mbr-section-title {
  color: #ffffff;
}
.cid-uZYktozGeY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNunEN3MC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNunEN3MC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNunEN3MC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNunEN3MC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNunEN3MC .mbr-section-title {
  color: #ffffff;
}
.cid-uYNum0VE6s {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNum0VE6s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNum0VE6s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNum0VE6s .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNum0VE6s .number {
  color: #ffffff;
}
.cid-uYNum0VE6s .period {
  display: block;
}
.cid-uYNum0VE6s .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNum0VE6s .period {
    font-size: 0.8rem;
  }
}
.cid-uYNum0VE6s .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNum0VE6s .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNum0VE6s .mbr-section-title {
  color: #ffffff;
}
.cid-uYNum0VE6s .mbr-text {
  color: #ffffff;
}
.cid-uYNum0VE6s .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNum0VE6s .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNum0VE6s .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNum0VE6s .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGO9WT3ai {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGO9WT3ai .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGO9WT3ai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGO9WT3ai .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGO9WT3ai .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGO9WT3ai .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGO9WT3ai .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGO9WT3ai .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGO9WT3ai .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGO9WT3ai .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGO9WT3ai .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGO9WT3ai .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGO9WT3ai [class^="socicon-"]:before,
.cid-uYGO9WT3ai [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGO9WT3ai .mbr-section-title,
.cid-uYGO9WT3ai .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGO9XuIpm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGO9XuIpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGO9XuIpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGO9XuIpm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGO9XuIpm .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGO9XuIpm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGO9XuIpm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGO9XuIpm .mbr-text {
  color: #ffffff;
}
.cid-uYGO9XuIpm .card-title {
  color: #ffffff;
}
.cid-uYGO9XuIpm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGO9XuIpm .mbr-section-title {
  color: #ffffff;
}
.cid-uYGO9XuIpm .link {
  color: #4479d9;
}
.cid-uYGO9YlZkO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGO9YlZkO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGO9YlZkO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGO9YlZkO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGO9YlZkO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGO9YlZkO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGO9YlZkO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGO9YlZkO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGO9YlZkO .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGQ8muiNr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGQ8muiNr nav.navbar {
  position: fixed;
}
.cid-uYGQ8muiNr .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-uYGQ8muiNr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGQ8muiNr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGQ8muiNr .dropdown-item:hover,
.cid-uYGQ8muiNr .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGQ8muiNr .dropdown-item:hover span {
  color: white;
}
.cid-uYGQ8muiNr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGQ8muiNr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGQ8muiNr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGQ8muiNr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGQ8muiNr .nav-link {
  position: relative;
}
.cid-uYGQ8muiNr .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGQ8muiNr .container {
    flex-wrap: wrap;
  }
}
.cid-uYGQ8muiNr .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGQ8muiNr .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGQ8muiNr .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGQ8muiNr .dropdown-menu,
.cid-uYGQ8muiNr .navbar.opened {
  background: #000000 !important;
}
.cid-uYGQ8muiNr .nav-item:focus,
.cid-uYGQ8muiNr .nav-link:focus {
  outline: none;
}
.cid-uYGQ8muiNr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGQ8muiNr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGQ8muiNr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGQ8muiNr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGQ8muiNr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGQ8muiNr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGQ8muiNr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGQ8muiNr .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGQ8muiNr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGQ8muiNr .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGQ8muiNr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGQ8muiNr .navbar.collapsed {
  justify-content: center;
}
.cid-uYGQ8muiNr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGQ8muiNr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGQ8muiNr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGQ8muiNr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGQ8muiNr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGQ8muiNr .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-uYGQ8muiNr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGQ8muiNr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGQ8muiNr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGQ8muiNr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGQ8muiNr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGQ8muiNr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGQ8muiNr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGQ8muiNr .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-uYGQ8muiNr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGQ8muiNr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGQ8muiNr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGQ8muiNr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGQ8muiNr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGQ8muiNr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGQ8muiNr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGQ8muiNr .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGQ8muiNr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGQ8muiNr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGQ8muiNr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGQ8muiNr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGQ8muiNr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGQ8muiNr .dropdown-item.active,
.cid-uYGQ8muiNr .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGQ8muiNr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGQ8muiNr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGQ8muiNr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGQ8muiNr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGQ8muiNr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGQ8muiNr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGQ8muiNr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGQ8muiNr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGQ8muiNr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGQ8muiNr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGQ8muiNr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGQ8muiNr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGQ8muiNr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGQ8muiNr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGQ8muiNr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGQ8muiNr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGQ8muiNr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGQ8muiNr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGQ8muiNr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGQ8muiNr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGQ8muiNr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGQ8muiNr .navbar {
    height: 70px;
  }
  .cid-uYGQ8muiNr .navbar.opened {
    height: auto;
  }
  .cid-uYGQ8muiNr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGQ8nkgOZ {
  background-image: url("../../../assets/images/butter-crunch-lettuce-banner.webp");
}
.cid-uYGQ8nkgOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGQ8nkgOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGQ8nkgOZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGQ8nkgOZ .mbr-text,
.cid-uYGQ8nkgOZ .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGQ8nkgOZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGQ8ovVo0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGQ8ovVo0 img,
.cid-uYGQ8ovVo0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGQ8ovVo0 .item:focus,
.cid-uYGQ8ovVo0 span:focus {
  outline: none;
}
.cid-uYGQ8ovVo0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGQ8ovVo0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGQ8ovVo0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGQ8ovVo0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGQ8ovVo0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGQ8ovVo0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGQ8ovVo0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGQ8ovVo0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGQ8ovVo0 .mbr-text,
.cid-uYGQ8ovVo0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGQ8ovVo0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGQ8ovVo0 .item-subtitle {
  text-align: left;
}
.cid-uYGQ8ovVo0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYkpv31Cl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYkpv31Cl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYkpv31Cl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYkpv31Cl .mbr-section-title {
  color: #ffffff;
}
.cid-uZYkpv31Cl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuh5p2qK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNuh5p2qK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuh5p2qK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuh5p2qK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuh5p2qK .mbr-section-title {
  color: #ffffff;
}
.cid-uYNufAcylk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNufAcylk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNufAcylk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNufAcylk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNufAcylk .number {
  color: #ffffff;
}
.cid-uYNufAcylk .period {
  display: block;
}
.cid-uYNufAcylk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNufAcylk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNufAcylk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNufAcylk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNufAcylk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNufAcylk .mbr-text {
  color: #ffffff;
}
.cid-uYNufAcylk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNufAcylk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNufAcylk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNufAcylk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGQ8q0t5M {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGQ8q0t5M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGQ8q0t5M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGQ8q0t5M .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGQ8q0t5M .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGQ8q0t5M .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGQ8q0t5M .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGQ8q0t5M .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGQ8q0t5M .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGQ8q0t5M .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGQ8q0t5M .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGQ8q0t5M .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGQ8q0t5M [class^="socicon-"]:before,
.cid-uYGQ8q0t5M [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGQ8q0t5M .mbr-section-title,
.cid-uYGQ8q0t5M .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGQ8qBTNY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGQ8qBTNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGQ8qBTNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGQ8qBTNY .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGQ8qBTNY .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGQ8qBTNY .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGQ8qBTNY .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGQ8qBTNY .mbr-text {
  color: #ffffff;
}
.cid-uYGQ8qBTNY .card-title {
  color: #ffffff;
}
.cid-uYGQ8qBTNY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGQ8qBTNY .mbr-section-title {
  color: #ffffff;
}
.cid-uYGQ8qBTNY .link {
  color: #4479d9;
}
.cid-uYGQ8rjzVO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGQ8rjzVO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGQ8rjzVO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGQ8rjzVO .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGQ8rjzVO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGQ8rjzVO .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGQ8rjzVO .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGQ8rjzVO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGQ8rjzVO .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGUXf525w {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGUXf525w nav.navbar {
  position: fixed;
}
.cid-uYGUXf525w .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-uYGUXf525w .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGUXf525w .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGUXf525w .dropdown-item:hover,
.cid-uYGUXf525w .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGUXf525w .dropdown-item:hover span {
  color: white;
}
.cid-uYGUXf525w .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGUXf525w .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGUXf525w .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGUXf525w .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGUXf525w .nav-link {
  position: relative;
}
.cid-uYGUXf525w .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGUXf525w .container {
    flex-wrap: wrap;
  }
}
.cid-uYGUXf525w .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGUXf525w .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGUXf525w .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGUXf525w .dropdown-menu,
.cid-uYGUXf525w .navbar.opened {
  background: #000000 !important;
}
.cid-uYGUXf525w .nav-item:focus,
.cid-uYGUXf525w .nav-link:focus {
  outline: none;
}
.cid-uYGUXf525w .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGUXf525w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGUXf525w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGUXf525w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGUXf525w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGUXf525w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGUXf525w .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGUXf525w .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGUXf525w .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGUXf525w .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGUXf525w .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGUXf525w .navbar.collapsed {
  justify-content: center;
}
.cid-uYGUXf525w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGUXf525w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGUXf525w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGUXf525w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGUXf525w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGUXf525w .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-uYGUXf525w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGUXf525w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGUXf525w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGUXf525w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGUXf525w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGUXf525w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGUXf525w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGUXf525w .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-uYGUXf525w .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGUXf525w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGUXf525w .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGUXf525w .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGUXf525w .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGUXf525w .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGUXf525w .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGUXf525w .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGUXf525w .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGUXf525w .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGUXf525w .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGUXf525w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGUXf525w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGUXf525w .dropdown-item.active,
.cid-uYGUXf525w .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGUXf525w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGUXf525w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGUXf525w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGUXf525w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGUXf525w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGUXf525w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGUXf525w ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGUXf525w .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGUXf525w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGUXf525w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGUXf525w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGUXf525w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGUXf525w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGUXf525w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGUXf525w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGUXf525w nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGUXf525w nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGUXf525w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGUXf525w .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGUXf525w a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGUXf525w .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGUXf525w .navbar {
    height: 70px;
  }
  .cid-uYGUXf525w .navbar.opened {
    height: auto;
  }
  .cid-uYGUXf525w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGUXfTRay {
  background-image: url("../../../assets/images/leaf-lettuce-mix-basket.webp");
}
.cid-uYGUXfTRay .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGUXfTRay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGUXfTRay .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGUXfTRay .mbr-text,
.cid-uYGUXfTRay .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGUXfTRay .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYGUXgwJ1h {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYGUXgwJ1h img,
.cid-uYGUXgwJ1h .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYGUXgwJ1h .item:focus,
.cid-uYGUXgwJ1h span:focus {
  outline: none;
}
.cid-uYGUXgwJ1h .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYGUXgwJ1h .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYGUXgwJ1h .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYGUXgwJ1h .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYGUXgwJ1h .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYGUXgwJ1h .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYGUXgwJ1h .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYGUXgwJ1h .mbr-section-title {
  color: #ffffff;
}
.cid-uYGUXgwJ1h .mbr-text,
.cid-uYGUXgwJ1h .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYGUXgwJ1h .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYGUXgwJ1h .item-subtitle {
  text-align: left;
}
.cid-uYGUXgwJ1h .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZYjWDGsp2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYjWDGsp2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYjWDGsp2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYjWDGsp2 .mbr-section-title {
  color: #ffffff;
}
.cid-uZYjWDGsp2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNub37L1y {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNub37L1y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNub37L1y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNub37L1y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNub37L1y .mbr-section-title {
  color: #ffffff;
}
.cid-uYNu9pEULk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNu9pEULk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNu9pEULk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNu9pEULk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNu9pEULk .number {
  color: #ffffff;
}
.cid-uYNu9pEULk .period {
  display: block;
}
.cid-uYNu9pEULk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNu9pEULk .period {
    font-size: 0.8rem;
  }
}
.cid-uYNu9pEULk .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNu9pEULk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNu9pEULk .mbr-section-title {
  color: #ffffff;
}
.cid-uYNu9pEULk .mbr-text {
  color: #ffffff;
}
.cid-uYNu9pEULk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNu9pEULk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNu9pEULk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNu9pEULk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGUXiwiC2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGUXiwiC2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGUXiwiC2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGUXiwiC2 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGUXiwiC2 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGUXiwiC2 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGUXiwiC2 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGUXiwiC2 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGUXiwiC2 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGUXiwiC2 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGUXiwiC2 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGUXiwiC2 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGUXiwiC2 [class^="socicon-"]:before,
.cid-uYGUXiwiC2 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGUXiwiC2 .mbr-section-title,
.cid-uYGUXiwiC2 .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGUXj8FCj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGUXj8FCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGUXj8FCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGUXj8FCj .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGUXj8FCj .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGUXj8FCj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGUXj8FCj .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGUXj8FCj .mbr-text {
  color: #ffffff;
}
.cid-uYGUXj8FCj .card-title {
  color: #ffffff;
}
.cid-uYGUXj8FCj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGUXj8FCj .mbr-section-title {
  color: #ffffff;
}
.cid-uYGUXj8FCj .link {
  color: #4479d9;
}
.cid-uYGUXjUOYh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGUXjUOYh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGUXjUOYh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGUXjUOYh .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGUXjUOYh .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGUXjUOYh .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGUXjUOYh .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGUXjUOYh div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGUXjUOYh .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYGZrktv9I {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYGZrktv9I nav.navbar {
  position: fixed;
}
.cid-uYGZrktv9I .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-uYGZrktv9I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYGZrktv9I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYGZrktv9I .dropdown-item:hover,
.cid-uYGZrktv9I .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYGZrktv9I .dropdown-item:hover span {
  color: white;
}
.cid-uYGZrktv9I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYGZrktv9I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYGZrktv9I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYGZrktv9I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYGZrktv9I .nav-link {
  position: relative;
}
.cid-uYGZrktv9I .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGZrktv9I .container {
    flex-wrap: wrap;
  }
}
.cid-uYGZrktv9I .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYGZrktv9I .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYGZrktv9I .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYGZrktv9I .dropdown-menu,
.cid-uYGZrktv9I .navbar.opened {
  background: #000000 !important;
}
.cid-uYGZrktv9I .nav-item:focus,
.cid-uYGZrktv9I .nav-link:focus {
  outline: none;
}
.cid-uYGZrktv9I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYGZrktv9I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYGZrktv9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYGZrktv9I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYGZrktv9I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYGZrktv9I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYGZrktv9I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYGZrktv9I .navbar.opened {
  transition: all 0.3s;
}
.cid-uYGZrktv9I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYGZrktv9I .navbar .navbar-logo img {
  width: auto;
}
.cid-uYGZrktv9I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYGZrktv9I .navbar.collapsed {
  justify-content: center;
}
.cid-uYGZrktv9I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYGZrktv9I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYGZrktv9I .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYGZrktv9I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYGZrktv9I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYGZrktv9I .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-uYGZrktv9I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYGZrktv9I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYGZrktv9I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYGZrktv9I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYGZrktv9I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYGZrktv9I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYGZrktv9I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYGZrktv9I .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-uYGZrktv9I .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYGZrktv9I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYGZrktv9I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYGZrktv9I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYGZrktv9I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYGZrktv9I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYGZrktv9I .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYGZrktv9I .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYGZrktv9I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYGZrktv9I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYGZrktv9I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYGZrktv9I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYGZrktv9I .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYGZrktv9I .dropdown-item.active,
.cid-uYGZrktv9I .dropdown-item:active {
  background-color: transparent;
}
.cid-uYGZrktv9I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYGZrktv9I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYGZrktv9I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYGZrktv9I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYGZrktv9I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYGZrktv9I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYGZrktv9I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYGZrktv9I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYGZrktv9I button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYGZrktv9I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYGZrktv9I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYGZrktv9I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGZrktv9I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYGZrktv9I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYGZrktv9I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGZrktv9I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYGZrktv9I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYGZrktv9I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYGZrktv9I .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYGZrktv9I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYGZrktv9I .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYGZrktv9I .navbar {
    height: 70px;
  }
  .cid-uYGZrktv9I .navbar.opened {
    height: auto;
  }
  .cid-uYGZrktv9I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYGZrlhBwo {
  background-image: url("../../../assets/images/cotton-banner.webp");
}
.cid-uYGZrlhBwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGZrlhBwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGZrlhBwo .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYGZrlhBwo .mbr-text,
.cid-uYGZrlhBwo .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYGZrlhBwo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH1dgDmuV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYH1dgDmuV img,
.cid-uYH1dgDmuV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYH1dgDmuV .item:focus,
.cid-uYH1dgDmuV span:focus {
  outline: none;
}
.cid-uYH1dgDmuV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYH1dgDmuV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYH1dgDmuV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYH1dgDmuV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYH1dgDmuV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYH1dgDmuV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYH1dgDmuV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYH1dgDmuV .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH1dgDmuV .mbr-text,
.cid-uYH1dgDmuV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYH1dgDmuV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYH1dgDmuV .item-subtitle {
  text-align: left;
}
.cid-uYH1dgDmuV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFIpNBEvu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFIpNBEvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFIpNBEvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFIpNBEvu .mbr-section-title {
  color: #ffffff;
}
.cid-vdFIpNBEvu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuI9Lcu2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNuI9Lcu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuI9Lcu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuI9Lcu2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuI9Lcu2 .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuH9jDRH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNuH9jDRH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuH9jDRH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuH9jDRH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNuH9jDRH .number {
  color: #ffffff;
}
.cid-uYNuH9jDRH .period {
  display: block;
}
.cid-uYNuH9jDRH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNuH9jDRH .period {
    font-size: 0.8rem;
  }
}
.cid-uYNuH9jDRH .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNuH9jDRH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNuH9jDRH .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuH9jDRH .mbr-text {
  color: #ffffff;
}
.cid-uYNuH9jDRH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNuH9jDRH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNuH9jDRH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNuH9jDRH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYGZrn7oHr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYGZrn7oHr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGZrn7oHr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGZrn7oHr .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYGZrn7oHr .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYGZrn7oHr .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYGZrn7oHr .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYGZrn7oHr .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYGZrn7oHr .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYGZrn7oHr .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYGZrn7oHr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYGZrn7oHr .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYGZrn7oHr [class^="socicon-"]:before,
.cid-uYGZrn7oHr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYGZrn7oHr .mbr-section-title,
.cid-uYGZrn7oHr .mbr-social-likes {
  color: #ffffff;
}
.cid-uYGZrnGGS5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYGZrnGGS5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGZrnGGS5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGZrnGGS5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYGZrnGGS5 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYGZrnGGS5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGZrnGGS5 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYGZrnGGS5 .mbr-text {
  color: #ffffff;
}
.cid-uYGZrnGGS5 .card-title {
  color: #ffffff;
}
.cid-uYGZrnGGS5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYGZrnGGS5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYGZrnGGS5 .link {
  color: #4479d9;
}
.cid-uYGZropRC4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYGZropRC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGZropRC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYGZropRC4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYGZropRC4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYGZropRC4 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYGZropRC4 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYGZropRC4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYGZropRC4 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYH7I3h2i9 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYH7I3h2i9 nav.navbar {
  position: fixed;
}
.cid-uYH7I3h2i9 .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-uYH7I3h2i9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYH7I3h2i9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYH7I3h2i9 .dropdown-item:hover,
.cid-uYH7I3h2i9 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYH7I3h2i9 .dropdown-item:hover span {
  color: white;
}
.cid-uYH7I3h2i9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYH7I3h2i9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYH7I3h2i9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYH7I3h2i9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYH7I3h2i9 .nav-link {
  position: relative;
}
.cid-uYH7I3h2i9 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYH7I3h2i9 .container {
    flex-wrap: wrap;
  }
}
.cid-uYH7I3h2i9 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYH7I3h2i9 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYH7I3h2i9 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYH7I3h2i9 .dropdown-menu,
.cid-uYH7I3h2i9 .navbar.opened {
  background: #000000 !important;
}
.cid-uYH7I3h2i9 .nav-item:focus,
.cid-uYH7I3h2i9 .nav-link:focus {
  outline: none;
}
.cid-uYH7I3h2i9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYH7I3h2i9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYH7I3h2i9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYH7I3h2i9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYH7I3h2i9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYH7I3h2i9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYH7I3h2i9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYH7I3h2i9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYH7I3h2i9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYH7I3h2i9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYH7I3h2i9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYH7I3h2i9 .navbar.collapsed {
  justify-content: center;
}
.cid-uYH7I3h2i9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYH7I3h2i9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYH7I3h2i9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYH7I3h2i9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYH7I3h2i9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYH7I3h2i9 .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-uYH7I3h2i9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYH7I3h2i9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYH7I3h2i9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYH7I3h2i9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYH7I3h2i9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYH7I3h2i9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYH7I3h2i9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYH7I3h2i9 .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-uYH7I3h2i9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYH7I3h2i9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYH7I3h2i9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYH7I3h2i9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYH7I3h2i9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYH7I3h2i9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYH7I3h2i9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYH7I3h2i9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYH7I3h2i9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYH7I3h2i9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYH7I3h2i9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYH7I3h2i9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYH7I3h2i9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYH7I3h2i9 .dropdown-item.active,
.cid-uYH7I3h2i9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYH7I3h2i9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYH7I3h2i9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYH7I3h2i9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYH7I3h2i9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYH7I3h2i9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYH7I3h2i9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYH7I3h2i9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYH7I3h2i9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYH7I3h2i9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYH7I3h2i9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYH7I3h2i9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYH7I3h2i9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYH7I3h2i9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYH7I3h2i9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYH7I3h2i9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYH7I3h2i9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYH7I3h2i9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYH7I3h2i9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYH7I3h2i9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYH7I3h2i9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYH7I3h2i9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYH7I3h2i9 .navbar {
    height: 70px;
  }
  .cid-uYH7I3h2i9 .navbar.opened {
    height: auto;
  }
  .cid-uYH7I3h2i9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYH7I5Tmqo {
  background-image: url("../../../assets/images/mississippi-brown-cotton-banner.webp");
}
.cid-uYH7I5Tmqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH7I5Tmqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH7I5Tmqo .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYH7I5Tmqo .mbr-text,
.cid-uYH7I5Tmqo .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYH7I5Tmqo .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH7I8CFao {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYH7I8CFao img,
.cid-uYH7I8CFao .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYH7I8CFao .item:focus,
.cid-uYH7I8CFao span:focus {
  outline: none;
}
.cid-uYH7I8CFao .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYH7I8CFao .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYH7I8CFao .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYH7I8CFao .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYH7I8CFao .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYH7I8CFao .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYH7I8CFao .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYH7I8CFao .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH7I8CFao .mbr-text,
.cid-uYH7I8CFao .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYH7I8CFao .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYH7I8CFao .item-subtitle {
  text-align: left;
}
.cid-uYH7I8CFao .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9Pid74FBI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9Pid74FBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Pid74FBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Pid74FBI .mbr-section-title {
  color: #ffffff;
}
.cid-v9Pid74FBI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuV16t7x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNuV16t7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuV16t7x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuV16t7x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuV16t7x .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuTK9qrl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNuTK9qrl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuTK9qrl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuTK9qrl .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNuTK9qrl .number {
  color: #ffffff;
}
.cid-uYNuTK9qrl .period {
  display: block;
}
.cid-uYNuTK9qrl .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNuTK9qrl .period {
    font-size: 0.8rem;
  }
}
.cid-uYNuTK9qrl .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNuTK9qrl .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNuTK9qrl .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuTK9qrl .mbr-text {
  color: #ffffff;
}
.cid-uYNuTK9qrl .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNuTK9qrl .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNuTK9qrl .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNuTK9qrl .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYH7IaRWWW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYH7IaRWWW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH7IaRWWW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH7IaRWWW .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYH7IaRWWW .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYH7IaRWWW .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYH7IaRWWW .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYH7IaRWWW .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYH7IaRWWW .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYH7IaRWWW .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYH7IaRWWW .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYH7IaRWWW .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYH7IaRWWW [class^="socicon-"]:before,
.cid-uYH7IaRWWW [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYH7IaRWWW .mbr-section-title,
.cid-uYH7IaRWWW .mbr-social-likes {
  color: #ffffff;
}
.cid-uYH7Ibtobd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYH7Ibtobd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH7Ibtobd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH7Ibtobd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYH7Ibtobd .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYH7Ibtobd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYH7Ibtobd .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYH7Ibtobd .mbr-text {
  color: #ffffff;
}
.cid-uYH7Ibtobd .card-title {
  color: #ffffff;
}
.cid-uYH7Ibtobd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYH7Ibtobd .mbr-section-title {
  color: #ffffff;
}
.cid-uYH7Ibtobd .link {
  color: #4479d9;
}
.cid-uYH7IcaEDL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYH7IcaEDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH7IcaEDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH7IcaEDL .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYH7IcaEDL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYH7IcaEDL .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYH7IcaEDL .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYH7IcaEDL div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYH7IcaEDL .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uYH9XsuXg8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uYH9XsuXg8 nav.navbar {
  position: fixed;
}
.cid-uYH9XsuXg8 .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-uYH9XsuXg8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYH9XsuXg8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYH9XsuXg8 .dropdown-item:hover,
.cid-uYH9XsuXg8 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uYH9XsuXg8 .dropdown-item:hover span {
  color: white;
}
.cid-uYH9XsuXg8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYH9XsuXg8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYH9XsuXg8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYH9XsuXg8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYH9XsuXg8 .nav-link {
  position: relative;
}
.cid-uYH9XsuXg8 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYH9XsuXg8 .container {
    flex-wrap: wrap;
  }
}
.cid-uYH9XsuXg8 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uYH9XsuXg8 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uYH9XsuXg8 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYH9XsuXg8 .dropdown-menu,
.cid-uYH9XsuXg8 .navbar.opened {
  background: #000000 !important;
}
.cid-uYH9XsuXg8 .nav-item:focus,
.cid-uYH9XsuXg8 .nav-link:focus {
  outline: none;
}
.cid-uYH9XsuXg8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYH9XsuXg8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYH9XsuXg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYH9XsuXg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYH9XsuXg8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYH9XsuXg8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYH9XsuXg8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uYH9XsuXg8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uYH9XsuXg8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYH9XsuXg8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uYH9XsuXg8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uYH9XsuXg8 .navbar.collapsed {
  justify-content: center;
}
.cid-uYH9XsuXg8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYH9XsuXg8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYH9XsuXg8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uYH9XsuXg8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYH9XsuXg8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYH9XsuXg8 .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-uYH9XsuXg8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uYH9XsuXg8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYH9XsuXg8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYH9XsuXg8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYH9XsuXg8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYH9XsuXg8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYH9XsuXg8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYH9XsuXg8 .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-uYH9XsuXg8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYH9XsuXg8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYH9XsuXg8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYH9XsuXg8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYH9XsuXg8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYH9XsuXg8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uYH9XsuXg8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uYH9XsuXg8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYH9XsuXg8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYH9XsuXg8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uYH9XsuXg8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uYH9XsuXg8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uYH9XsuXg8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYH9XsuXg8 .dropdown-item.active,
.cid-uYH9XsuXg8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uYH9XsuXg8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYH9XsuXg8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYH9XsuXg8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYH9XsuXg8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uYH9XsuXg8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYH9XsuXg8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYH9XsuXg8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uYH9XsuXg8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uYH9XsuXg8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uYH9XsuXg8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYH9XsuXg8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYH9XsuXg8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYH9XsuXg8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uYH9XsuXg8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uYH9XsuXg8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYH9XsuXg8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uYH9XsuXg8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uYH9XsuXg8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYH9XsuXg8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uYH9XsuXg8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYH9XsuXg8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYH9XsuXg8 .navbar {
    height: 70px;
  }
  .cid-uYH9XsuXg8 .navbar.opened {
    height: auto;
  }
  .cid-uYH9XsuXg8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYH9Xtxgwb {
  background-image: url("../../../assets/images/arkansas-green-lint-cotton-banner.webp");
}
.cid-uYH9Xtxgwb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH9Xtxgwb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH9Xtxgwb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uYH9Xtxgwb .mbr-text,
.cid-uYH9Xtxgwb .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uYH9Xtxgwb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH9XvQslI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uYH9XvQslI img,
.cid-uYH9XvQslI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYH9XvQslI .item:focus,
.cid-uYH9XvQslI span:focus {
  outline: none;
}
.cid-uYH9XvQslI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uYH9XvQslI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYH9XvQslI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uYH9XvQslI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYH9XvQslI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uYH9XvQslI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uYH9XvQslI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYH9XvQslI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uYH9XvQslI .mbr-text,
.cid-uYH9XvQslI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uYH9XvQslI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uYH9XvQslI .item-subtitle {
  text-align: left;
}
.cid-uYH9XvQslI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9PhSGmYxF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9PhSGmYxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9PhSGmYxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9PhSGmYxF .mbr-section-title {
  color: #ffffff;
}
.cid-v9PhSGmYxF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuOshkOZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNuOshkOZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuOshkOZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuOshkOZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNuOshkOZ .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuMWregp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNuMWregp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNuMWregp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNuMWregp .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNuMWregp .number {
  color: #ffffff;
}
.cid-uYNuMWregp .period {
  display: block;
}
.cid-uYNuMWregp .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNuMWregp .period {
    font-size: 0.8rem;
  }
}
.cid-uYNuMWregp .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNuMWregp .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNuMWregp .mbr-section-title {
  color: #ffffff;
}
.cid-uYNuMWregp .mbr-text {
  color: #ffffff;
}
.cid-uYNuMWregp .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNuMWregp .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNuMWregp .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNuMWregp .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uYH9XyfTPB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uYH9XyfTPB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH9XyfTPB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH9XyfTPB .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uYH9XyfTPB .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uYH9XyfTPB .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uYH9XyfTPB .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uYH9XyfTPB .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uYH9XyfTPB .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uYH9XyfTPB .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uYH9XyfTPB .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uYH9XyfTPB .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uYH9XyfTPB [class^="socicon-"]:before,
.cid-uYH9XyfTPB [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uYH9XyfTPB .mbr-section-title,
.cid-uYH9XyfTPB .mbr-social-likes {
  color: #ffffff;
}
.cid-uYH9XyPerH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYH9XyPerH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH9XyPerH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH9XyPerH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uYH9XyPerH .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uYH9XyPerH .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYH9XyPerH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uYH9XyPerH .mbr-text {
  color: #ffffff;
}
.cid-uYH9XyPerH .card-title {
  color: #ffffff;
}
.cid-uYH9XyPerH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYH9XyPerH .mbr-section-title {
  color: #ffffff;
}
.cid-uYH9XyPerH .link {
  color: #4479d9;
}
.cid-uYH9XzutTW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uYH9XzutTW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYH9XzutTW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYH9XzutTW .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uYH9XzutTW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uYH9XzutTW .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uYH9XzutTW .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uYH9XzutTW div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uYH9XzutTW .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v0bZPeBH9G {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0bZPeBH9G nav.navbar {
  position: fixed;
}
.cid-v0bZPeBH9G .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-v0bZPeBH9G .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0bZPeBH9G .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0bZPeBH9G .dropdown-item:hover,
.cid-v0bZPeBH9G .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v0bZPeBH9G .dropdown-item:hover span {
  color: white;
}
.cid-v0bZPeBH9G .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0bZPeBH9G .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0bZPeBH9G .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0bZPeBH9G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0bZPeBH9G .nav-link {
  position: relative;
}
.cid-v0bZPeBH9G .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0bZPeBH9G .container {
    flex-wrap: wrap;
  }
}
.cid-v0bZPeBH9G .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0bZPeBH9G .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v0bZPeBH9G .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0bZPeBH9G .dropdown-menu,
.cid-v0bZPeBH9G .navbar.opened {
  background: #000000 !important;
}
.cid-v0bZPeBH9G .nav-item:focus,
.cid-v0bZPeBH9G .nav-link:focus {
  outline: none;
}
.cid-v0bZPeBH9G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0bZPeBH9G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0bZPeBH9G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0bZPeBH9G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0bZPeBH9G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0bZPeBH9G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0bZPeBH9G .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v0bZPeBH9G .navbar.opened {
  transition: all 0.3s;
}
.cid-v0bZPeBH9G .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0bZPeBH9G .navbar .navbar-logo img {
  width: auto;
}
.cid-v0bZPeBH9G .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0bZPeBH9G .navbar.collapsed {
  justify-content: center;
}
.cid-v0bZPeBH9G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0bZPeBH9G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0bZPeBH9G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0bZPeBH9G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0bZPeBH9G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0bZPeBH9G .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-v0bZPeBH9G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0bZPeBH9G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0bZPeBH9G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0bZPeBH9G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0bZPeBH9G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0bZPeBH9G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0bZPeBH9G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0bZPeBH9G .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-v0bZPeBH9G .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0bZPeBH9G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0bZPeBH9G .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0bZPeBH9G .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0bZPeBH9G .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0bZPeBH9G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v0bZPeBH9G .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v0bZPeBH9G .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0bZPeBH9G .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0bZPeBH9G .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0bZPeBH9G .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0bZPeBH9G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0bZPeBH9G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0bZPeBH9G .dropdown-item.active,
.cid-v0bZPeBH9G .dropdown-item:active {
  background-color: transparent;
}
.cid-v0bZPeBH9G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0bZPeBH9G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0bZPeBH9G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0bZPeBH9G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v0bZPeBH9G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0bZPeBH9G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0bZPeBH9G ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0bZPeBH9G .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0bZPeBH9G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0bZPeBH9G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0bZPeBH9G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0bZPeBH9G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0bZPeBH9G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0bZPeBH9G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0bZPeBH9G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0bZPeBH9G nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0bZPeBH9G nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0bZPeBH9G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0bZPeBH9G .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0bZPeBH9G a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0bZPeBH9G .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0bZPeBH9G .navbar {
    height: 70px;
  }
  .cid-v0bZPeBH9G .navbar.opened {
    height: auto;
  }
  .cid-v0bZPeBH9G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0bZPfufSq {
  background-image: url("../../../assets/images/gridart-20251012-173238869-2000x2000.webp");
}
.cid-v0bZPfufSq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPfufSq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPfufSq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0bZPfufSq .mbr-text,
.cid-v0bZPfufSq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v0bZPfufSq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v9mDfRtfDU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v9mDfRtfDU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9mDfRtfDU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v9mDfRtfDU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9mDfRtfDU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v9mDfRtfDU .text-wrapper {
    padding: 2rem;
  }
}
.cid-v9mDfRtfDU .mbr-section-title {
  color: #ffffff;
}
.cid-v9mDfRtfDU .mbr-text {
  color: #ffffff;
}
.cid-v0bZPg4rSz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPg4rSz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPg4rSz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPg4rSz .mbr-section-title {
  color: #ffffff;
}
.cid-v0bZPg4rSz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPgDiC6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPgDiC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPgDiC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPgDiC6 .mbr-section-title {
  color: #ffffff;
}
.cid-v0bZPgDiC6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1dOe356cP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOe356cP img,
.cid-v1dOe356cP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOe356cP .item:focus,
.cid-v1dOe356cP span:focus {
  outline: none;
}
.cid-v1dOe356cP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOe356cP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOe356cP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOe356cP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOe356cP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOe356cP .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOe356cP .mbr-text,
.cid-v1dOe356cP .mbr-section-btn {
  text-align: left;
}
.cid-v1dOe356cP .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOe356cP .item-subtitle {
  text-align: center;
}
.cid-v1dOe356cP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPi2rd7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPi2rd7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPi2rd7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPi2rd7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPi2rd7 .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOfOmUjn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOfOmUjn img,
.cid-v1dOfOmUjn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOfOmUjn .item:focus,
.cid-v1dOfOmUjn span:focus {
  outline: none;
}
.cid-v1dOfOmUjn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOfOmUjn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOfOmUjn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOfOmUjn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOfOmUjn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOfOmUjn .mbr-section-title {
  color: #232323;
}
.cid-v1dOfOmUjn .mbr-text,
.cid-v1dOfOmUjn .mbr-section-btn {
  text-align: left;
}
.cid-v1dOfOmUjn .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOfOmUjn .item-subtitle {
  text-align: center;
}
.cid-v0bZPjt0UK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPjt0UK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPjt0UK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPjt0UK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPjt0UK .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOh2MkOI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOh2MkOI img,
.cid-v1dOh2MkOI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOh2MkOI .item:focus,
.cid-v1dOh2MkOI span:focus {
  outline: none;
}
.cid-v1dOh2MkOI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOh2MkOI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOh2MkOI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOh2MkOI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOh2MkOI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOh2MkOI .mbr-section-title {
  color: #232323;
}
.cid-v1dOh2MkOI .mbr-text,
.cid-v1dOh2MkOI .mbr-section-btn {
  text-align: left;
}
.cid-v1dOh2MkOI .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOh2MkOI .item-subtitle {
  text-align: center;
}
.cid-v0bZPl0XQM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPl0XQM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPl0XQM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPl0XQM .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOhXSCAS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOhXSCAS img,
.cid-v1dOhXSCAS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOhXSCAS .item:focus,
.cid-v1dOhXSCAS span:focus {
  outline: none;
}
.cid-v1dOhXSCAS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOhXSCAS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOhXSCAS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOhXSCAS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOhXSCAS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOhXSCAS .mbr-section-title {
  color: #232323;
}
.cid-v1dOhXSCAS .mbr-text,
.cid-v1dOhXSCAS .mbr-section-btn {
  text-align: left;
}
.cid-v1dOhXSCAS .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOhXSCAS .item-subtitle {
  text-align: center;
}
.cid-v0bZPmzSYY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPmzSYY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPmzSYY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPmzSYY .mbr-section-title {
  color: #ffffff;
}
.cid-v1dOiAgpO9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1dOiAgpO9 img,
.cid-v1dOiAgpO9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1dOiAgpO9 .item:focus,
.cid-v1dOiAgpO9 span:focus {
  outline: none;
}
.cid-v1dOiAgpO9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1dOiAgpO9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1dOiAgpO9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1dOiAgpO9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v1dOiAgpO9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1dOiAgpO9 .mbr-section-title {
  color: #232323;
}
.cid-v1dOiAgpO9 .mbr-text,
.cid-v1dOiAgpO9 .mbr-section-btn {
  text-align: left;
}
.cid-v1dOiAgpO9 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v1dOiAgpO9 .item-subtitle {
  text-align: center;
}
.cid-v0bZPo1SwY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v0bZPo1SwY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPo1SwY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPo1SwY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPo1SwY .mbr-section-title {
  color: #ffffff;
}
.cid-v0bZPoOfYJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPoOfYJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPoOfYJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPoOfYJ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v0bZPoOfYJ .number {
  color: #ffffff;
}
.cid-v0bZPoOfYJ .period {
  display: block;
}
.cid-v0bZPoOfYJ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v0bZPoOfYJ .period {
    font-size: 0.8rem;
  }
}
.cid-v0bZPoOfYJ .btn {
  height: 100%;
  margin: 0;
}
.cid-v0bZPoOfYJ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v0bZPoOfYJ .mbr-section-title {
  color: #ffffff;
}
.cid-v0bZPoOfYJ .mbr-text {
  color: #ffffff;
}
.cid-v0bZPoOfYJ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v0bZPoOfYJ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v0bZPoOfYJ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v0bZPoOfYJ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v0bZPpHYH1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v0bZPpHYH1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPpHYH1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPpHYH1 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v0bZPpHYH1 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v0bZPpHYH1 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v0bZPpHYH1 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v0bZPpHYH1 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v0bZPpHYH1 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v0bZPpHYH1 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v0bZPpHYH1 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v0bZPpHYH1 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v0bZPpHYH1 [class^="socicon-"]:before,
.cid-v0bZPpHYH1 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v0bZPpHYH1 .mbr-section-title,
.cid-v0bZPpHYH1 .mbr-social-likes {
  color: #ffffff;
}
.cid-v0bZPquQeq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v0bZPquQeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPquQeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPquQeq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v0bZPquQeq .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v0bZPquQeq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bZPquQeq .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v0bZPquQeq .mbr-text {
  color: #ffffff;
}
.cid-v0bZPquQeq .card-title {
  color: #ffffff;
}
.cid-v0bZPquQeq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0bZPquQeq .mbr-section-title {
  color: #ffffff;
}
.cid-v0bZPquQeq .link {
  color: #4479d9;
}
.cid-v0bZPrnAgm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v0bZPrnAgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0bZPrnAgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0bZPrnAgm .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v0bZPrnAgm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0bZPrnAgm .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v0bZPrnAgm .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v0bZPrnAgm div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v0bZPrnAgm .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uuqGV8eSF3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuqGV8eSF3 nav.navbar {
  position: fixed;
}
.cid-uuqGV8eSF3 .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-uuqGV8eSF3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuqGV8eSF3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuqGV8eSF3 .dropdown-item:hover,
.cid-uuqGV8eSF3 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uuqGV8eSF3 .dropdown-item:hover span {
  color: white;
}
.cid-uuqGV8eSF3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuqGV8eSF3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuqGV8eSF3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuqGV8eSF3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuqGV8eSF3 .nav-link {
  position: relative;
}
.cid-uuqGV8eSF3 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqGV8eSF3 .container {
    flex-wrap: wrap;
  }
}
.cid-uuqGV8eSF3 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uuqGV8eSF3 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uuqGV8eSF3 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuqGV8eSF3 .dropdown-menu,
.cid-uuqGV8eSF3 .navbar.opened {
  background: #000000 !important;
}
.cid-uuqGV8eSF3 .nav-item:focus,
.cid-uuqGV8eSF3 .nav-link:focus {
  outline: none;
}
.cid-uuqGV8eSF3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuqGV8eSF3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuqGV8eSF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuqGV8eSF3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuqGV8eSF3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuqGV8eSF3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuqGV8eSF3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uuqGV8eSF3 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuqGV8eSF3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuqGV8eSF3 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuqGV8eSF3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuqGV8eSF3 .navbar.collapsed {
  justify-content: center;
}
.cid-uuqGV8eSF3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuqGV8eSF3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuqGV8eSF3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuqGV8eSF3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuqGV8eSF3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuqGV8eSF3 .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-uuqGV8eSF3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuqGV8eSF3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuqGV8eSF3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuqGV8eSF3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuqGV8eSF3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuqGV8eSF3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuqGV8eSF3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuqGV8eSF3 .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-uuqGV8eSF3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuqGV8eSF3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuqGV8eSF3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuqGV8eSF3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuqGV8eSF3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuqGV8eSF3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uuqGV8eSF3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uuqGV8eSF3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuqGV8eSF3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuqGV8eSF3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuqGV8eSF3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuqGV8eSF3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuqGV8eSF3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uuqGV8eSF3 .dropdown-item.active,
.cid-uuqGV8eSF3 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuqGV8eSF3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuqGV8eSF3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuqGV8eSF3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuqGV8eSF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uuqGV8eSF3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuqGV8eSF3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuqGV8eSF3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuqGV8eSF3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuqGV8eSF3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuqGV8eSF3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uuqGV8eSF3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuqGV8eSF3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqGV8eSF3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuqGV8eSF3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuqGV8eSF3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqGV8eSF3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuqGV8eSF3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuqGV8eSF3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuqGV8eSF3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uuqGV8eSF3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuqGV8eSF3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uuqGV8eSF3 .navbar {
    height: 70px;
  }
  .cid-uuqGV8eSF3 .navbar.opened {
    height: auto;
  }
  .cid-uuqGV8eSF3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuqGV906dv {
  background-image: url("../../../assets/images/yellow-crook-neck-squash-banner.webp");
}
.cid-uuqGV906dv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqGV906dv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqGV906dv .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uuqGV906dv .mbr-text,
.cid-uuqGV906dv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uuqGV906dv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uuqGV9zo1p {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuqGV9zo1p img,
.cid-uuqGV9zo1p .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uuqGV9zo1p .item:focus,
.cid-uuqGV9zo1p span:focus {
  outline: none;
}
.cid-uuqGV9zo1p .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uuqGV9zo1p .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuqGV9zo1p .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uuqGV9zo1p .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuqGV9zo1p .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uuqGV9zo1p .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uuqGV9zo1p .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuqGV9zo1p .mbr-section-title {
  color: #ffffff;
}
.cid-uuqGV9zo1p .mbr-text,
.cid-uuqGV9zo1p .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uuqGV9zo1p .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uuqGV9zo1p .item-subtitle {
  text-align: left;
}
.cid-uuqGV9zo1p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqGV9zo1p P {
  color: #fafafa;
}
.cid-uZYdshAatY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZYdshAatY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYdshAatY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYdshAatY .mbr-section-title {
  color: #ffffff;
}
.cid-uZYdshAatY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpdD3Ivt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uYNpdD3Ivt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpdD3Ivt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpdD3Ivt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYNpdD3Ivt .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpcon3Wg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYNpcon3Wg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYNpcon3Wg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYNpcon3Wg .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYNpcon3Wg .number {
  color: #ffffff;
}
.cid-uYNpcon3Wg .period {
  display: block;
}
.cid-uYNpcon3Wg .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYNpcon3Wg .period {
    font-size: 0.8rem;
  }
}
.cid-uYNpcon3Wg .btn {
  height: 100%;
  margin: 0;
}
.cid-uYNpcon3Wg .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYNpcon3Wg .mbr-section-title {
  color: #ffffff;
}
.cid-uYNpcon3Wg .mbr-text {
  color: #ffffff;
}
.cid-uYNpcon3Wg .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYNpcon3Wg .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYNpcon3Wg .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYNpcon3Wg .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uuqGVbJ25K {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uuqGVbJ25K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqGVbJ25K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqGVbJ25K .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uuqGVbJ25K .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uuqGVbJ25K .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uuqGVbJ25K .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uuqGVbJ25K .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uuqGVbJ25K .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uuqGVbJ25K .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uuqGVbJ25K .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uuqGVbJ25K .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uuqGVbJ25K [class^="socicon-"]:before,
.cid-uuqGVbJ25K [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uuqGVbJ25K .mbr-section-title,
.cid-uuqGVbJ25K .mbr-social-likes {
  color: #ffffff;
}
.cid-uuqGVcnNvW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uuqGVcnNvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqGVcnNvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqGVcnNvW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uuqGVcnNvW .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uuqGVcnNvW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqGVcnNvW .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uuqGVcnNvW .mbr-text {
  color: #ffffff;
}
.cid-uuqGVcnNvW .card-title {
  color: #ffffff;
}
.cid-uuqGVcnNvW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuqGVcnNvW .mbr-section-title {
  color: #ffffff;
}
.cid-uuqGVcnNvW .link {
  color: #4479d9;
}
.cid-uuqGVd6E6V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uuqGVd6E6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuqGVd6E6V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuqGVd6E6V .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uuqGVd6E6V .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uuqGVd6E6V .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uuqGVd6E6V .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uuqGVd6E6V div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uuqGVd6E6V .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v121nCePBc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v121nCePBc nav.navbar {
  position: fixed;
}
.cid-v121nCePBc .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-v121nCePBc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v121nCePBc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v121nCePBc .dropdown-item:hover,
.cid-v121nCePBc .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v121nCePBc .dropdown-item:hover span {
  color: white;
}
.cid-v121nCePBc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v121nCePBc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v121nCePBc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v121nCePBc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v121nCePBc .nav-link {
  position: relative;
}
.cid-v121nCePBc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v121nCePBc .container {
    flex-wrap: wrap;
  }
}
.cid-v121nCePBc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v121nCePBc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v121nCePBc .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v121nCePBc .dropdown-menu,
.cid-v121nCePBc .navbar.opened {
  background: #000000 !important;
}
.cid-v121nCePBc .nav-item:focus,
.cid-v121nCePBc .nav-link:focus {
  outline: none;
}
.cid-v121nCePBc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v121nCePBc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v121nCePBc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v121nCePBc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v121nCePBc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v121nCePBc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v121nCePBc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v121nCePBc .navbar.opened {
  transition: all 0.3s;
}
.cid-v121nCePBc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v121nCePBc .navbar .navbar-logo img {
  width: auto;
}
.cid-v121nCePBc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v121nCePBc .navbar.collapsed {
  justify-content: center;
}
.cid-v121nCePBc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v121nCePBc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v121nCePBc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v121nCePBc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v121nCePBc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v121nCePBc .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-v121nCePBc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v121nCePBc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v121nCePBc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v121nCePBc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v121nCePBc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v121nCePBc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v121nCePBc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v121nCePBc .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-v121nCePBc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v121nCePBc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v121nCePBc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v121nCePBc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v121nCePBc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v121nCePBc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v121nCePBc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v121nCePBc .navbar.navbar-short {
  min-height: 60px;
}
.cid-v121nCePBc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v121nCePBc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v121nCePBc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v121nCePBc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v121nCePBc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v121nCePBc .dropdown-item.active,
.cid-v121nCePBc .dropdown-item:active {
  background-color: transparent;
}
.cid-v121nCePBc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v121nCePBc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v121nCePBc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v121nCePBc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v121nCePBc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v121nCePBc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v121nCePBc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v121nCePBc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v121nCePBc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v121nCePBc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v121nCePBc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v121nCePBc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v121nCePBc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v121nCePBc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v121nCePBc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v121nCePBc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v121nCePBc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v121nCePBc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v121nCePBc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v121nCePBc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v121nCePBc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v121nCePBc .navbar {
    height: 70px;
  }
  .cid-v121nCePBc .navbar.opened {
    height: auto;
  }
  .cid-v121nCePBc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v121nD0BRj {
  background-image: url("../../../assets/images/img-20240509-93301358-710x947.webp");
}
.cid-v121nD0BRj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nD0BRj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nD0BRj .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v121nD0BRj .mbr-text,
.cid-v121nD0BRj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v121nD0BRj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v121nDCuK3 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v121nDCuK3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nDCuK3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nDCuK3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v121nDCuK3 .mbr-section-title {
  color: #ffffff;
}
.cid-v12sayOP58 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12sayOP58 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12sayOP58 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12sayOP58 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12sayOP58 .mbr-section-title {
  color: #ffffff;
}
.cid-v12wHpq13M {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12wHpq13M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12wHpq13M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12wHpq13M .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12wHpq13M .mbr-section-title {
  color: #ffffff;
}
.cid-v12zwY3rDG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12zwY3rDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12zwY3rDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12zwY3rDG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12zwY3rDG .mbr-section-title {
  color: #ffffff;
}
.cid-v12CaLCacQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12CaLCacQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12CaLCacQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12CaLCacQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12CaLCacQ .mbr-section-title {
  color: #ffffff;
}
.cid-v12GelJjPX {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12GelJjPX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12GelJjPX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12GelJjPX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12GelJjPX .mbr-section-title {
  color: #ffffff;
}
.cid-v12JmdRj3k {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12JmdRj3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12JmdRj3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12JmdRj3k .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12JmdRj3k .mbr-section-title {
  color: #ffffff;
}
.cid-v12RlsUSxF {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12RlsUSxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12RlsUSxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12RlsUSxF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12RlsUSxF .mbr-section-title {
  color: #ffffff;
}
.cid-v12TeFtLn1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v12TeFtLn1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v12TeFtLn1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v12TeFtLn1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v12TeFtLn1 .mbr-section-title {
  color: #ffffff;
}
.cid-v121nJuNht {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v121nJuNht .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nJuNht .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nJuNht .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v121nJuNht .mbr-section-title {
  color: #ffffff;
}
.cid-v121nK69GB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v121nK69GB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nK69GB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nK69GB .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v121nK69GB .number {
  color: #ffffff;
}
.cid-v121nK69GB .period {
  display: block;
}
.cid-v121nK69GB .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v121nK69GB .period {
    font-size: 0.8rem;
  }
}
.cid-v121nK69GB .btn {
  height: 100%;
  margin: 0;
}
.cid-v121nK69GB .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v121nK69GB .mbr-section-title {
  color: #ffffff;
}
.cid-v121nK69GB .mbr-text {
  color: #ffffff;
}
.cid-v121nK69GB .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v121nK69GB .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v121nK69GB .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v121nK69GB .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v121nKOhjD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v121nKOhjD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nKOhjD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nKOhjD .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v121nKOhjD .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v121nKOhjD .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v121nKOhjD .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v121nKOhjD .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v121nKOhjD .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v121nKOhjD .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v121nKOhjD .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v121nKOhjD .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v121nKOhjD [class^="socicon-"]:before,
.cid-v121nKOhjD [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v121nKOhjD .mbr-section-title,
.cid-v121nKOhjD .mbr-social-likes {
  color: #ffffff;
}
.cid-v121nLq5UX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v121nLq5UX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nLq5UX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nLq5UX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v121nLq5UX .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v121nLq5UX .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v121nLq5UX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v121nLq5UX .mbr-text {
  color: #ffffff;
}
.cid-v121nLq5UX .card-title {
  color: #ffffff;
}
.cid-v121nLq5UX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v121nLq5UX .mbr-section-title {
  color: #ffffff;
}
.cid-v121nLq5UX .link {
  color: #4479d9;
}
.cid-v121nM71Ex {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v121nM71Ex .mbr-fallback-image.disabled {
  display: none;
}
.cid-v121nM71Ex .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v121nM71Ex .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v121nM71Ex .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v121nM71Ex .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v121nM71Ex .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v121nM71Ex div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v121nM71Ex .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uaeiTzSLW1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uaeiTzSLW1 nav.navbar {
  position: fixed;
}
.cid-uaeiTzSLW1 .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-uaeiTzSLW1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaeiTzSLW1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaeiTzSLW1 .dropdown-item:hover,
.cid-uaeiTzSLW1 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uaeiTzSLW1 .dropdown-item:hover span {
  color: white;
}
.cid-uaeiTzSLW1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaeiTzSLW1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaeiTzSLW1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaeiTzSLW1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaeiTzSLW1 .nav-link {
  position: relative;
}
.cid-uaeiTzSLW1 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaeiTzSLW1 .container {
    flex-wrap: wrap;
  }
}
.cid-uaeiTzSLW1 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaeiTzSLW1 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uaeiTzSLW1 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaeiTzSLW1 .dropdown-menu,
.cid-uaeiTzSLW1 .navbar.opened {
  background: #000000 !important;
}
.cid-uaeiTzSLW1 .nav-item:focus,
.cid-uaeiTzSLW1 .nav-link:focus {
  outline: none;
}
.cid-uaeiTzSLW1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaeiTzSLW1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaeiTzSLW1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaeiTzSLW1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaeiTzSLW1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaeiTzSLW1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaeiTzSLW1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uaeiTzSLW1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uaeiTzSLW1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaeiTzSLW1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uaeiTzSLW1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaeiTzSLW1 .navbar.collapsed {
  justify-content: center;
}
.cid-uaeiTzSLW1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaeiTzSLW1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaeiTzSLW1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uaeiTzSLW1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaeiTzSLW1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaeiTzSLW1 .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-uaeiTzSLW1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaeiTzSLW1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaeiTzSLW1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaeiTzSLW1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaeiTzSLW1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaeiTzSLW1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaeiTzSLW1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaeiTzSLW1 .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-uaeiTzSLW1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaeiTzSLW1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaeiTzSLW1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaeiTzSLW1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaeiTzSLW1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaeiTzSLW1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaeiTzSLW1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaeiTzSLW1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uaeiTzSLW1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaeiTzSLW1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaeiTzSLW1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uaeiTzSLW1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaeiTzSLW1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaeiTzSLW1 .dropdown-item.active,
.cid-uaeiTzSLW1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uaeiTzSLW1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaeiTzSLW1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaeiTzSLW1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaeiTzSLW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uaeiTzSLW1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaeiTzSLW1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaeiTzSLW1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaeiTzSLW1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaeiTzSLW1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaeiTzSLW1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uaeiTzSLW1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaeiTzSLW1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaeiTzSLW1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaeiTzSLW1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaeiTzSLW1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaeiTzSLW1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaeiTzSLW1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaeiTzSLW1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaeiTzSLW1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaeiTzSLW1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaeiTzSLW1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uaeiTzSLW1 .navbar {
    height: 70px;
  }
  .cid-uaeiTzSLW1 .navbar.opened {
    height: auto;
  }
  .cid-uaeiTzSLW1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaeiTAHB99 {
  background-image: url("../../../assets/images/troybilit-horse-tiller-banner.webp");
}
.cid-uaeiTAHB99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaeiTAHB99 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaeiTAHB99 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uaeiTAHB99 .mbr-text,
.cid-uaeiTAHB99 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uaeiTAHB99 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uaempgSFce {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaempgSFce img,
.cid-uaempgSFce .item-img {
  width: 100%;
}
.cid-uaempgSFce .item:focus,
.cid-uaempgSFce span:focus {
  outline: none;
}
.cid-uaempgSFce .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaempgSFce .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaempgSFce .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaempgSFce .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaempgSFce .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaempgSFce .mbr-section-title {
  color: #ffffff;
}
.cid-uaempgSFce .mbr-text,
.cid-uaempgSFce .mbr-section-btn {
  text-align: left;
}
.cid-uaempgSFce .item-title {
  text-align: left;
}
.cid-uaempgSFce .item-subtitle {
  text-align: center;
}
.cid-uaempgSFce .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaerbFRW87 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaerbFRW87 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaerbFRW87 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaerbFRW87 .mbr-section-title {
  color: #ffffff;
}
.cid-uaerbFRW87 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaizOGoEK1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaizOGoEK1 img,
.cid-uaizOGoEK1 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uaizOGoEK1 .item:focus,
.cid-uaizOGoEK1 span:focus {
  outline: none;
}
.cid-uaizOGoEK1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaizOGoEK1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaizOGoEK1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaizOGoEK1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaizOGoEK1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaizOGoEK1 .mbr-section-title {
  color: #232323;
}
.cid-uaizOGoEK1 .mbr-text,
.cid-uaizOGoEK1 .mbr-section-btn {
  text-align: left;
}
.cid-uaizOGoEK1 .item-title {
  text-align: left;
}
.cid-uaizOGoEK1 .item-subtitle {
  text-align: center;
}
.cid-uaixDZjMng {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaixDZjMng .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaixDZjMng .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaixDZjMng .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaixDZjMng .mbr-section-title {
  color: #ffffff;
}
.cid-uaiDREZaoY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaiDREZaoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaiDREZaoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaiDREZaoY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaiDREZaoY .mbr-section-title {
  color: #ffffff;
}
.cid-v3FDc3ovH4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FDc3ovH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FDc3ovH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FDc3ovH4 .mbr-section-title {
  color: #ffffff;
}
.cid-v3FDc3ovH4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN59Tq25e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN59Tq25e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN59Tq25e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN59Tq25e .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN59Tq25e .number {
  color: #ffffff;
}
.cid-uYN59Tq25e .period {
  display: block;
}
.cid-uYN59Tq25e .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN59Tq25e .period {
    font-size: 0.8rem;
  }
}
.cid-uYN59Tq25e .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN59Tq25e .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN59Tq25e .mbr-section-title {
  color: #ffffff;
}
.cid-uYN59Tq25e .mbr-text {
  color: #ffffff;
}
.cid-uYN59Tq25e .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN59Tq25e .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN59Tq25e .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN59Tq25e .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uaeiTKQL77 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uaeiTKQL77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaeiTKQL77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaeiTKQL77 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uaeiTKQL77 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uaeiTKQL77 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uaeiTKQL77 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uaeiTKQL77 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uaeiTKQL77 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uaeiTKQL77 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uaeiTKQL77 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uaeiTKQL77 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uaeiTKQL77 [class^="socicon-"]:before,
.cid-uaeiTKQL77 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uaeiTKQL77 .mbr-section-title,
.cid-uaeiTKQL77 .mbr-social-likes {
  color: #ffffff;
}
.cid-uaeiTLIPOI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uaeiTLIPOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaeiTLIPOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaeiTLIPOI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uaeiTLIPOI .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uaeiTLIPOI .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uaeiTLIPOI .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uaeiTLIPOI .mbr-text {
  color: #ffffff;
}
.cid-uaeiTLIPOI .card-title {
  color: #ffffff;
}
.cid-uaeiTLIPOI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaeiTLIPOI .mbr-section-title {
  color: #ffffff;
}
.cid-uaeiTLIPOI .link {
  color: #4479d9;
}
.cid-uaeiTMFNkn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uaeiTMFNkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaeiTMFNkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaeiTMFNkn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uaeiTMFNkn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uaeiTMFNkn .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uaeiTMFNkn .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uaeiTMFNkn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uaeiTMFNkn .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v19FZdNB3X {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v19FZdNB3X nav.navbar {
  position: fixed;
}
.cid-v19FZdNB3X .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-v19FZdNB3X .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v19FZdNB3X .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v19FZdNB3X .dropdown-item:hover,
.cid-v19FZdNB3X .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v19FZdNB3X .dropdown-item:hover span {
  color: white;
}
.cid-v19FZdNB3X .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v19FZdNB3X .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v19FZdNB3X .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v19FZdNB3X .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v19FZdNB3X .nav-link {
  position: relative;
}
.cid-v19FZdNB3X .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v19FZdNB3X .container {
    flex-wrap: wrap;
  }
}
.cid-v19FZdNB3X .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v19FZdNB3X .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v19FZdNB3X .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v19FZdNB3X .dropdown-menu,
.cid-v19FZdNB3X .navbar.opened {
  background: #000000 !important;
}
.cid-v19FZdNB3X .nav-item:focus,
.cid-v19FZdNB3X .nav-link:focus {
  outline: none;
}
.cid-v19FZdNB3X .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v19FZdNB3X .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v19FZdNB3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v19FZdNB3X .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v19FZdNB3X .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v19FZdNB3X .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v19FZdNB3X .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v19FZdNB3X .navbar.opened {
  transition: all 0.3s;
}
.cid-v19FZdNB3X .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v19FZdNB3X .navbar .navbar-logo img {
  width: auto;
}
.cid-v19FZdNB3X .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v19FZdNB3X .navbar.collapsed {
  justify-content: center;
}
.cid-v19FZdNB3X .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v19FZdNB3X .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v19FZdNB3X .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v19FZdNB3X .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v19FZdNB3X .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v19FZdNB3X .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-v19FZdNB3X .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v19FZdNB3X .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v19FZdNB3X .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v19FZdNB3X .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v19FZdNB3X .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v19FZdNB3X .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v19FZdNB3X .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v19FZdNB3X .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-v19FZdNB3X .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v19FZdNB3X .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v19FZdNB3X .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v19FZdNB3X .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v19FZdNB3X .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v19FZdNB3X .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v19FZdNB3X .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v19FZdNB3X .navbar.navbar-short {
  min-height: 60px;
}
.cid-v19FZdNB3X .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v19FZdNB3X .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v19FZdNB3X .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v19FZdNB3X .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v19FZdNB3X .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v19FZdNB3X .dropdown-item.active,
.cid-v19FZdNB3X .dropdown-item:active {
  background-color: transparent;
}
.cid-v19FZdNB3X .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v19FZdNB3X .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v19FZdNB3X .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v19FZdNB3X .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v19FZdNB3X .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v19FZdNB3X .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v19FZdNB3X ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v19FZdNB3X .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v19FZdNB3X button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v19FZdNB3X button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v19FZdNB3X button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v19FZdNB3X button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19FZdNB3X button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19FZdNB3X button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v19FZdNB3X nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19FZdNB3X nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v19FZdNB3X nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v19FZdNB3X nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19FZdNB3X .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v19FZdNB3X a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v19FZdNB3X .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v19FZdNB3X .navbar {
    height: 70px;
  }
  .cid-v19FZdNB3X .navbar.opened {
    height: auto;
  }
  .cid-v19FZdNB3X .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v19FZetCWN {
  background-image: url("../../../assets/images/double-red-sweet-corn-banner.webp");
}
.cid-v19FZetCWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZetCWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZetCWN .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v19FZetCWN .mbr-text,
.cid-v19FZetCWN .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v19FZetCWN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v19FZeVJTV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v19FZeVJTV img,
.cid-v19FZeVJTV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v19FZeVJTV .item:focus,
.cid-v19FZeVJTV span:focus {
  outline: none;
}
.cid-v19FZeVJTV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v19FZeVJTV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v19FZeVJTV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v19FZeVJTV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v19FZeVJTV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v19FZeVJTV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v19FZeVJTV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v19FZeVJTV .mbr-section-title {
  color: #ffffff;
}
.cid-v19FZeVJTV .mbr-text,
.cid-v19FZeVJTV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v19FZeVJTV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v19FZeVJTV .item-subtitle {
  text-align: left;
}
.cid-v19FZeVJTV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50zjSRHHj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50zjSRHHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50zjSRHHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50zjSRHHj .mbr-section-title {
  color: #ffffff;
}
.cid-v50zjSRHHj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19FZfQ54W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v19FZfQ54W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZfQ54W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZfQ54W .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19FZfQ54W .mbr-section-title {
  color: #ffffff;
}
.cid-v19FZgfCME {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v19FZgfCME .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZgfCME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZgfCME .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v19FZgfCME .number {
  color: #ffffff;
}
.cid-v19FZgfCME .period {
  display: block;
}
.cid-v19FZgfCME .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v19FZgfCME .period {
    font-size: 0.8rem;
  }
}
.cid-v19FZgfCME .btn {
  height: 100%;
  margin: 0;
}
.cid-v19FZgfCME .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v19FZgfCME .mbr-section-title {
  color: #ffffff;
}
.cid-v19FZgfCME .mbr-text {
  color: #ffffff;
}
.cid-v19FZgfCME .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v19FZgfCME .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v19FZgfCME .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v19FZgfCME .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v19FZgL9e5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v19FZgL9e5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZgL9e5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZgL9e5 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v19FZgL9e5 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v19FZgL9e5 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v19FZgL9e5 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v19FZgL9e5 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v19FZgL9e5 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v19FZgL9e5 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v19FZgL9e5 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v19FZgL9e5 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v19FZgL9e5 [class^="socicon-"]:before,
.cid-v19FZgL9e5 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v19FZgL9e5 .mbr-section-title,
.cid-v19FZgL9e5 .mbr-social-likes {
  color: #ffffff;
}
.cid-v19FZhdEZZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v19FZhdEZZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZhdEZZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZhdEZZ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v19FZhdEZZ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v19FZhdEZZ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v19FZhdEZZ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v19FZhdEZZ .mbr-text {
  color: #ffffff;
}
.cid-v19FZhdEZZ .card-title {
  color: #ffffff;
}
.cid-v19FZhdEZZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19FZhdEZZ .mbr-section-title {
  color: #ffffff;
}
.cid-v19FZhdEZZ .link {
  color: #4479d9;
}
.cid-v19FZhKUGf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v19FZhKUGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19FZhKUGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19FZhKUGf .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v19FZhKUGf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v19FZhKUGf .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v19FZhKUGf .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v19FZhKUGf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v19FZhKUGf .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v19YSlychZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v19YSlychZ nav.navbar {
  position: fixed;
}
.cid-v19YSlychZ .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-v19YSlychZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v19YSlychZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v19YSlychZ .dropdown-item:hover,
.cid-v19YSlychZ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v19YSlychZ .dropdown-item:hover span {
  color: white;
}
.cid-v19YSlychZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v19YSlychZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v19YSlychZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v19YSlychZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v19YSlychZ .nav-link {
  position: relative;
}
.cid-v19YSlychZ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v19YSlychZ .container {
    flex-wrap: wrap;
  }
}
.cid-v19YSlychZ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v19YSlychZ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v19YSlychZ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v19YSlychZ .dropdown-menu,
.cid-v19YSlychZ .navbar.opened {
  background: #000000 !important;
}
.cid-v19YSlychZ .nav-item:focus,
.cid-v19YSlychZ .nav-link:focus {
  outline: none;
}
.cid-v19YSlychZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v19YSlychZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v19YSlychZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v19YSlychZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v19YSlychZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v19YSlychZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v19YSlychZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v19YSlychZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v19YSlychZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v19YSlychZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v19YSlychZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v19YSlychZ .navbar.collapsed {
  justify-content: center;
}
.cid-v19YSlychZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v19YSlychZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v19YSlychZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v19YSlychZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v19YSlychZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v19YSlychZ .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-v19YSlychZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v19YSlychZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v19YSlychZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v19YSlychZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v19YSlychZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v19YSlychZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v19YSlychZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v19YSlychZ .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-v19YSlychZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v19YSlychZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v19YSlychZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v19YSlychZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v19YSlychZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v19YSlychZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v19YSlychZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v19YSlychZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v19YSlychZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v19YSlychZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v19YSlychZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v19YSlychZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v19YSlychZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v19YSlychZ .dropdown-item.active,
.cid-v19YSlychZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v19YSlychZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v19YSlychZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v19YSlychZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v19YSlychZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v19YSlychZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v19YSlychZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v19YSlychZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v19YSlychZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v19YSlychZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v19YSlychZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v19YSlychZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v19YSlychZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19YSlychZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v19YSlychZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v19YSlychZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19YSlychZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v19YSlychZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v19YSlychZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v19YSlychZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v19YSlychZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v19YSlychZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v19YSlychZ .navbar {
    height: 70px;
  }
  .cid-v19YSlychZ .navbar.opened {
    height: auto;
  }
  .cid-v19YSlychZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v19YSmiuIW {
  background-image: url("../../../assets/images/hopi-blue-corn-banner.webp");
}
.cid-v19YSmiuIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSmiuIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSmiuIW .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v19YSmiuIW .mbr-text,
.cid-v19YSmiuIW .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v19YSmiuIW .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v19YSmN6PF {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v19YSmN6PF img,
.cid-v19YSmN6PF .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v19YSmN6PF .item:focus,
.cid-v19YSmN6PF span:focus {
  outline: none;
}
.cid-v19YSmN6PF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v19YSmN6PF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v19YSmN6PF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v19YSmN6PF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v19YSmN6PF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v19YSmN6PF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v19YSmN6PF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v19YSmN6PF .mbr-section-title {
  color: #ffffff;
}
.cid-v19YSmN6PF .mbr-text,
.cid-v19YSmN6PF .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v19YSmN6PF .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v19YSmN6PF .item-subtitle {
  text-align: left;
}
.cid-v19YSmN6PF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50zg45Qxr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50zg45Qxr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50zg45Qxr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50zg45Qxr .mbr-section-title {
  color: #ffffff;
}
.cid-v50zg45Qxr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19YSnKP6M {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v19YSnKP6M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSnKP6M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSnKP6M .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19YSnKP6M .mbr-section-title {
  color: #ffffff;
}
.cid-v19YSofWja {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v19YSofWja .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSofWja .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSofWja .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v19YSofWja .number {
  color: #ffffff;
}
.cid-v19YSofWja .period {
  display: block;
}
.cid-v19YSofWja .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v19YSofWja .period {
    font-size: 0.8rem;
  }
}
.cid-v19YSofWja .btn {
  height: 100%;
  margin: 0;
}
.cid-v19YSofWja .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v19YSofWja .mbr-section-title {
  color: #ffffff;
}
.cid-v19YSofWja .mbr-text {
  color: #ffffff;
}
.cid-v19YSofWja .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v19YSofWja .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v19YSofWja .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v19YSofWja .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v19YSoRbEi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v19YSoRbEi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSoRbEi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSoRbEi .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v19YSoRbEi .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v19YSoRbEi .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v19YSoRbEi .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v19YSoRbEi .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v19YSoRbEi .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v19YSoRbEi .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v19YSoRbEi .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v19YSoRbEi .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v19YSoRbEi [class^="socicon-"]:before,
.cid-v19YSoRbEi [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v19YSoRbEi .mbr-section-title,
.cid-v19YSoRbEi .mbr-social-likes {
  color: #ffffff;
}
.cid-v19YSplZSr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v19YSplZSr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSplZSr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSplZSr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v19YSplZSr .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v19YSplZSr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v19YSplZSr .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v19YSplZSr .mbr-text {
  color: #ffffff;
}
.cid-v19YSplZSr .card-title {
  color: #ffffff;
}
.cid-v19YSplZSr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v19YSplZSr .mbr-section-title {
  color: #ffffff;
}
.cid-v19YSplZSr .link {
  color: #4479d9;
}
.cid-v19YSpTG3T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v19YSpTG3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v19YSpTG3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v19YSpTG3T .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v19YSpTG3T .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v19YSpTG3T .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v19YSpTG3T .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v19YSpTG3T div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v19YSpTG3T .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v1a6vdHvxo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1a6vdHvxo nav.navbar {
  position: fixed;
}
.cid-v1a6vdHvxo .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-v1a6vdHvxo .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1a6vdHvxo .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1a6vdHvxo .dropdown-item:hover,
.cid-v1a6vdHvxo .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v1a6vdHvxo .dropdown-item:hover span {
  color: white;
}
.cid-v1a6vdHvxo .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1a6vdHvxo .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1a6vdHvxo .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1a6vdHvxo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1a6vdHvxo .nav-link {
  position: relative;
}
.cid-v1a6vdHvxo .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1a6vdHvxo .container {
    flex-wrap: wrap;
  }
}
.cid-v1a6vdHvxo .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1a6vdHvxo .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1a6vdHvxo .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1a6vdHvxo .dropdown-menu,
.cid-v1a6vdHvxo .navbar.opened {
  background: #000000 !important;
}
.cid-v1a6vdHvxo .nav-item:focus,
.cid-v1a6vdHvxo .nav-link:focus {
  outline: none;
}
.cid-v1a6vdHvxo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1a6vdHvxo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1a6vdHvxo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1a6vdHvxo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1a6vdHvxo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1a6vdHvxo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1a6vdHvxo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v1a6vdHvxo .navbar.opened {
  transition: all 0.3s;
}
.cid-v1a6vdHvxo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1a6vdHvxo .navbar .navbar-logo img {
  width: auto;
}
.cid-v1a6vdHvxo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1a6vdHvxo .navbar.collapsed {
  justify-content: center;
}
.cid-v1a6vdHvxo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1a6vdHvxo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1a6vdHvxo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v1a6vdHvxo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1a6vdHvxo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1a6vdHvxo .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-v1a6vdHvxo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1a6vdHvxo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1a6vdHvxo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1a6vdHvxo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1a6vdHvxo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1a6vdHvxo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1a6vdHvxo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1a6vdHvxo .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-v1a6vdHvxo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1a6vdHvxo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1a6vdHvxo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1a6vdHvxo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1a6vdHvxo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1a6vdHvxo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1a6vdHvxo .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1a6vdHvxo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1a6vdHvxo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1a6vdHvxo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1a6vdHvxo .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1a6vdHvxo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1a6vdHvxo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1a6vdHvxo .dropdown-item.active,
.cid-v1a6vdHvxo .dropdown-item:active {
  background-color: transparent;
}
.cid-v1a6vdHvxo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1a6vdHvxo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1a6vdHvxo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1a6vdHvxo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v1a6vdHvxo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1a6vdHvxo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1a6vdHvxo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1a6vdHvxo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1a6vdHvxo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1a6vdHvxo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1a6vdHvxo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1a6vdHvxo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1a6vdHvxo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1a6vdHvxo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1a6vdHvxo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1a6vdHvxo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1a6vdHvxo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1a6vdHvxo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1a6vdHvxo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1a6vdHvxo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1a6vdHvxo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v1a6vdHvxo .navbar {
    height: 70px;
  }
  .cid-v1a6vdHvxo .navbar.opened {
    height: auto;
  }
  .cid-v1a6vdHvxo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1a6vesR9p {
  background-image: url("../../../assets/images/corn-banner.webp");
}
.cid-v1a6vesR9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vesR9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vesR9p .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v1a6vesR9p .mbr-text,
.cid-v1a6vesR9p .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v1a6vesR9p .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v1a8a471GX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1a8a471GX img,
.cid-v1a8a471GX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v1a8a471GX .item:focus,
.cid-v1a8a471GX span:focus {
  outline: none;
}
.cid-v1a8a471GX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v1a8a471GX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v1a8a471GX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v1a8a471GX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1a8a471GX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v1a8a471GX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v1a8a471GX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v1a8a471GX .mbr-section-title {
  color: #ffffff;
}
.cid-v1a8a471GX .mbr-text,
.cid-v1a8a471GX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v1a8a471GX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v1a8a471GX .item-subtitle {
  text-align: left;
}
.cid-v1a8a471GX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50v8b7bcg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v50v8b7bcg img,
.cid-v50v8b7bcg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v50v8b7bcg .item:focus,
.cid-v50v8b7bcg span:focus {
  outline: none;
}
.cid-v50v8b7bcg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50v8b7bcg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50v8b7bcg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v50v8b7bcg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50v8b7bcg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v50v8b7bcg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v50v8b7bcg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50v8b7bcg .mbr-section-title {
  color: #ffffff;
}
.cid-v50v8b7bcg .mbr-text,
.cid-v50v8b7bcg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v50v8b7bcg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v50v8b7bcg .item-subtitle {
  text-align: left;
}
.cid-v50v8b7bcg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1a6vfxFEL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v1a6vfxFEL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vfxFEL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vfxFEL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1a6vfxFEL .mbr-section-title {
  color: #ffffff;
}
.cid-v1a6vfZTVn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1a6vfZTVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vfZTVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vfZTVn .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v1a6vfZTVn .number {
  color: #ffffff;
}
.cid-v1a6vfZTVn .period {
  display: block;
}
.cid-v1a6vfZTVn .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v1a6vfZTVn .period {
    font-size: 0.8rem;
  }
}
.cid-v1a6vfZTVn .btn {
  height: 100%;
  margin: 0;
}
.cid-v1a6vfZTVn .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v1a6vfZTVn .mbr-section-title {
  color: #ffffff;
}
.cid-v1a6vfZTVn .mbr-text {
  color: #ffffff;
}
.cid-v1a6vfZTVn .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v1a6vfZTVn .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v1a6vfZTVn .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v1a6vfZTVn .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v1a6vgB15p {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v1a6vgB15p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vgB15p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vgB15p .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v1a6vgB15p .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v1a6vgB15p .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v1a6vgB15p .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v1a6vgB15p .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v1a6vgB15p .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v1a6vgB15p .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v1a6vgB15p .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v1a6vgB15p .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v1a6vgB15p [class^="socicon-"]:before,
.cid-v1a6vgB15p [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v1a6vgB15p .mbr-section-title,
.cid-v1a6vgB15p .mbr-social-likes {
  color: #ffffff;
}
.cid-v1a6vh5Ktd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1a6vh5Ktd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vh5Ktd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vh5Ktd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v1a6vh5Ktd .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v1a6vh5Ktd .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v1a6vh5Ktd .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v1a6vh5Ktd .mbr-text {
  color: #ffffff;
}
.cid-v1a6vh5Ktd .card-title {
  color: #ffffff;
}
.cid-v1a6vh5Ktd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1a6vh5Ktd .mbr-section-title {
  color: #ffffff;
}
.cid-v1a6vh5Ktd .link {
  color: #4479d9;
}
.cid-v1a6vhHsYK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v1a6vhHsYK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1a6vhHsYK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1a6vhHsYK .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1a6vhHsYK .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1a6vhHsYK .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v1a6vhHsYK .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v1a6vhHsYK div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v1a6vhHsYK .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v1jSq1gQCK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v1jSq1gQCK nav.navbar {
  position: fixed;
}
.cid-v1jSq1gQCK .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-v1jSq1gQCK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v1jSq1gQCK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v1jSq1gQCK .dropdown-item:hover,
.cid-v1jSq1gQCK .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v1jSq1gQCK .dropdown-item:hover span {
  color: white;
}
.cid-v1jSq1gQCK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v1jSq1gQCK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v1jSq1gQCK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v1jSq1gQCK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v1jSq1gQCK .nav-link {
  position: relative;
}
.cid-v1jSq1gQCK .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1jSq1gQCK .container {
    flex-wrap: wrap;
  }
}
.cid-v1jSq1gQCK .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v1jSq1gQCK .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v1jSq1gQCK .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v1jSq1gQCK .dropdown-menu,
.cid-v1jSq1gQCK .navbar.opened {
  background: #000000 !important;
}
.cid-v1jSq1gQCK .nav-item:focus,
.cid-v1jSq1gQCK .nav-link:focus {
  outline: none;
}
.cid-v1jSq1gQCK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v1jSq1gQCK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v1jSq1gQCK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v1jSq1gQCK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v1jSq1gQCK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v1jSq1gQCK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v1jSq1gQCK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v1jSq1gQCK .navbar.opened {
  transition: all 0.3s;
}
.cid-v1jSq1gQCK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v1jSq1gQCK .navbar .navbar-logo img {
  width: auto;
}
.cid-v1jSq1gQCK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v1jSq1gQCK .navbar.collapsed {
  justify-content: center;
}
.cid-v1jSq1gQCK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v1jSq1gQCK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v1jSq1gQCK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v1jSq1gQCK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v1jSq1gQCK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v1jSq1gQCK .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-v1jSq1gQCK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v1jSq1gQCK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v1jSq1gQCK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v1jSq1gQCK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v1jSq1gQCK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v1jSq1gQCK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v1jSq1gQCK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v1jSq1gQCK .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-v1jSq1gQCK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v1jSq1gQCK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v1jSq1gQCK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v1jSq1gQCK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v1jSq1gQCK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v1jSq1gQCK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v1jSq1gQCK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v1jSq1gQCK .navbar.navbar-short {
  min-height: 60px;
}
.cid-v1jSq1gQCK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v1jSq1gQCK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v1jSq1gQCK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v1jSq1gQCK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v1jSq1gQCK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v1jSq1gQCK .dropdown-item.active,
.cid-v1jSq1gQCK .dropdown-item:active {
  background-color: transparent;
}
.cid-v1jSq1gQCK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v1jSq1gQCK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v1jSq1gQCK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v1jSq1gQCK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v1jSq1gQCK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v1jSq1gQCK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v1jSq1gQCK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v1jSq1gQCK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v1jSq1gQCK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v1jSq1gQCK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v1jSq1gQCK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v1jSq1gQCK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1jSq1gQCK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v1jSq1gQCK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v1jSq1gQCK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1jSq1gQCK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v1jSq1gQCK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v1jSq1gQCK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v1jSq1gQCK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v1jSq1gQCK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v1jSq1gQCK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v1jSq1gQCK .navbar {
    height: 70px;
  }
  .cid-v1jSq1gQCK .navbar.opened {
    height: auto;
  }
  .cid-v1jSq1gQCK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v1jSq2iXxT {
  background-image: url("../../../assets/images/tobacco-plant.webp");
}
.cid-v1jSq2iXxT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq2iXxT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq2iXxT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v1jSq2iXxT .mbr-text,
.cid-v1jSq2iXxT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v1jSq2iXxT .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v1jVjXvLim {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v1jVjXvLim .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jVjXvLim .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jVjXvLim .mbr-section-title {
  color: #ffffff;
}
.cid-v1jVjXvLim .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fIYBZpmD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2fIYBZpmD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fIYBZpmD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fIYBZpmD .mbr-section-title {
  color: #ffffff;
}
.cid-v2fIYBZpmD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1jZBK0fjr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1jZBK0fjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jZBK0fjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1jZBK0fjr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1jZBK0fjr .row {
  flex-direction: row-reverse;
}
.cid-v1jZBK0fjr img {
  width: 100%;
}
.cid-v1k5vWSd6d {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1k5vWSd6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1k5vWSd6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1k5vWSd6d .mbr-section-title {
  color: #ffffff;
}
.cid-v1k5vWSd6d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1k8wvOyu4 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1k8wvOyu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1k8wvOyu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1k8wvOyu4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1k8wvOyu4 .row {
  flex-direction: row-reverse;
}
.cid-v1k8wvOyu4 img {
  width: 100%;
}
.cid-v1k8oxP7KR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1k8oxP7KR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1k8oxP7KR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1k8oxP7KR .mbr-section-title {
  color: #ffffff;
}
.cid-v1k8oxP7KR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1k9UrniWI {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1k9UrniWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1k9UrniWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1k9UrniWI .mbr-section-title {
  color: #ffffff;
}
.cid-v1k9UrniWI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kb0eMseI {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kb0eMseI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kb0eMseI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kb0eMseI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kb0eMseI .row {
  flex-direction: row-reverse;
}
.cid-v1kb0eMseI img {
  width: 100%;
}
.cid-v1kb1IjBWT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kb1IjBWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kb1IjBWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kb1IjBWT .mbr-section-title {
  color: #ffffff;
}
.cid-v1kb1IjBWT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kbhv6Wm8 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kbhv6Wm8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kbhv6Wm8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kbhv6Wm8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kbhv6Wm8 .row {
  flex-direction: row-reverse;
}
.cid-v1kbhv6Wm8 img {
  width: 100%;
}
.cid-v1kb5m63R7 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kb5m63R7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kb5m63R7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kb5m63R7 .mbr-section-title {
  color: #ffffff;
}
.cid-v1kb5m63R7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kdmi59zY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kdmi59zY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kdmi59zY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kdmi59zY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kdmi59zY .row {
  flex-direction: row-reverse;
}
.cid-v1kdmi59zY img {
  width: 100%;
}
.cid-v1kdnwhgUT {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kdnwhgUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kdnwhgUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kdnwhgUT .mbr-section-title {
  color: #ffffff;
}
.cid-v1kdnwhgUT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kdohZTle {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kdohZTle .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kdohZTle .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kdohZTle .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kdohZTle .row {
  flex-direction: row-reverse;
}
.cid-v1kdohZTle img {
  width: 100%;
}
.cid-v1kdpa3ydj {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kdpa3ydj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kdpa3ydj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kdpa3ydj .mbr-section-title {
  color: #ffffff;
}
.cid-v1kdpa3ydj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kB2o9n0V {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kB2o9n0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kB2o9n0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kB2o9n0V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kB2o9n0V .row {
  flex-direction: row-reverse;
}
.cid-v1kB2o9n0V img {
  width: 100%;
}
.cid-v1kB3lCQk9 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kB3lCQk9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kB3lCQk9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kB3lCQk9 .mbr-section-title {
  color: #ffffff;
}
.cid-v1kB3lCQk9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kfSfpuFd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kfSfpuFd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kfSfpuFd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kfSfpuFd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kfSfpuFd .row {
  flex-direction: row-reverse;
}
.cid-v1kfSfpuFd img {
  width: 100%;
}
.cid-v1kfSYoctK {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kfSYoctK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kfSYoctK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kfSYoctK .mbr-section-title {
  color: #ffffff;
}
.cid-v1kfSYoctK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kfTUZcxD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kfTUZcxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kfTUZcxD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kfTUZcxD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kfTUZcxD .row {
  flex-direction: row-reverse;
}
.cid-v1kfTUZcxD img {
  width: 100%;
}
.cid-v1kfUMEIsL {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kfUMEIsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kfUMEIsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kfUMEIsL .mbr-section-title {
  color: #ffffff;
}
.cid-v1kfUMEIsL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1ktuohHlJ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1ktuohHlJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ktuohHlJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1ktuohHlJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1ktuohHlJ .row {
  flex-direction: row-reverse;
}
.cid-v1ktuohHlJ img {
  width: 100%;
}
.cid-v1ktvrKBQB {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1ktvrKBQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ktvrKBQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1ktvrKBQB .mbr-section-title {
  color: #ffffff;
}
.cid-v1ktvrKBQB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1ktwyEn2m {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1ktwyEn2m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ktwyEn2m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1ktwyEn2m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1ktwyEn2m .row {
  flex-direction: row-reverse;
}
.cid-v1ktwyEn2m img {
  width: 100%;
}
.cid-v1ktxSywmh {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1ktxSywmh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1ktxSywmh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1ktxSywmh .mbr-section-title {
  color: #ffffff;
}
.cid-v1ktxSywmh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kOP0Bf6R {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kOP0Bf6R .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kOP0Bf6R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kOP0Bf6R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kOP0Bf6R .row {
  flex-direction: row-reverse;
}
.cid-v1kOP0Bf6R img {
  width: 100%;
}
.cid-v1kOQ8Yt3g {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kOQ8Yt3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kOQ8Yt3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kOQ8Yt3g .mbr-section-title {
  color: #ffffff;
}
.cid-v1kOQ8Yt3g .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1kQWhm0F0 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kQWhm0F0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kQWhm0F0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1kQWhm0F0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v1kQWhm0F0 .row {
  flex-direction: row-reverse;
}
.cid-v1kQWhm0F0 img {
  width: 100%;
}
.cid-v1kQXNVmkW {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1kQXNVmkW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1kQXNVmkW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1kQXNVmkW .mbr-section-title {
  color: #ffffff;
}
.cid-v1kQXNVmkW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2fJtEmtJJ {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-v2fJtEmtJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fJtEmtJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fJtEmtJJ .mbr-section-title {
  color: #ffffff;
}
.cid-v2fJtEmtJJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1jSq4k1Wi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v1jSq4k1Wi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq4k1Wi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq4k1Wi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1jSq4k1Wi .mbr-section-title {
  color: #ffffff;
}
.cid-v1jSq4Wsbo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1jSq4Wsbo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq4Wsbo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq4Wsbo .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v1jSq4Wsbo .number {
  color: #ffffff;
}
.cid-v1jSq4Wsbo .period {
  display: block;
}
.cid-v1jSq4Wsbo .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v1jSq4Wsbo .period {
    font-size: 0.8rem;
  }
}
.cid-v1jSq4Wsbo .btn {
  height: 100%;
  margin: 0;
}
.cid-v1jSq4Wsbo .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v1jSq4Wsbo .mbr-section-title {
  color: #ffffff;
}
.cid-v1jSq4Wsbo .mbr-text {
  color: #ffffff;
}
.cid-v1jSq4Wsbo .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v1jSq4Wsbo .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v1jSq4Wsbo .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v1jSq4Wsbo .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v1jSq5Hw5e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v1jSq5Hw5e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq5Hw5e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq5Hw5e .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v1jSq5Hw5e .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v1jSq5Hw5e .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v1jSq5Hw5e .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v1jSq5Hw5e .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v1jSq5Hw5e .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v1jSq5Hw5e .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v1jSq5Hw5e .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v1jSq5Hw5e .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v1jSq5Hw5e [class^="socicon-"]:before,
.cid-v1jSq5Hw5e [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v1jSq5Hw5e .mbr-section-title,
.cid-v1jSq5Hw5e .mbr-social-likes {
  color: #ffffff;
}
.cid-v1jSq6hlGE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v1jSq6hlGE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq6hlGE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq6hlGE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v1jSq6hlGE .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v1jSq6hlGE .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v1jSq6hlGE .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v1jSq6hlGE .mbr-text {
  color: #ffffff;
}
.cid-v1jSq6hlGE .card-title {
  color: #ffffff;
}
.cid-v1jSq6hlGE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v1jSq6hlGE .mbr-section-title {
  color: #ffffff;
}
.cid-v1jSq6hlGE .link {
  color: #4479d9;
}
.cid-v1jSq6YiFD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v1jSq6YiFD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1jSq6YiFD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1jSq6YiFD .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v1jSq6YiFD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v1jSq6YiFD .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v1jSq6YiFD .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v1jSq6YiFD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v1jSq6YiFD .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v2zlIemyCz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2zlIemyCz nav.navbar {
  position: fixed;
}
.cid-v2zlIemyCz .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-v2zlIemyCz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2zlIemyCz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2zlIemyCz .dropdown-item:hover,
.cid-v2zlIemyCz .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v2zlIemyCz .dropdown-item:hover span {
  color: white;
}
.cid-v2zlIemyCz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2zlIemyCz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2zlIemyCz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2zlIemyCz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2zlIemyCz .nav-link {
  position: relative;
}
.cid-v2zlIemyCz .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2zlIemyCz .container {
    flex-wrap: wrap;
  }
}
.cid-v2zlIemyCz .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2zlIemyCz .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v2zlIemyCz .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2zlIemyCz .dropdown-menu,
.cid-v2zlIemyCz .navbar.opened {
  background: #000000 !important;
}
.cid-v2zlIemyCz .nav-item:focus,
.cid-v2zlIemyCz .nav-link:focus {
  outline: none;
}
.cid-v2zlIemyCz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2zlIemyCz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2zlIemyCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2zlIemyCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2zlIemyCz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2zlIemyCz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2zlIemyCz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v2zlIemyCz .navbar.opened {
  transition: all 0.3s;
}
.cid-v2zlIemyCz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2zlIemyCz .navbar .navbar-logo img {
  width: auto;
}
.cid-v2zlIemyCz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2zlIemyCz .navbar.collapsed {
  justify-content: center;
}
.cid-v2zlIemyCz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2zlIemyCz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2zlIemyCz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2zlIemyCz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2zlIemyCz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2zlIemyCz .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-v2zlIemyCz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2zlIemyCz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2zlIemyCz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2zlIemyCz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2zlIemyCz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2zlIemyCz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2zlIemyCz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2zlIemyCz .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-v2zlIemyCz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2zlIemyCz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2zlIemyCz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2zlIemyCz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2zlIemyCz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2zlIemyCz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2zlIemyCz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2zlIemyCz .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2zlIemyCz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2zlIemyCz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2zlIemyCz .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2zlIemyCz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2zlIemyCz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2zlIemyCz .dropdown-item.active,
.cid-v2zlIemyCz .dropdown-item:active {
  background-color: transparent;
}
.cid-v2zlIemyCz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2zlIemyCz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2zlIemyCz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2zlIemyCz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v2zlIemyCz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2zlIemyCz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2zlIemyCz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2zlIemyCz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2zlIemyCz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2zlIemyCz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2zlIemyCz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2zlIemyCz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2zlIemyCz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2zlIemyCz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2zlIemyCz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2zlIemyCz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2zlIemyCz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2zlIemyCz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2zlIemyCz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2zlIemyCz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2zlIemyCz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2zlIemyCz .navbar {
    height: 70px;
  }
  .cid-v2zlIemyCz .navbar.opened {
    height: auto;
  }
  .cid-v2zlIemyCz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2zlIfgVYB {
  background-image: url("../../../assets/images/white-cabbage-2521700.webp");
}
.cid-v2zlIfgVYB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlIfgVYB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlIfgVYB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v2zlIfgVYB .mbr-text,
.cid-v2zlIfgVYB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2zlIfgVYB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2zU6c1S5Q {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2zU6c1S5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zU6c1S5Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2zU6c1S5Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2zU6c1S5Q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v2zU6c1S5Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-v2zU6c1S5Q .mbr-section-title {
  color: #ffffff;
}
.cid-v2zU6c1S5Q .mbr-text {
  color: #ffffff;
}
.cid-v2zU6c1S5Q .mbr-description {
  color: #ffffff;
}
.cid-v2zplJXCOv {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2zplJXCOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zplJXCOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zplJXCOv .mbr-section-title {
  color: #ffffff;
}
.cid-v2zplJXCOv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zAW8gr8C {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2zAW8gr8C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zAW8gr8C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2zAW8gr8C .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v2zAW8gr8C .row {
  flex-direction: row-reverse;
}
.cid-v2zAW8gr8C img {
  width: 100%;
}
.cid-v2zr1YIEYL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zr1YIEYL img,
.cid-v2zr1YIEYL .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zr1YIEYL .item:focus,
.cid-v2zr1YIEYL span:focus {
  outline: none;
}
.cid-v2zr1YIEYL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zr1YIEYL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zr1YIEYL .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zr1YIEYL .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zr1YIEYL .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zr1YIEYL .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zr1YIEYL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zr1YIEYL .mbr-section-title {
  color: #ffffff;
}
.cid-v2zr1YIEYL .mbr-text,
.cid-v2zr1YIEYL .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2zr1YIEYL .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2zr1YIEYL .item-subtitle {
  text-align: left;
}
.cid-v2zr1YIEYL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2KV6JF6ZH {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2KV6JF6ZH img,
.cid-v2KV6JF6ZH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2KV6JF6ZH .item:focus,
.cid-v2KV6JF6ZH span:focus {
  outline: none;
}
.cid-v2KV6JF6ZH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2KV6JF6ZH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2KV6JF6ZH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2KV6JF6ZH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2KV6JF6ZH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2KV6JF6ZH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2KV6JF6ZH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2KV6JF6ZH .mbr-section-title {
  color: #ffffff;
}
.cid-v2KV6JF6ZH .mbr-text,
.cid-v2KV6JF6ZH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2KV6JF6ZH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2KV6JF6ZH .item-subtitle {
  text-align: left;
}
.cid-v2KV6JF6ZH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlIfWlcA {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIfWlcA img,
.cid-v2zlIfWlcA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIfWlcA .item:focus,
.cid-v2zlIfWlcA span:focus {
  outline: none;
}
.cid-v2zlIfWlcA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIfWlcA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIfWlcA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIfWlcA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIfWlcA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIfWlcA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIfWlcA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIfWlcA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2zlIfWlcA .mbr-text,
.cid-v2zlIfWlcA .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIfWlcA .item-title {
  text-align: left;
}
.cid-v2zlIfWlcA .item-subtitle {
  text-align: left;
}
.cid-v2zlIfWlcA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlIgC8Vb {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIgC8Vb img,
.cid-v2zlIgC8Vb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIgC8Vb .item:focus,
.cid-v2zlIgC8Vb span:focus {
  outline: none;
}
.cid-v2zlIgC8Vb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIgC8Vb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIgC8Vb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIgC8Vb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIgC8Vb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIgC8Vb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIgC8Vb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIgC8Vb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2zlIgC8Vb .mbr-text,
.cid-v2zlIgC8Vb .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIgC8Vb .item-title {
  text-align: left;
}
.cid-v2zlIgC8Vb .item-subtitle {
  text-align: left;
}
.cid-v2zlIgC8Vb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlIhi1z5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIhi1z5 img,
.cid-v2zlIhi1z5 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIhi1z5 .item:focus,
.cid-v2zlIhi1z5 span:focus {
  outline: none;
}
.cid-v2zlIhi1z5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIhi1z5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIhi1z5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIhi1z5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIhi1z5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIhi1z5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIhi1z5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIhi1z5 .mbr-section-title {
  color: #232323;
}
.cid-v2zlIhi1z5 .mbr-text,
.cid-v2zlIhi1z5 .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIhi1z5 .item-title {
  text-align: left;
}
.cid-v2zlIhi1z5 .item-subtitle {
  text-align: left;
}
.cid-v2zlIhY7z4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIhY7z4 img,
.cid-v2zlIhY7z4 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIhY7z4 .item:focus,
.cid-v2zlIhY7z4 span:focus {
  outline: none;
}
.cid-v2zlIhY7z4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIhY7z4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIhY7z4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIhY7z4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIhY7z4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIhY7z4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIhY7z4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIhY7z4 .mbr-section-title {
  color: #ffffff;
}
.cid-v2zlIhY7z4 .mbr-text,
.cid-v2zlIhY7z4 .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIhY7z4 .item-title {
  text-align: left;
}
.cid-v2zlIhY7z4 .item-subtitle {
  text-align: left;
}
.cid-v2zlIhY7z4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlIiLNNq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIiLNNq img,
.cid-v2zlIiLNNq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIiLNNq .item:focus,
.cid-v2zlIiLNNq span:focus {
  outline: none;
}
.cid-v2zlIiLNNq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIiLNNq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIiLNNq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIiLNNq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIiLNNq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIiLNNq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIiLNNq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIiLNNq .mbr-section-title {
  color: #232323;
}
.cid-v2zlIiLNNq .mbr-text,
.cid-v2zlIiLNNq .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIiLNNq .item-title {
  text-align: left;
}
.cid-v2zlIiLNNq .item-subtitle {
  text-align: left;
}
.cid-v2zlIjwGO1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIjwGO1 img,
.cid-v2zlIjwGO1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIjwGO1 .item:focus,
.cid-v2zlIjwGO1 span:focus {
  outline: none;
}
.cid-v2zlIjwGO1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIjwGO1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIjwGO1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIjwGO1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIjwGO1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIjwGO1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIjwGO1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIjwGO1 .mbr-section-title {
  color: #232323;
}
.cid-v2zlIjwGO1 .mbr-text,
.cid-v2zlIjwGO1 .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIjwGO1 .item-title {
  text-align: left;
}
.cid-v2zlIjwGO1 .item-subtitle {
  text-align: left;
}
.cid-v2zlIkhFTf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIkhFTf img,
.cid-v2zlIkhFTf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIkhFTf .item:focus,
.cid-v2zlIkhFTf span:focus {
  outline: none;
}
.cid-v2zlIkhFTf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIkhFTf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIkhFTf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIkhFTf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIkhFTf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIkhFTf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIkhFTf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIkhFTf .mbr-section-title {
  color: #232323;
}
.cid-v2zlIkhFTf .mbr-text,
.cid-v2zlIkhFTf .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIkhFTf .item-title {
  text-align: left;
}
.cid-v2zlIkhFTf .item-subtitle {
  text-align: left;
}
.cid-v2zlIl4WWs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIl4WWs img,
.cid-v2zlIl4WWs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIl4WWs .item:focus,
.cid-v2zlIl4WWs span:focus {
  outline: none;
}
.cid-v2zlIl4WWs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIl4WWs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIl4WWs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIl4WWs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIl4WWs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIl4WWs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIl4WWs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIl4WWs .mbr-section-title {
  color: #232323;
}
.cid-v2zlIl4WWs .mbr-text,
.cid-v2zlIl4WWs .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIl4WWs .item-title {
  text-align: left;
}
.cid-v2zlIl4WWs .item-subtitle {
  text-align: left;
}
.cid-v2zlIlXdgg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2zlIlXdgg img,
.cid-v2zlIlXdgg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2zlIlXdgg .item:focus,
.cid-v2zlIlXdgg span:focus {
  outline: none;
}
.cid-v2zlIlXdgg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2zlIlXdgg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2zlIlXdgg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2zlIlXdgg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIlXdgg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2zlIlXdgg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2zlIlXdgg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2zlIlXdgg .mbr-section-title {
  color: #232323;
}
.cid-v2zlIlXdgg .mbr-text,
.cid-v2zlIlXdgg .mbr-section-btn {
  text-align: left;
}
.cid-v2zlIlXdgg .item-title {
  text-align: left;
}
.cid-v2zlIlXdgg .item-subtitle {
  text-align: left;
}
.cid-v2zlImGj7u {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v2zlImGj7u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlImGj7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlImGj7u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlImGj7u .mbr-section-title {
  color: #ffffff;
}
.cid-v2zlInorKs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2zlInorKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlInorKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlInorKs .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v2zlInorKs .number {
  color: #ffffff;
}
.cid-v2zlInorKs .period {
  display: block;
}
.cid-v2zlInorKs .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v2zlInorKs .period {
    font-size: 0.8rem;
  }
}
.cid-v2zlInorKs .btn {
  height: 100%;
  margin: 0;
}
.cid-v2zlInorKs .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v2zlInorKs .mbr-section-title {
  color: #ffffff;
}
.cid-v2zlInorKs .mbr-text {
  color: #ffffff;
}
.cid-v2zlInorKs .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v2zlInorKs .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v2zlInorKs .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v2zlInorKs .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v2zlIohemC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2zlIohemC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlIohemC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlIohemC .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v2zlIohemC .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v2zlIohemC .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v2zlIohemC .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v2zlIohemC .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v2zlIohemC .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v2zlIohemC .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v2zlIohemC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v2zlIohemC .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v2zlIohemC [class^="socicon-"]:before,
.cid-v2zlIohemC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v2zlIohemC .mbr-section-title,
.cid-v2zlIohemC .mbr-social-likes {
  color: #ffffff;
}
.cid-v2zlIp21lu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2zlIp21lu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlIp21lu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlIp21lu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v2zlIp21lu .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2zlIp21lu .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2zlIp21lu .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2zlIp21lu .mbr-text {
  color: #ffffff;
}
.cid-v2zlIp21lu .card-title {
  color: #ffffff;
}
.cid-v2zlIp21lu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2zlIp21lu .mbr-section-title {
  color: #ffffff;
}
.cid-v2zlIp21lu .link {
  color: #4479d9;
}
.cid-v2zlIpWZ7i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2zlIpWZ7i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2zlIpWZ7i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2zlIpWZ7i .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2zlIpWZ7i .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2zlIpWZ7i .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v2zlIpWZ7i .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v2zlIpWZ7i div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v2zlIpWZ7i .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uAptganoSB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uAptganoSB nav.navbar {
  position: fixed;
}
.cid-uAptganoSB .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-uAptganoSB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAptganoSB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAptganoSB .dropdown-item:hover,
.cid-uAptganoSB .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uAptganoSB .dropdown-item:hover span {
  color: white;
}
.cid-uAptganoSB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAptganoSB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAptganoSB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAptganoSB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAptganoSB .nav-link {
  position: relative;
}
.cid-uAptganoSB .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAptganoSB .container {
    flex-wrap: wrap;
  }
}
.cid-uAptganoSB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAptganoSB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uAptganoSB .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAptganoSB .dropdown-menu,
.cid-uAptganoSB .navbar.opened {
  background: #000000 !important;
}
.cid-uAptganoSB .nav-item:focus,
.cid-uAptganoSB .nav-link:focus {
  outline: none;
}
.cid-uAptganoSB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAptganoSB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAptganoSB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAptganoSB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAptganoSB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAptganoSB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAptganoSB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uAptganoSB .navbar.opened {
  transition: all 0.3s;
}
.cid-uAptganoSB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAptganoSB .navbar .navbar-logo img {
  width: auto;
}
.cid-uAptganoSB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAptganoSB .navbar.collapsed {
  justify-content: center;
}
.cid-uAptganoSB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAptganoSB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAptganoSB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uAptganoSB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAptganoSB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAptganoSB .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-uAptganoSB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAptganoSB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAptganoSB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAptganoSB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAptganoSB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAptganoSB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAptganoSB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAptganoSB .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-uAptganoSB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAptganoSB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAptganoSB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAptganoSB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAptganoSB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAptganoSB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAptganoSB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAptganoSB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAptganoSB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAptganoSB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAptganoSB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAptganoSB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAptganoSB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAptganoSB .dropdown-item.active,
.cid-uAptganoSB .dropdown-item:active {
  background-color: transparent;
}
.cid-uAptganoSB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAptganoSB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAptganoSB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAptganoSB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uAptganoSB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAptganoSB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAptganoSB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAptganoSB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAptganoSB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAptganoSB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAptganoSB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAptganoSB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAptganoSB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAptganoSB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAptganoSB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAptganoSB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAptganoSB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAptganoSB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAptganoSB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAptganoSB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAptganoSB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAptganoSB .navbar {
    height: 70px;
  }
  .cid-uAptganoSB .navbar.opened {
    height: auto;
  }
  .cid-uAptganoSB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAptgbcK82 {
  background-image: url("../../../assets/images/wizzard-lawn-tractor-deck-rebuild-banner.webp");
}
.cid-uAptgbcK82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAptgbcK82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAptgbcK82 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uAptgbcK82 .mbr-text,
.cid-uAptgbcK82 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uAptgbcK82 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uApyZtztlp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApyZtztlp img,
.cid-uApyZtztlp .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uApyZtztlp .item:focus,
.cid-uApyZtztlp span:focus {
  outline: none;
}
.cid-uApyZtztlp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uApyZtztlp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uApyZtztlp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uApyZtztlp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uApyZtztlp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uApyZtztlp .mbr-section-title {
  color: #ffffff;
}
.cid-uApyZtztlp .mbr-text,
.cid-uApyZtztlp .mbr-section-btn {
  text-align: left;
}
.cid-uApyZtztlp .item-title {
  text-align: left;
}
.cid-uApyZtztlp .item-subtitle {
  text-align: center;
}
.cid-uApyZtztlp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uApAhBHMBb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApAhBHMBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uApAhBHMBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uApAhBHMBb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uApBS2wF6a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApBS2wF6a img,
.cid-uApBS2wF6a .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uApBS2wF6a .item:focus,
.cid-uApBS2wF6a span:focus {
  outline: none;
}
.cid-uApBS2wF6a .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uApBS2wF6a .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uApBS2wF6a .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uApBS2wF6a .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uApBS2wF6a .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uApBS2wF6a .mbr-section-title {
  color: #ffffff;
}
.cid-uApBS2wF6a .mbr-text,
.cid-uApBS2wF6a .mbr-section-btn {
  text-align: left;
}
.cid-uApBS2wF6a .item-title {
  text-align: left;
}
.cid-uApBS2wF6a .item-subtitle {
  text-align: center;
}
.cid-uApCXO780j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApCXO780j img,
.cid-uApCXO780j .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uApCXO780j .item:focus,
.cid-uApCXO780j span:focus {
  outline: none;
}
.cid-uApCXO780j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uApCXO780j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uApCXO780j .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uApCXO780j .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uApCXO780j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uApCXO780j .mbr-section-title {
  color: #ffffff;
}
.cid-uApCXO780j .mbr-text,
.cid-uApCXO780j .mbr-section-btn {
  text-align: left;
}
.cid-uApCXO780j .item-title {
  text-align: left;
}
.cid-uApCXO780j .item-subtitle {
  text-align: center;
}
.cid-uApE1NMevD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApE1NMevD img,
.cid-uApE1NMevD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uApE1NMevD .item:focus,
.cid-uApE1NMevD span:focus {
  outline: none;
}
.cid-uApE1NMevD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uApE1NMevD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uApE1NMevD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uApE1NMevD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uApE1NMevD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uApE1NMevD .mbr-section-title {
  color: #ffffff;
}
.cid-uApE1NMevD .mbr-text,
.cid-uApE1NMevD .mbr-section-btn {
  text-align: left;
}
.cid-uApE1NMevD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uApE1NMevD .item-subtitle {
  text-align: center;
}
.cid-uApFDfKe4i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApFDfKe4i img,
.cid-uApFDfKe4i .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uApFDfKe4i .item:focus,
.cid-uApFDfKe4i span:focus {
  outline: none;
}
.cid-uApFDfKe4i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uApFDfKe4i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uApFDfKe4i .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uApFDfKe4i .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uApFDfKe4i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uApFDfKe4i .mbr-section-title {
  color: #ffffff;
}
.cid-uApFDfKe4i .mbr-text,
.cid-uApFDfKe4i .mbr-section-btn {
  text-align: left;
}
.cid-uApFDfKe4i .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uApFDfKe4i .item-subtitle {
  text-align: center;
}
.cid-uApHru8mTk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uApHru8mTk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uApHru8mTk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uApHru8mTk .mbr-section-title {
  color: #ffffff;
}
.cid-v3FDj1elOe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FDj1elOe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FDj1elOe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FDj1elOe .mbr-section-title {
  color: #ffffff;
}
.cid-v3FDj1elOe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN5GnkEt5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN5GnkEt5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN5GnkEt5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN5GnkEt5 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN5GnkEt5 .number {
  color: #ffffff;
}
.cid-uYN5GnkEt5 .period {
  display: block;
}
.cid-uYN5GnkEt5 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN5GnkEt5 .period {
    font-size: 0.8rem;
  }
}
.cid-uYN5GnkEt5 .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN5GnkEt5 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN5GnkEt5 .mbr-section-title {
  color: #ffffff;
}
.cid-uYN5GnkEt5 .mbr-text {
  color: #ffffff;
}
.cid-uYN5GnkEt5 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN5GnkEt5 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN5GnkEt5 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN5GnkEt5 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAptghQuaO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uAptghQuaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAptghQuaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAptghQuaO .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uAptghQuaO .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uAptghQuaO .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uAptghQuaO .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uAptghQuaO .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uAptghQuaO .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uAptghQuaO .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uAptghQuaO .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uAptghQuaO .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uAptghQuaO [class^="socicon-"]:before,
.cid-uAptghQuaO [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uAptghQuaO .mbr-section-title,
.cid-uAptghQuaO .mbr-social-likes {
  color: #ffffff;
}
.cid-uAptgix2Az {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAptgix2Az .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAptgix2Az .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAptgix2Az .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uAptgix2Az .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uAptgix2Az .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAptgix2Az .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uAptgix2Az .mbr-text {
  color: #ffffff;
}
.cid-uAptgix2Az .card-title {
  color: #ffffff;
}
.cid-uAptgix2Az .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAptgix2Az .mbr-section-title {
  color: #ffffff;
}
.cid-uAptgix2Az .link {
  color: #4479d9;
}
.cid-uAptgjkj00 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uAptgjkj00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAptgjkj00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAptgjkj00 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uAptgjkj00 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAptgjkj00 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAptgjkj00 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAptgjkj00 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAptgjkj00 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v2P3e97WZ2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2P3e97WZ2 nav.navbar {
  position: fixed;
}
.cid-v2P3e97WZ2 .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-v2P3e97WZ2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2P3e97WZ2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2P3e97WZ2 .dropdown-item:hover,
.cid-v2P3e97WZ2 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v2P3e97WZ2 .dropdown-item:hover span {
  color: white;
}
.cid-v2P3e97WZ2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2P3e97WZ2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2P3e97WZ2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2P3e97WZ2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2P3e97WZ2 .nav-link {
  position: relative;
}
.cid-v2P3e97WZ2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2P3e97WZ2 .container {
    flex-wrap: wrap;
  }
}
.cid-v2P3e97WZ2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2P3e97WZ2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v2P3e97WZ2 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2P3e97WZ2 .dropdown-menu,
.cid-v2P3e97WZ2 .navbar.opened {
  background: #000000 !important;
}
.cid-v2P3e97WZ2 .nav-item:focus,
.cid-v2P3e97WZ2 .nav-link:focus {
  outline: none;
}
.cid-v2P3e97WZ2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2P3e97WZ2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2P3e97WZ2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2P3e97WZ2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2P3e97WZ2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2P3e97WZ2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2P3e97WZ2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v2P3e97WZ2 .navbar.opened {
  transition: all 0.3s;
}
.cid-v2P3e97WZ2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2P3e97WZ2 .navbar .navbar-logo img {
  width: auto;
}
.cid-v2P3e97WZ2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2P3e97WZ2 .navbar.collapsed {
  justify-content: center;
}
.cid-v2P3e97WZ2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2P3e97WZ2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2P3e97WZ2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2P3e97WZ2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2P3e97WZ2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2P3e97WZ2 .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-v2P3e97WZ2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2P3e97WZ2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2P3e97WZ2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2P3e97WZ2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2P3e97WZ2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2P3e97WZ2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2P3e97WZ2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2P3e97WZ2 .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-v2P3e97WZ2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2P3e97WZ2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2P3e97WZ2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2P3e97WZ2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2P3e97WZ2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2P3e97WZ2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2P3e97WZ2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2P3e97WZ2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2P3e97WZ2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2P3e97WZ2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2P3e97WZ2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2P3e97WZ2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2P3e97WZ2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2P3e97WZ2 .dropdown-item.active,
.cid-v2P3e97WZ2 .dropdown-item:active {
  background-color: transparent;
}
.cid-v2P3e97WZ2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2P3e97WZ2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2P3e97WZ2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2P3e97WZ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v2P3e97WZ2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2P3e97WZ2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2P3e97WZ2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2P3e97WZ2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2P3e97WZ2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2P3e97WZ2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2P3e97WZ2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2P3e97WZ2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2P3e97WZ2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2P3e97WZ2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2P3e97WZ2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2P3e97WZ2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2P3e97WZ2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2P3e97WZ2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2P3e97WZ2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2P3e97WZ2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2P3e97WZ2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2P3e97WZ2 .navbar {
    height: 70px;
  }
  .cid-v2P3e97WZ2 .navbar.opened {
    height: auto;
  }
  .cid-v2P3e97WZ2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2P3ea6dDq {
  background-image: url("../../../assets/images/orange-hat-micro-dwarf-tomato-plants.webp");
}
.cid-v2P3ea6dDq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3ea6dDq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3ea6dDq .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v2P3ea6dDq .mbr-text,
.cid-v2P3ea6dDq .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2P3ea6dDq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2P3eaH8wI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2P3eaH8wI img,
.cid-v2P3eaH8wI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2P3eaH8wI .item:focus,
.cid-v2P3eaH8wI span:focus {
  outline: none;
}
.cid-v2P3eaH8wI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2P3eaH8wI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2P3eaH8wI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2P3eaH8wI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2P3eaH8wI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2P3eaH8wI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2P3eaH8wI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2P3eaH8wI .mbr-section-title {
  color: #ffffff;
}
.cid-v2P3eaH8wI .mbr-text,
.cid-v2P3eaH8wI .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2P3eaH8wI .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2P3eaH8wI .item-subtitle {
  text-align: left;
}
.cid-v2P3eaH8wI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2P3ebhgI8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2P3ebhgI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3ebhgI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3ebhgI8 .mbr-section-title {
  color: #ffffff;
}
.cid-v2P3ebhgI8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2P3ebMrIK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v2P3ebMrIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3ebMrIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3ebMrIK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2P3ebMrIK .mbr-section-title {
  color: #ffffff;
}
.cid-v2P3eciOCq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2P3eciOCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3eciOCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3eciOCq .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v2P3eciOCq .number {
  color: #ffffff;
}
.cid-v2P3eciOCq .period {
  display: block;
}
.cid-v2P3eciOCq .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v2P3eciOCq .period {
    font-size: 0.8rem;
  }
}
.cid-v2P3eciOCq .btn {
  height: 100%;
  margin: 0;
}
.cid-v2P3eciOCq .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v2P3eciOCq .mbr-section-title {
  color: #ffffff;
}
.cid-v2P3eciOCq .mbr-text {
  color: #ffffff;
}
.cid-v2P3eciOCq .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v2P3eciOCq .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v2P3eciOCq .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v2P3eciOCq .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v2P3ed5sDt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2P3ed5sDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3ed5sDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3ed5sDt .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v2P3ed5sDt .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v2P3ed5sDt .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v2P3ed5sDt .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v2P3ed5sDt .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v2P3ed5sDt .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v2P3ed5sDt .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v2P3ed5sDt .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v2P3ed5sDt .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v2P3ed5sDt [class^="socicon-"]:before,
.cid-v2P3ed5sDt [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v2P3ed5sDt .mbr-section-title,
.cid-v2P3ed5sDt .mbr-social-likes {
  color: #ffffff;
}
.cid-v2P3edB5xJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2P3edB5xJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3edB5xJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3edB5xJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v2P3edB5xJ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2P3edB5xJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2P3edB5xJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2P3edB5xJ .mbr-text {
  color: #ffffff;
}
.cid-v2P3edB5xJ .card-title {
  color: #ffffff;
}
.cid-v2P3edB5xJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2P3edB5xJ .mbr-section-title {
  color: #ffffff;
}
.cid-v2P3edB5xJ .link {
  color: #4479d9;
}
.cid-v2P3eeg1F4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2P3eeg1F4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2P3eeg1F4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2P3eeg1F4 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2P3eeg1F4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2P3eeg1F4 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v2P3eeg1F4 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v2P3eeg1F4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v2P3eeg1F4 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v2QC0jrR9U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v2QC0jrR9U nav.navbar {
  position: fixed;
}
.cid-v2QC0jrR9U .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-v2QC0jrR9U .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v2QC0jrR9U .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v2QC0jrR9U .dropdown-item:hover,
.cid-v2QC0jrR9U .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v2QC0jrR9U .dropdown-item:hover span {
  color: white;
}
.cid-v2QC0jrR9U .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v2QC0jrR9U .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v2QC0jrR9U .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v2QC0jrR9U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v2QC0jrR9U .nav-link {
  position: relative;
}
.cid-v2QC0jrR9U .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2QC0jrR9U .container {
    flex-wrap: wrap;
  }
}
.cid-v2QC0jrR9U .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2QC0jrR9U .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v2QC0jrR9U .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v2QC0jrR9U .dropdown-menu,
.cid-v2QC0jrR9U .navbar.opened {
  background: #000000 !important;
}
.cid-v2QC0jrR9U .nav-item:focus,
.cid-v2QC0jrR9U .nav-link:focus {
  outline: none;
}
.cid-v2QC0jrR9U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2QC0jrR9U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2QC0jrR9U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2QC0jrR9U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2QC0jrR9U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2QC0jrR9U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2QC0jrR9U .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v2QC0jrR9U .navbar.opened {
  transition: all 0.3s;
}
.cid-v2QC0jrR9U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v2QC0jrR9U .navbar .navbar-logo img {
  width: auto;
}
.cid-v2QC0jrR9U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v2QC0jrR9U .navbar.collapsed {
  justify-content: center;
}
.cid-v2QC0jrR9U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2QC0jrR9U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v2QC0jrR9U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v2QC0jrR9U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2QC0jrR9U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2QC0jrR9U .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-v2QC0jrR9U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2QC0jrR9U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v2QC0jrR9U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v2QC0jrR9U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2QC0jrR9U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2QC0jrR9U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2QC0jrR9U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v2QC0jrR9U .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-v2QC0jrR9U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2QC0jrR9U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v2QC0jrR9U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v2QC0jrR9U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v2QC0jrR9U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2QC0jrR9U .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v2QC0jrR9U .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v2QC0jrR9U .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2QC0jrR9U .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2QC0jrR9U .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2QC0jrR9U .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v2QC0jrR9U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v2QC0jrR9U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2QC0jrR9U .dropdown-item.active,
.cid-v2QC0jrR9U .dropdown-item:active {
  background-color: transparent;
}
.cid-v2QC0jrR9U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2QC0jrR9U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2QC0jrR9U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2QC0jrR9U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v2QC0jrR9U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2QC0jrR9U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2QC0jrR9U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v2QC0jrR9U .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2QC0jrR9U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v2QC0jrR9U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v2QC0jrR9U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2QC0jrR9U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2QC0jrR9U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2QC0jrR9U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2QC0jrR9U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2QC0jrR9U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2QC0jrR9U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2QC0jrR9U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2QC0jrR9U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v2QC0jrR9U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v2QC0jrR9U .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v2QC0jrR9U .navbar {
    height: 70px;
  }
  .cid-v2QC0jrR9U .navbar.opened {
    height: auto;
  }
  .cid-v2QC0jrR9U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2QC0kquBi {
  background-image: url("../../../assets/images/cosmic-red-cosmos-banner.webp");
}
.cid-v2QC0kquBi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0kquBi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0kquBi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v2QC0kquBi .mbr-text,
.cid-v2QC0kquBi .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v2QC0kquBi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2QC0l5rYP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v2QC0l5rYP img,
.cid-v2QC0l5rYP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v2QC0l5rYP .item:focus,
.cid-v2QC0l5rYP span:focus {
  outline: none;
}
.cid-v2QC0l5rYP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v2QC0l5rYP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v2QC0l5rYP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v2QC0l5rYP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2QC0l5rYP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v2QC0l5rYP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v2QC0l5rYP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v2QC0l5rYP .mbr-section-title {
  color: #ffffff;
}
.cid-v2QC0l5rYP .mbr-text,
.cid-v2QC0l5rYP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v2QC0l5rYP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v2QC0l5rYP .item-subtitle {
  text-align: left;
}
.cid-v2QC0l5rYP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2QC0lSV66 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2QC0lSV66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0lSV66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0lSV66 .mbr-section-title {
  color: #ffffff;
}
.cid-v2QC0lSV66 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2QC0mzxIX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v2QC0mzxIX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0mzxIX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0mzxIX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2QC0mzxIX .mbr-section-title {
  color: #ffffff;
}
.cid-v2QC0n9XPd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2QC0n9XPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0n9XPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0n9XPd .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v2QC0n9XPd .number {
  color: #ffffff;
}
.cid-v2QC0n9XPd .period {
  display: block;
}
.cid-v2QC0n9XPd .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v2QC0n9XPd .period {
    font-size: 0.8rem;
  }
}
.cid-v2QC0n9XPd .btn {
  height: 100%;
  margin: 0;
}
.cid-v2QC0n9XPd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v2QC0n9XPd .mbr-section-title {
  color: #ffffff;
}
.cid-v2QC0n9XPd .mbr-text {
  color: #ffffff;
}
.cid-v2QC0n9XPd .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v2QC0n9XPd .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v2QC0n9XPd .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v2QC0n9XPd .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v2QC0nPail {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v2QC0nPail .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0nPail .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0nPail .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v2QC0nPail .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v2QC0nPail .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v2QC0nPail .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v2QC0nPail .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v2QC0nPail .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v2QC0nPail .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v2QC0nPail .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v2QC0nPail .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v2QC0nPail [class^="socicon-"]:before,
.cid-v2QC0nPail [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v2QC0nPail .mbr-section-title,
.cid-v2QC0nPail .mbr-social-likes {
  color: #ffffff;
}
.cid-v2QC0onnQq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v2QC0onnQq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0onnQq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0onnQq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v2QC0onnQq .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v2QC0onnQq .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v2QC0onnQq .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v2QC0onnQq .mbr-text {
  color: #ffffff;
}
.cid-v2QC0onnQq .card-title {
  color: #ffffff;
}
.cid-v2QC0onnQq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2QC0onnQq .mbr-section-title {
  color: #ffffff;
}
.cid-v2QC0onnQq .link {
  color: #4479d9;
}
.cid-v2QC0p3acM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2QC0p3acM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QC0p3acM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QC0p3acM .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v2QC0p3acM .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v2QC0p3acM .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v2QC0p3acM .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v2QC0p3acM div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v2QC0p3acM .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-uAmNyC8HqD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uAmNyC8HqD nav.navbar {
  position: fixed;
}
.cid-uAmNyC8HqD .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-uAmNyC8HqD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAmNyC8HqD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAmNyC8HqD .dropdown-item:hover,
.cid-uAmNyC8HqD .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-uAmNyC8HqD .dropdown-item:hover span {
  color: white;
}
.cid-uAmNyC8HqD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAmNyC8HqD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAmNyC8HqD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAmNyC8HqD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAmNyC8HqD .nav-link {
  position: relative;
}
.cid-uAmNyC8HqD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAmNyC8HqD .container {
    flex-wrap: wrap;
  }
}
.cid-uAmNyC8HqD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uAmNyC8HqD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uAmNyC8HqD .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAmNyC8HqD .dropdown-menu,
.cid-uAmNyC8HqD .navbar.opened {
  background: #000000 !important;
}
.cid-uAmNyC8HqD .nav-item:focus,
.cid-uAmNyC8HqD .nav-link:focus {
  outline: none;
}
.cid-uAmNyC8HqD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAmNyC8HqD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAmNyC8HqD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAmNyC8HqD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAmNyC8HqD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAmNyC8HqD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAmNyC8HqD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uAmNyC8HqD .navbar.opened {
  transition: all 0.3s;
}
.cid-uAmNyC8HqD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAmNyC8HqD .navbar .navbar-logo img {
  width: auto;
}
.cid-uAmNyC8HqD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAmNyC8HqD .navbar.collapsed {
  justify-content: center;
}
.cid-uAmNyC8HqD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAmNyC8HqD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAmNyC8HqD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uAmNyC8HqD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAmNyC8HqD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAmNyC8HqD .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-uAmNyC8HqD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAmNyC8HqD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAmNyC8HqD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAmNyC8HqD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAmNyC8HqD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAmNyC8HqD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAmNyC8HqD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAmNyC8HqD .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-uAmNyC8HqD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAmNyC8HqD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAmNyC8HqD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAmNyC8HqD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAmNyC8HqD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAmNyC8HqD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAmNyC8HqD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAmNyC8HqD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAmNyC8HqD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAmNyC8HqD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAmNyC8HqD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAmNyC8HqD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAmNyC8HqD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAmNyC8HqD .dropdown-item.active,
.cid-uAmNyC8HqD .dropdown-item:active {
  background-color: transparent;
}
.cid-uAmNyC8HqD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAmNyC8HqD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAmNyC8HqD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAmNyC8HqD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uAmNyC8HqD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAmNyC8HqD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAmNyC8HqD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAmNyC8HqD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAmNyC8HqD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAmNyC8HqD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAmNyC8HqD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAmNyC8HqD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmNyC8HqD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAmNyC8HqD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAmNyC8HqD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmNyC8HqD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAmNyC8HqD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAmNyC8HqD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAmNyC8HqD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uAmNyC8HqD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAmNyC8HqD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAmNyC8HqD .navbar {
    height: 70px;
  }
  .cid-uAmNyC8HqD .navbar.opened {
    height: auto;
  }
  .cid-uAmNyC8HqD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAmNyCVJz4 {
  background-image: url("../../../assets/images/troybilt-horse-tiller-clutch-assembly.webp");
}
.cid-uAmNyCVJz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmNyCVJz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAmNyCVJz4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uAmNyCVJz4 .mbr-text,
.cid-uAmNyCVJz4 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uAmNyCVJz4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uAmRkfPTzp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAmRkfPTzp img,
.cid-uAmRkfPTzp .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAmRkfPTzp .item:focus,
.cid-uAmRkfPTzp span:focus {
  outline: none;
}
.cid-uAmRkfPTzp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAmRkfPTzp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAmRkfPTzp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmRkfPTzp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAmRkfPTzp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAmRkfPTzp .mbr-section-title {
  color: #ffffff;
}
.cid-uAmRkfPTzp .mbr-text,
.cid-uAmRkfPTzp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uAmRkfPTzp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAmRkfPTzp .item-subtitle {
  text-align: center;
}
.cid-uAmRkfPTzp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAmXhCIwUk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAmXhCIwUk img,
.cid-uAmXhCIwUk .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAmXhCIwUk .item:focus,
.cid-uAmXhCIwUk span:focus {
  outline: none;
}
.cid-uAmXhCIwUk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAmXhCIwUk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAmXhCIwUk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmXhCIwUk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAmXhCIwUk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAmXhCIwUk .mbr-section-title {
  color: #ffffff;
}
.cid-uAmXhCIwUk .mbr-text,
.cid-uAmXhCIwUk .mbr-section-btn {
  text-align: left;
}
.cid-uAmXhCIwUk .item-title {
  text-align: left;
}
.cid-uAmXhCIwUk .item-subtitle {
  text-align: center;
}
.cid-uAmXhCIwUk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAmZgINj5l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAmZgINj5l img,
.cid-uAmZgINj5l .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAmZgINj5l .item:focus,
.cid-uAmZgINj5l span:focus {
  outline: none;
}
.cid-uAmZgINj5l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAmZgINj5l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAmZgINj5l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAmZgINj5l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAmZgINj5l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAmZgINj5l .mbr-section-title {
  color: #ffffff;
}
.cid-uAmZgINj5l .mbr-text,
.cid-uAmZgINj5l .mbr-section-btn {
  text-align: left;
}
.cid-uAmZgINj5l .item-title {
  text-align: left;
}
.cid-uAmZgINj5l .item-subtitle {
  text-align: center;
}
.cid-uAmZgINj5l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAn2eFcPMA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAn2eFcPMA img,
.cid-uAn2eFcPMA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAn2eFcPMA .item:focus,
.cid-uAn2eFcPMA span:focus {
  outline: none;
}
.cid-uAn2eFcPMA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAn2eFcPMA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAn2eFcPMA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAn2eFcPMA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAn2eFcPMA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAn2eFcPMA .mbr-section-title {
  color: #ffffff;
}
.cid-uAn2eFcPMA .mbr-text,
.cid-uAn2eFcPMA .mbr-section-btn {
  text-align: left;
}
.cid-uAn2eFcPMA .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAn2eFcPMA .item-subtitle {
  text-align: center;
}
.cid-uAn2eFcPMA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAn6FiYhHJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAn6FiYhHJ img,
.cid-uAn6FiYhHJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAn6FiYhHJ .item:focus,
.cid-uAn6FiYhHJ span:focus {
  outline: none;
}
.cid-uAn6FiYhHJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAn6FiYhHJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAn6FiYhHJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAn6FiYhHJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAn6FiYhHJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAn6FiYhHJ .mbr-section-title {
  color: #ffffff;
}
.cid-uAn6FiYhHJ .mbr-text,
.cid-uAn6FiYhHJ .mbr-section-btn {
  text-align: left;
}
.cid-uAn6FiYhHJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAn6FiYhHJ .item-subtitle {
  text-align: center;
}
.cid-uAn6FiYhHJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAndiJQovs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAndiJQovs img,
.cid-uAndiJQovs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAndiJQovs .item:focus,
.cid-uAndiJQovs span:focus {
  outline: none;
}
.cid-uAndiJQovs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAndiJQovs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAndiJQovs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAndiJQovs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAndiJQovs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAndiJQovs .mbr-section-title {
  color: #232323;
}
.cid-uAndiJQovs .mbr-text,
.cid-uAndiJQovs .mbr-section-btn {
  text-align: left;
}
.cid-uAndiJQovs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAndiJQovs .item-subtitle {
  text-align: center;
}
.cid-uAne3gcVHN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAne3gcVHN img,
.cid-uAne3gcVHN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uAne3gcVHN .item:focus,
.cid-uAne3gcVHN span:focus {
  outline: none;
}
.cid-uAne3gcVHN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAne3gcVHN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAne3gcVHN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAne3gcVHN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAne3gcVHN .item-wrapper {
  background: transparent;
}
.cid-uAne3gcVHN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAne3gcVHN .mbr-section-title {
  color: #ffffff;
}
.cid-uAne3gcVHN .mbr-text,
.cid-uAne3gcVHN .mbr-section-btn {
  text-align: left;
}
.cid-uAne3gcVHN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAne3gcVHN .item-subtitle {
  text-align: center;
}
.cid-v3FBoaya62 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FBoaya62 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FBoaya62 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FBoaya62 .mbr-section-title {
  color: #ffffff;
}
.cid-v3FBoaya62 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYN5um7Poy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uYN5um7Poy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYN5um7Poy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYN5um7Poy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uYN5um7Poy .number {
  color: #ffffff;
}
.cid-uYN5um7Poy .period {
  display: block;
}
.cid-uYN5um7Poy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uYN5um7Poy .period {
    font-size: 0.8rem;
  }
}
.cid-uYN5um7Poy .btn {
  height: 100%;
  margin: 0;
}
.cid-uYN5um7Poy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uYN5um7Poy .mbr-section-title {
  color: #ffffff;
}
.cid-uYN5um7Poy .mbr-text {
  color: #ffffff;
}
.cid-uYN5um7Poy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-uYN5um7Poy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uYN5um7Poy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-uYN5um7Poy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-uAmNyHyQgJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uAmNyHyQgJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmNyHyQgJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAmNyHyQgJ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-uAmNyHyQgJ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-uAmNyHyQgJ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-uAmNyHyQgJ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-uAmNyHyQgJ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-uAmNyHyQgJ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-uAmNyHyQgJ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-uAmNyHyQgJ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-uAmNyHyQgJ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-uAmNyHyQgJ [class^="socicon-"]:before,
.cid-uAmNyHyQgJ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uAmNyHyQgJ .mbr-section-title,
.cid-uAmNyHyQgJ .mbr-social-likes {
  color: #ffffff;
}
.cid-uAmNyIbHn1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uAmNyIbHn1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmNyIbHn1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAmNyIbHn1 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uAmNyIbHn1 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uAmNyIbHn1 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uAmNyIbHn1 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uAmNyIbHn1 .mbr-text {
  color: #ffffff;
}
.cid-uAmNyIbHn1 .card-title {
  color: #ffffff;
}
.cid-uAmNyIbHn1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAmNyIbHn1 .mbr-section-title {
  color: #ffffff;
}
.cid-uAmNyIbHn1 .link {
  color: #4479d9;
}
.cid-uAmNyIUuV7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uAmNyIUuV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmNyIUuV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAmNyIUuV7 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uAmNyIUuV7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAmNyIUuV7 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-uAmNyIUuV7 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uAmNyIUuV7 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uAmNyIUuV7 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3QPXkgBjm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3QPXkgBjm nav.navbar {
  position: fixed;
}
.cid-v3QPXkgBjm .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-v3QPXkgBjm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3QPXkgBjm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3QPXkgBjm .dropdown-item:hover,
.cid-v3QPXkgBjm .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3QPXkgBjm .dropdown-item:hover span {
  color: white;
}
.cid-v3QPXkgBjm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3QPXkgBjm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3QPXkgBjm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3QPXkgBjm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3QPXkgBjm .nav-link {
  position: relative;
}
.cid-v3QPXkgBjm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3QPXkgBjm .container {
    flex-wrap: wrap;
  }
}
.cid-v3QPXkgBjm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3QPXkgBjm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3QPXkgBjm .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3QPXkgBjm .dropdown-menu,
.cid-v3QPXkgBjm .navbar.opened {
  background: #000000 !important;
}
.cid-v3QPXkgBjm .nav-item:focus,
.cid-v3QPXkgBjm .nav-link:focus {
  outline: none;
}
.cid-v3QPXkgBjm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3QPXkgBjm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3QPXkgBjm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3QPXkgBjm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3QPXkgBjm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3QPXkgBjm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3QPXkgBjm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3QPXkgBjm .navbar.opened {
  transition: all 0.3s;
}
.cid-v3QPXkgBjm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3QPXkgBjm .navbar .navbar-logo img {
  width: auto;
}
.cid-v3QPXkgBjm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3QPXkgBjm .navbar.collapsed {
  justify-content: center;
}
.cid-v3QPXkgBjm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3QPXkgBjm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3QPXkgBjm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3QPXkgBjm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3QPXkgBjm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3QPXkgBjm .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-v3QPXkgBjm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3QPXkgBjm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3QPXkgBjm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3QPXkgBjm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3QPXkgBjm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3QPXkgBjm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3QPXkgBjm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3QPXkgBjm .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-v3QPXkgBjm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3QPXkgBjm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3QPXkgBjm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3QPXkgBjm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3QPXkgBjm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3QPXkgBjm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3QPXkgBjm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3QPXkgBjm .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3QPXkgBjm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3QPXkgBjm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3QPXkgBjm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3QPXkgBjm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3QPXkgBjm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3QPXkgBjm .dropdown-item.active,
.cid-v3QPXkgBjm .dropdown-item:active {
  background-color: transparent;
}
.cid-v3QPXkgBjm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3QPXkgBjm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3QPXkgBjm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3QPXkgBjm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3QPXkgBjm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3QPXkgBjm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3QPXkgBjm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3QPXkgBjm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3QPXkgBjm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3QPXkgBjm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3QPXkgBjm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3QPXkgBjm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3QPXkgBjm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3QPXkgBjm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3QPXkgBjm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3QPXkgBjm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3QPXkgBjm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3QPXkgBjm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3QPXkgBjm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3QPXkgBjm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3QPXkgBjm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3QPXkgBjm .navbar {
    height: 70px;
  }
  .cid-v3QPXkgBjm .navbar.opened {
    height: auto;
  }
  .cid-v3QPXkgBjm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3QPXl8UIF {
  background-image: url("../../../assets/images/white-cabbage-2521700.webp");
}
.cid-v3QPXl8UIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXl8UIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXl8UIF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXl8UIF .mbr-text,
.cid-v3QPXl8UIF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXl8UIF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXlJp9b {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3QPXlJp9b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXlJp9b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3QPXlJp9b .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3QPXlJp9b img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3QPXlJp9b .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3QPXlJp9b .mbr-section-title {
  color: #ffffff;
}
.cid-v3QPXlJp9b .mbr-text {
  color: #ffffff;
}
.cid-v3QPXlJp9b .mbr-description {
  color: #ffffff;
}
.cid-v3QPXoKnUi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXoKnUi img,
.cid-v3QPXoKnUi .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXoKnUi .item:focus,
.cid-v3QPXoKnUi span:focus {
  outline: none;
}
.cid-v3QPXoKnUi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXoKnUi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXoKnUi .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXoKnUi .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXoKnUi .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXoKnUi .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXoKnUi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXoKnUi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXoKnUi .mbr-text,
.cid-v3QPXoKnUi .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXoKnUi .item-title {
  text-align: left;
}
.cid-v3QPXoKnUi .item-subtitle {
  text-align: left;
}
.cid-v3QPXoKnUi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3QPXpuaNc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXpuaNc img,
.cid-v3QPXpuaNc .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXpuaNc .item:focus,
.cid-v3QPXpuaNc span:focus {
  outline: none;
}
.cid-v3QPXpuaNc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXpuaNc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXpuaNc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXpuaNc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXpuaNc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXpuaNc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXpuaNc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXpuaNc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXpuaNc .mbr-text,
.cid-v3QPXpuaNc .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXpuaNc .item-title {
  text-align: left;
}
.cid-v3QPXpuaNc .item-subtitle {
  text-align: left;
}
.cid-v3QPXpuaNc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3QPXqgDZ4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXqgDZ4 img,
.cid-v3QPXqgDZ4 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXqgDZ4 .item:focus,
.cid-v3QPXqgDZ4 span:focus {
  outline: none;
}
.cid-v3QPXqgDZ4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXqgDZ4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXqgDZ4 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXqgDZ4 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXqgDZ4 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXqgDZ4 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXqgDZ4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXqgDZ4 .mbr-section-title {
  color: #232323;
}
.cid-v3QPXqgDZ4 .mbr-text,
.cid-v3QPXqgDZ4 .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXqgDZ4 .item-title {
  text-align: left;
}
.cid-v3QPXqgDZ4 .item-subtitle {
  text-align: left;
}
.cid-v3QPXr6TJS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXr6TJS img,
.cid-v3QPXr6TJS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXr6TJS .item:focus,
.cid-v3QPXr6TJS span:focus {
  outline: none;
}
.cid-v3QPXr6TJS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXr6TJS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXr6TJS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXr6TJS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXr6TJS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXr6TJS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXr6TJS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXr6TJS .mbr-section-title {
  color: #ffffff;
}
.cid-v3QPXr6TJS .mbr-text,
.cid-v3QPXr6TJS .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXr6TJS .item-title {
  text-align: left;
}
.cid-v3QPXr6TJS .item-subtitle {
  text-align: left;
}
.cid-v3QPXr6TJS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3QPXrVB1D {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXrVB1D img,
.cid-v3QPXrVB1D .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXrVB1D .item:focus,
.cid-v3QPXrVB1D span:focus {
  outline: none;
}
.cid-v3QPXrVB1D .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXrVB1D .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXrVB1D .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXrVB1D .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXrVB1D .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXrVB1D .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXrVB1D .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXrVB1D .mbr-section-title {
  color: #232323;
}
.cid-v3QPXrVB1D .mbr-text,
.cid-v3QPXrVB1D .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXrVB1D .item-title {
  text-align: left;
}
.cid-v3QPXrVB1D .item-subtitle {
  text-align: left;
}
.cid-v3QPXsLpCA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXsLpCA img,
.cid-v3QPXsLpCA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXsLpCA .item:focus,
.cid-v3QPXsLpCA span:focus {
  outline: none;
}
.cid-v3QPXsLpCA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXsLpCA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXsLpCA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXsLpCA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXsLpCA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXsLpCA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXsLpCA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXsLpCA .mbr-section-title {
  color: #232323;
}
.cid-v3QPXsLpCA .mbr-text,
.cid-v3QPXsLpCA .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXsLpCA .item-title {
  text-align: left;
}
.cid-v3QPXsLpCA .item-subtitle {
  text-align: left;
}
.cid-v3QPXtD3mN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXtD3mN img,
.cid-v3QPXtD3mN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXtD3mN .item:focus,
.cid-v3QPXtD3mN span:focus {
  outline: none;
}
.cid-v3QPXtD3mN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXtD3mN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXtD3mN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXtD3mN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXtD3mN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXtD3mN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXtD3mN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXtD3mN .mbr-section-title {
  color: #232323;
}
.cid-v3QPXtD3mN .mbr-text,
.cid-v3QPXtD3mN .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXtD3mN .item-title {
  text-align: left;
}
.cid-v3QPXtD3mN .item-subtitle {
  text-align: left;
}
.cid-v3QPXuAUtY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXuAUtY img,
.cid-v3QPXuAUtY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXuAUtY .item:focus,
.cid-v3QPXuAUtY span:focus {
  outline: none;
}
.cid-v3QPXuAUtY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXuAUtY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXuAUtY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXuAUtY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXuAUtY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXuAUtY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXuAUtY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXuAUtY .mbr-section-title {
  color: #232323;
}
.cid-v3QPXuAUtY .mbr-text,
.cid-v3QPXuAUtY .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXuAUtY .item-title {
  text-align: left;
}
.cid-v3QPXuAUtY .item-subtitle {
  text-align: left;
}
.cid-v3QPXvwJC1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3QPXvwJC1 img,
.cid-v3QPXvwJC1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3QPXvwJC1 .item:focus,
.cid-v3QPXvwJC1 span:focus {
  outline: none;
}
.cid-v3QPXvwJC1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3QPXvwJC1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3QPXvwJC1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3QPXvwJC1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXvwJC1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3QPXvwJC1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3QPXvwJC1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3QPXvwJC1 .mbr-section-title {
  color: #232323;
}
.cid-v3QPXvwJC1 .mbr-text,
.cid-v3QPXvwJC1 .mbr-section-btn {
  text-align: left;
}
.cid-v3QPXvwJC1 .item-title {
  text-align: left;
}
.cid-v3QPXvwJC1 .item-subtitle {
  text-align: left;
}
.cid-v3QPXwm3mA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3QPXwm3mA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXwm3mA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXwm3mA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3QPXwm3mA .mbr-section-title {
  color: #ffffff;
}
.cid-v3QPXxcuEI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3QPXxcuEI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXxcuEI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXxcuEI .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3QPXxcuEI .number {
  color: #ffffff;
}
.cid-v3QPXxcuEI .period {
  display: block;
}
.cid-v3QPXxcuEI .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3QPXxcuEI .period {
    font-size: 0.8rem;
  }
}
.cid-v3QPXxcuEI .btn {
  height: 100%;
  margin: 0;
}
.cid-v3QPXxcuEI .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3QPXxcuEI .mbr-section-title {
  color: #ffffff;
}
.cid-v3QPXxcuEI .mbr-text {
  color: #ffffff;
}
.cid-v3QPXxcuEI .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3QPXxcuEI .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3QPXxcuEI .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3QPXxcuEI .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3QPXycGKA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3QPXycGKA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXycGKA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXycGKA .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3QPXycGKA .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3QPXycGKA .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3QPXycGKA .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3QPXycGKA .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3QPXycGKA .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3QPXycGKA .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3QPXycGKA .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3QPXycGKA .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3QPXycGKA [class^="socicon-"]:before,
.cid-v3QPXycGKA [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3QPXycGKA .mbr-section-title,
.cid-v3QPXycGKA .mbr-social-likes {
  color: #ffffff;
}
.cid-v3QPXz3QcJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3QPXz3QcJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXz3QcJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXz3QcJ .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3QPXz3QcJ .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3QPXz3QcJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3QPXz3QcJ .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3QPXz3QcJ .mbr-text {
  color: #ffffff;
}
.cid-v3QPXz3QcJ .card-title {
  color: #ffffff;
}
.cid-v3QPXz3QcJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3QPXz3QcJ .mbr-section-title {
  color: #ffffff;
}
.cid-v3QPXz3QcJ .link {
  color: #4479d9;
}
.cid-v3QPXA0HjX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3QPXA0HjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3QPXA0HjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3QPXA0HjX .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3QPXA0HjX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3QPXA0HjX .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3QPXA0HjX .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3QPXA0HjX div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3QPXA0HjX .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3cJp4GL9s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3cJp4GL9s nav.navbar {
  position: fixed;
}
.cid-v3cJp4GL9s .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-v3cJp4GL9s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3cJp4GL9s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3cJp4GL9s .dropdown-item:hover,
.cid-v3cJp4GL9s .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3cJp4GL9s .dropdown-item:hover span {
  color: white;
}
.cid-v3cJp4GL9s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3cJp4GL9s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3cJp4GL9s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3cJp4GL9s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3cJp4GL9s .nav-link {
  position: relative;
}
.cid-v3cJp4GL9s .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3cJp4GL9s .container {
    flex-wrap: wrap;
  }
}
.cid-v3cJp4GL9s .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3cJp4GL9s .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3cJp4GL9s .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3cJp4GL9s .dropdown-menu,
.cid-v3cJp4GL9s .navbar.opened {
  background: #000000 !important;
}
.cid-v3cJp4GL9s .nav-item:focus,
.cid-v3cJp4GL9s .nav-link:focus {
  outline: none;
}
.cid-v3cJp4GL9s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3cJp4GL9s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3cJp4GL9s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3cJp4GL9s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3cJp4GL9s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3cJp4GL9s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3cJp4GL9s .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3cJp4GL9s .navbar.opened {
  transition: all 0.3s;
}
.cid-v3cJp4GL9s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3cJp4GL9s .navbar .navbar-logo img {
  width: auto;
}
.cid-v3cJp4GL9s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3cJp4GL9s .navbar.collapsed {
  justify-content: center;
}
.cid-v3cJp4GL9s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3cJp4GL9s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3cJp4GL9s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3cJp4GL9s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3cJp4GL9s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3cJp4GL9s .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-v3cJp4GL9s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3cJp4GL9s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3cJp4GL9s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3cJp4GL9s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3cJp4GL9s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3cJp4GL9s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3cJp4GL9s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3cJp4GL9s .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-v3cJp4GL9s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3cJp4GL9s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3cJp4GL9s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3cJp4GL9s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3cJp4GL9s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3cJp4GL9s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3cJp4GL9s .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3cJp4GL9s .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3cJp4GL9s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3cJp4GL9s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3cJp4GL9s .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3cJp4GL9s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3cJp4GL9s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3cJp4GL9s .dropdown-item.active,
.cid-v3cJp4GL9s .dropdown-item:active {
  background-color: transparent;
}
.cid-v3cJp4GL9s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3cJp4GL9s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3cJp4GL9s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3cJp4GL9s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3cJp4GL9s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3cJp4GL9s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3cJp4GL9s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3cJp4GL9s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3cJp4GL9s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3cJp4GL9s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3cJp4GL9s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3cJp4GL9s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3cJp4GL9s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3cJp4GL9s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3cJp4GL9s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3cJp4GL9s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3cJp4GL9s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3cJp4GL9s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3cJp4GL9s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3cJp4GL9s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3cJp4GL9s .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3cJp4GL9s .navbar {
    height: 70px;
  }
  .cid-v3cJp4GL9s .navbar.opened {
    height: auto;
  }
  .cid-v3cJp4GL9s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3cJp5wekz {
  background-image: url("../../../assets/images/solar-array-greenhouse.webp");
}
.cid-v3cJp5wekz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJp5wekz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJp5wekz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3cJp5wekz .mbr-text,
.cid-v3cJp5wekz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3cJp5wekz .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3RcDq7VtT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3RcDq7VtT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3RcDq7VtT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3RcDq7VtT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3RcDq7VtT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3RcDq7VtT .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3RcDq7VtT .mbr-section-title {
  color: #ffffff;
}
.cid-v3RcDq7VtT .mbr-text {
  color: #ffffff;
}
.cid-v3RcDq7VtT .mbr-description {
  color: #ffffff;
}
.cid-v3cJpbNPSC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3cJpbNPSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpbNPSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpbNPSC .mbr-section-title {
  color: #ffffff;
}
.cid-v3cJpcp62v {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3cJpcp62v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpcp62v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpcp62v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3cJpcp62v .mbr-section-title {
  color: #ffffff;
}
.cid-v3cJpd1owd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3cJpd1owd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpd1owd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpd1owd .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3cJpd1owd .number {
  color: #ffffff;
}
.cid-v3cJpd1owd .period {
  display: block;
}
.cid-v3cJpd1owd .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3cJpd1owd .period {
    font-size: 0.8rem;
  }
}
.cid-v3cJpd1owd .btn {
  height: 100%;
  margin: 0;
}
.cid-v3cJpd1owd .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3cJpd1owd .mbr-section-title {
  color: #ffffff;
}
.cid-v3cJpd1owd .mbr-text {
  color: #ffffff;
}
.cid-v3cJpd1owd .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3cJpd1owd .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3cJpd1owd .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3cJpd1owd .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3cJpdSTot {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3cJpdSTot .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpdSTot .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpdSTot .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3cJpdSTot .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3cJpdSTot .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3cJpdSTot .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3cJpdSTot .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3cJpdSTot .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3cJpdSTot .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3cJpdSTot .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3cJpdSTot .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3cJpdSTot [class^="socicon-"]:before,
.cid-v3cJpdSTot [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3cJpdSTot .mbr-section-title,
.cid-v3cJpdSTot .mbr-social-likes {
  color: #ffffff;
}
.cid-v3cJpexzco {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3cJpexzco .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpexzco .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpexzco .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3cJpexzco .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3cJpexzco .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3cJpexzco .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3cJpexzco .mbr-text {
  color: #ffffff;
}
.cid-v3cJpexzco .card-title {
  color: #ffffff;
}
.cid-v3cJpexzco .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3cJpexzco .mbr-section-title {
  color: #ffffff;
}
.cid-v3cJpexzco .link {
  color: #4479d9;
}
.cid-v3cJpfjTcS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3cJpfjTcS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3cJpfjTcS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3cJpfjTcS .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3cJpfjTcS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3cJpfjTcS .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3cJpfjTcS .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3cJpfjTcS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3cJpfjTcS .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3Tu1HWDUI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3Tu1HWDUI nav.navbar {
  position: fixed;
}
.cid-v3Tu1HWDUI .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-v3Tu1HWDUI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3Tu1HWDUI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3Tu1HWDUI .dropdown-item:hover,
.cid-v3Tu1HWDUI .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3Tu1HWDUI .dropdown-item:hover span {
  color: white;
}
.cid-v3Tu1HWDUI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3Tu1HWDUI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3Tu1HWDUI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3Tu1HWDUI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3Tu1HWDUI .nav-link {
  position: relative;
}
.cid-v3Tu1HWDUI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3Tu1HWDUI .container {
    flex-wrap: wrap;
  }
}
.cid-v3Tu1HWDUI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3Tu1HWDUI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3Tu1HWDUI .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3Tu1HWDUI .dropdown-menu,
.cid-v3Tu1HWDUI .navbar.opened {
  background: #000000 !important;
}
.cid-v3Tu1HWDUI .nav-item:focus,
.cid-v3Tu1HWDUI .nav-link:focus {
  outline: none;
}
.cid-v3Tu1HWDUI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3Tu1HWDUI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3Tu1HWDUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3Tu1HWDUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3Tu1HWDUI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3Tu1HWDUI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3Tu1HWDUI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3Tu1HWDUI .navbar.opened {
  transition: all 0.3s;
}
.cid-v3Tu1HWDUI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3Tu1HWDUI .navbar .navbar-logo img {
  width: auto;
}
.cid-v3Tu1HWDUI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3Tu1HWDUI .navbar.collapsed {
  justify-content: center;
}
.cid-v3Tu1HWDUI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3Tu1HWDUI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3Tu1HWDUI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3Tu1HWDUI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3Tu1HWDUI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3Tu1HWDUI .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-v3Tu1HWDUI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3Tu1HWDUI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3Tu1HWDUI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3Tu1HWDUI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3Tu1HWDUI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3Tu1HWDUI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3Tu1HWDUI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3Tu1HWDUI .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-v3Tu1HWDUI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3Tu1HWDUI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3Tu1HWDUI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3Tu1HWDUI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3Tu1HWDUI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3Tu1HWDUI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3Tu1HWDUI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3Tu1HWDUI .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3Tu1HWDUI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3Tu1HWDUI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3Tu1HWDUI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3Tu1HWDUI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3Tu1HWDUI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3Tu1HWDUI .dropdown-item.active,
.cid-v3Tu1HWDUI .dropdown-item:active {
  background-color: transparent;
}
.cid-v3Tu1HWDUI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3Tu1HWDUI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3Tu1HWDUI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3Tu1HWDUI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3Tu1HWDUI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3Tu1HWDUI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3Tu1HWDUI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3Tu1HWDUI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3Tu1HWDUI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3Tu1HWDUI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3Tu1HWDUI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3Tu1HWDUI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Tu1HWDUI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Tu1HWDUI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3Tu1HWDUI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Tu1HWDUI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3Tu1HWDUI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3Tu1HWDUI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Tu1HWDUI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3Tu1HWDUI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3Tu1HWDUI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3Tu1HWDUI .navbar {
    height: 70px;
  }
  .cid-v3Tu1HWDUI .navbar.opened {
    height: auto;
  }
  .cid-v3Tu1HWDUI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3Tu1Js2DL {
  background-image: url("../../../assets/images/hydroniccyclonicvortex.webp");
}
.cid-v3Tu1Js2DL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1Js2DL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu1Js2DL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3Tu1Js2DL .mbr-text,
.cid-v3Tu1Js2DL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3Tu1Js2DL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3TECsnAqg {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TECsnAqg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TECsnAqg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3TECsnAqg .mbr-section-title {
  color: #ffffff;
}
.cid-v3TECsnAqg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu1KDxk5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1KDxk5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1KDxk5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1KDxk5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1KDxk5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1KDxk5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1KDxk5 .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1KDxk5 .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1KDxk5 .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1LLZiT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1LLZiT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1LLZiT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1LLZiT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1LLZiT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1LLZiT .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1LLZiT .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1LLZiT .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1LLZiT .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1MRKWI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1MRKWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1MRKWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1MRKWI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1MRKWI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1MRKWI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1MRKWI .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1MRKWI .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1MRKWI .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1NYIUT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1NYIUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1NYIUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1NYIUT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1NYIUT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1NYIUT .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1NYIUT .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1NYIUT .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1NYIUT .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1PdAt8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1PdAt8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1PdAt8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1PdAt8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1PdAt8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1PdAt8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1PdAt8 .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1PdAt8 .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1PdAt8 .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1QmaQr {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1QmaQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1QmaQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1QmaQr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1QmaQr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1QmaQr .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1QmaQr .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1QmaQr .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1QmaQr .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1RruCX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1RruCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1RruCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1RruCX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1RruCX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1RruCX .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1RruCX .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1RruCX .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1RruCX .mbr-description {
  color: #ffffff;
}
.cid-v3Tu1SzQ1Q {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1SzQ1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu1SzQ1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tu1SzQ1Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tu1SzQ1Q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tu1SzQ1Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tu1SzQ1Q .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1SzQ1Q .mbr-text {
  color: #ffffff;
}
.cid-v3Tu1SzQ1Q .mbr-description {
  color: #ffffff;
}
.cid-v3TIqWHQD5 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TIqWHQD5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TIqWHQD5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TIqWHQD5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TIqWHQD5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TIqWHQD5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TIqWHQD5 .mbr-section-title {
  color: #ffffff;
}
.cid-v3TIqWHQD5 .mbr-text {
  color: #ffffff;
}
.cid-v3TIqWHQD5 .mbr-description {
  color: #ffffff;
}
.cid-v3TIO7WZDM {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TIO7WZDM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TIO7WZDM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TIO7WZDM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TIO7WZDM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TIO7WZDM .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TIO7WZDM .mbr-section-title {
  color: #ffffff;
}
.cid-v3TIO7WZDM .mbr-text {
  color: #ffffff;
}
.cid-v3TIO7WZDM .mbr-description {
  color: #ffffff;
}
.cid-v3TJ7RdeYC {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TJ7RdeYC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TJ7RdeYC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TJ7RdeYC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TJ7RdeYC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TJ7RdeYC .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TJ7RdeYC .mbr-section-title {
  color: #ffffff;
}
.cid-v3TJ7RdeYC .mbr-text {
  color: #ffffff;
}
.cid-v3TJ7RdeYC .mbr-description {
  color: #ffffff;
}
.cid-v3TJrT3wjj {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TJrT3wjj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TJrT3wjj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TJrT3wjj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TJrT3wjj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TJrT3wjj .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TJrT3wjj .mbr-section-title {
  color: #ffffff;
}
.cid-v3TJrT3wjj .mbr-text {
  color: #ffffff;
}
.cid-v3TJrT3wjj .mbr-description {
  color: #ffffff;
}
.cid-v3TJWVfd7r {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TJWVfd7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TJWVfd7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TJWVfd7r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TJWVfd7r img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TJWVfd7r .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TJWVfd7r .mbr-section-title {
  color: #ffffff;
}
.cid-v3TJWVfd7r .mbr-text {
  color: #ffffff;
}
.cid-v3TJWVfd7r .mbr-description {
  color: #ffffff;
}
.cid-v3TKlmr0hW {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TKlmr0hW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TKlmr0hW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TKlmr0hW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TKlmr0hW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TKlmr0hW .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TKlmr0hW .mbr-section-title {
  color: #ffffff;
}
.cid-v3TKlmr0hW .mbr-text {
  color: #ffffff;
}
.cid-v3TKlmr0hW .mbr-description {
  color: #ffffff;
}
.cid-v3TKNNm49L {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TKNNm49L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TKNNm49L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TKNNm49L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TKNNm49L img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TKNNm49L .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TKNNm49L .mbr-section-title {
  color: #ffffff;
}
.cid-v3TKNNm49L .mbr-text {
  color: #ffffff;
}
.cid-v3TKNNm49L .mbr-description {
  color: #ffffff;
}
.cid-v3TLc4PqdB {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TLc4PqdB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TLc4PqdB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TLc4PqdB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TLc4PqdB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TLc4PqdB .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TLc4PqdB .mbr-section-title {
  color: #ffffff;
}
.cid-v3TLc4PqdB .mbr-text {
  color: #ffffff;
}
.cid-v3TLc4PqdB .mbr-description {
  color: #ffffff;
}
.cid-v3TLsGHQyI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TLsGHQyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TLsGHQyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TLsGHQyI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TLsGHQyI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TLsGHQyI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TLsGHQyI .mbr-section-title {
  color: #ffffff;
}
.cid-v3TLsGHQyI .mbr-text {
  color: #ffffff;
}
.cid-v3TLsGHQyI .mbr-description {
  color: #ffffff;
}
.cid-v3TPFdorCS {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TPFdorCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TPFdorCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TPFdorCS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TPFdorCS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TPFdorCS .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TPFdorCS .mbr-section-title {
  color: #ffffff;
}
.cid-v3TPFdorCS .mbr-text {
  color: #ffffff;
}
.cid-v3TPFdorCS .mbr-description {
  color: #ffffff;
}
.cid-v3TQ5JQS6A {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TQ5JQS6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TQ5JQS6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TQ5JQS6A .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TQ5JQS6A img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TQ5JQS6A .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TQ5JQS6A .mbr-section-title {
  color: #ffffff;
}
.cid-v3TQ5JQS6A .mbr-text {
  color: #ffffff;
}
.cid-v3TQ5JQS6A .mbr-description {
  color: #ffffff;
}
.cid-v3TQNGCuOE {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TQNGCuOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TQNGCuOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TQNGCuOE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TQNGCuOE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TQNGCuOE .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TQNGCuOE .mbr-section-title {
  color: #ffffff;
}
.cid-v3TQNGCuOE .mbr-text {
  color: #ffffff;
}
.cid-v3TQNGCuOE .mbr-description {
  color: #ffffff;
}
.cid-v3TR8P2FbG {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TR8P2FbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TR8P2FbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TR8P2FbG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TR8P2FbG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TR8P2FbG .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TR8P2FbG .mbr-section-title {
  color: #ffffff;
}
.cid-v3TR8P2FbG .mbr-text {
  color: #ffffff;
}
.cid-v3TR8P2FbG .mbr-description {
  color: #ffffff;
}
.cid-v3TRJHCT7o {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TRJHCT7o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TRJHCT7o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TRJHCT7o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TRJHCT7o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TRJHCT7o .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TRJHCT7o .mbr-section-title {
  color: #ffffff;
}
.cid-v3TRJHCT7o .mbr-text {
  color: #ffffff;
}
.cid-v3TRJHCT7o .mbr-description {
  color: #ffffff;
}
.cid-v3TSpKV1Ys {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TSpKV1Ys .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TSpKV1Ys .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3TSpKV1Ys .mbr-section-title {
  color: #ffffff;
}
.cid-v3TSpKV1Ys .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3TSBLn51i {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TSBLn51i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TSBLn51i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3TSBLn51i .mbr-section-title {
  color: #ffffff;
}
.cid-v3TSBLn51i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3TT9evsSe {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TT9evsSe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TT9evsSe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3TT9evsSe .mbr-section-title {
  color: #ffffff;
}
.cid-v3TT9evsSe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4hnMUrkal {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hnMUrkal .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hnMUrkal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hnMUrkal .mbr-section-title {
  color: #ffffff;
}
.cid-v4hnMUrkal .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu1TFO2O {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1TFO2O img,
.cid-v3Tu1TFO2O .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu1TFO2O .item:focus,
.cid-v3Tu1TFO2O span:focus {
  outline: none;
}
.cid-v3Tu1TFO2O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu1TFO2O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu1TFO2O .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu1TFO2O .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu1TFO2O .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu1TFO2O .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu1TFO2O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu1TFO2O .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu1TFO2O .mbr-text,
.cid-v3Tu1TFO2O .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1TFO2O .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1TFO2O .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu1TFO2O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu1UVBJV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1UVBJV img,
.cid-v3Tu1UVBJV .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu1UVBJV .item:focus,
.cid-v3Tu1UVBJV span:focus {
  outline: none;
}
.cid-v3Tu1UVBJV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu1UVBJV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu1UVBJV .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu1UVBJV .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu1UVBJV .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu1UVBJV .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu1UVBJV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu1UVBJV .mbr-section-title {
  color: #232323;
}
.cid-v3Tu1UVBJV .mbr-text,
.cid-v3Tu1UVBJV .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1UVBJV .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1UVBJV .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu1WeQKX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1WeQKX img,
.cid-v3Tu1WeQKX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu1WeQKX .item:focus,
.cid-v3Tu1WeQKX span:focus {
  outline: none;
}
.cid-v3Tu1WeQKX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu1WeQKX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu1WeQKX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu1WeQKX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu1WeQKX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu1WeQKX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu1WeQKX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu1WeQKX .mbr-section-title {
  color: #232323;
}
.cid-v3Tu1WeQKX .mbr-text,
.cid-v3Tu1WeQKX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1WeQKX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1WeQKX .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu1XxlAb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1XxlAb img,
.cid-v3Tu1XxlAb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu1XxlAb .item:focus,
.cid-v3Tu1XxlAb span:focus {
  outline: none;
}
.cid-v3Tu1XxlAb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu1XxlAb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu1XxlAb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu1XxlAb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu1XxlAb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu1XxlAb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu1XxlAb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu1XxlAb .mbr-section-title {
  color: #232323;
}
.cid-v3Tu1XxlAb .mbr-text,
.cid-v3Tu1XxlAb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1XxlAb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1XxlAb .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu1YXwTq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu1YXwTq img,
.cid-v3Tu1YXwTq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu1YXwTq .item:focus,
.cid-v3Tu1YXwTq span:focus {
  outline: none;
}
.cid-v3Tu1YXwTq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu1YXwTq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu1YXwTq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu1YXwTq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu1YXwTq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu1YXwTq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu1YXwTq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu1YXwTq .mbr-section-title {
  color: #232323;
}
.cid-v3Tu1YXwTq .mbr-text,
.cid-v3Tu1YXwTq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1YXwTq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu1YXwTq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu20mseU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu20mseU img,
.cid-v3Tu20mseU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu20mseU .item:focus,
.cid-v3Tu20mseU span:focus {
  outline: none;
}
.cid-v3Tu20mseU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu20mseU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu20mseU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu20mseU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu20mseU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu20mseU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu20mseU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu20mseU .mbr-section-title {
  color: #232323;
}
.cid-v3Tu20mseU .mbr-text,
.cid-v3Tu20mseU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu20mseU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu20mseU .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu21SPBN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu21SPBN img,
.cid-v3Tu21SPBN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu21SPBN .item:focus,
.cid-v3Tu21SPBN span:focus {
  outline: none;
}
.cid-v3Tu21SPBN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu21SPBN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu21SPBN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu21SPBN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu21SPBN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu21SPBN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu21SPBN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu21SPBN .mbr-section-title {
  color: #232323;
}
.cid-v3Tu21SPBN .mbr-text,
.cid-v3Tu21SPBN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu21SPBN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu21SPBN .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu236SUd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu236SUd img,
.cid-v3Tu236SUd .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu236SUd .item:focus,
.cid-v3Tu236SUd span:focus {
  outline: none;
}
.cid-v3Tu236SUd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu236SUd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu236SUd .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu236SUd .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu236SUd .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu236SUd .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu236SUd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu236SUd .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu236SUd .mbr-text,
.cid-v3Tu236SUd .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu236SUd .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu236SUd .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu236SUd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu24BOMa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu24BOMa img,
.cid-v3Tu24BOMa .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3Tu24BOMa .item:focus,
.cid-v3Tu24BOMa span:focus {
  outline: none;
}
.cid-v3Tu24BOMa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Tu24BOMa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Tu24BOMa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3Tu24BOMa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu24BOMa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3Tu24BOMa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3Tu24BOMa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Tu24BOMa .mbr-section-title {
  color: #232323;
}
.cid-v3Tu24BOMa .mbr-text,
.cid-v3Tu24BOMa .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu24BOMa .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Tu24BOMa .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3Tu2600Ww {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3Tu2600Ww .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu2600Ww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu2600Ww .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu2600Ww .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu27mpMW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu27mpMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu27mpMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu27mpMW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3Tu27mpMW .number {
  color: #ffffff;
}
.cid-v3Tu27mpMW .period {
  display: block;
}
.cid-v3Tu27mpMW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3Tu27mpMW .period {
    font-size: 0.8rem;
  }
}
.cid-v3Tu27mpMW .btn {
  height: 100%;
  margin: 0;
}
.cid-v3Tu27mpMW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3Tu27mpMW .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu27mpMW .mbr-text {
  color: #ffffff;
}
.cid-v3Tu27mpMW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3Tu27mpMW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3Tu27mpMW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3Tu27mpMW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3Tu28Pw20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3Tu28Pw20 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu28Pw20 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu28Pw20 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3Tu28Pw20 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3Tu28Pw20 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3Tu28Pw20 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3Tu28Pw20 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3Tu28Pw20 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3Tu28Pw20 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3Tu28Pw20 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3Tu28Pw20 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3Tu28Pw20 [class^="socicon-"]:before,
.cid-v3Tu28Pw20 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3Tu28Pw20 .mbr-section-title,
.cid-v3Tu28Pw20 .mbr-social-likes {
  color: #ffffff;
}
.cid-v3Tu2a893r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tu2a893r .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu2a893r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu2a893r .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3Tu2a893r .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3Tu2a893r .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3Tu2a893r .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3Tu2a893r .mbr-text {
  color: #ffffff;
}
.cid-v3Tu2a893r .card-title {
  color: #ffffff;
}
.cid-v3Tu2a893r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Tu2a893r .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tu2a893r .link {
  color: #4479d9;
}
.cid-v3Tu2bHhQ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3Tu2bHhQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tu2bHhQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Tu2bHhQ3 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3Tu2bHhQ3 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Tu2bHhQ3 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3Tu2bHhQ3 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3Tu2bHhQ3 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3Tu2bHhQ3 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3SZhXRGqE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3SZhXRGqE nav.navbar {
  position: fixed;
}
.cid-v3SZhXRGqE .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-v3SZhXRGqE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3SZhXRGqE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3SZhXRGqE .dropdown-item:hover,
.cid-v3SZhXRGqE .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3SZhXRGqE .dropdown-item:hover span {
  color: white;
}
.cid-v3SZhXRGqE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3SZhXRGqE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3SZhXRGqE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3SZhXRGqE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3SZhXRGqE .nav-link {
  position: relative;
}
.cid-v3SZhXRGqE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3SZhXRGqE .container {
    flex-wrap: wrap;
  }
}
.cid-v3SZhXRGqE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3SZhXRGqE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3SZhXRGqE .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3SZhXRGqE .dropdown-menu,
.cid-v3SZhXRGqE .navbar.opened {
  background: #000000 !important;
}
.cid-v3SZhXRGqE .nav-item:focus,
.cid-v3SZhXRGqE .nav-link:focus {
  outline: none;
}
.cid-v3SZhXRGqE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3SZhXRGqE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3SZhXRGqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3SZhXRGqE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3SZhXRGqE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3SZhXRGqE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3SZhXRGqE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3SZhXRGqE .navbar.opened {
  transition: all 0.3s;
}
.cid-v3SZhXRGqE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3SZhXRGqE .navbar .navbar-logo img {
  width: auto;
}
.cid-v3SZhXRGqE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3SZhXRGqE .navbar.collapsed {
  justify-content: center;
}
.cid-v3SZhXRGqE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3SZhXRGqE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3SZhXRGqE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3SZhXRGqE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3SZhXRGqE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3SZhXRGqE .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-v3SZhXRGqE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3SZhXRGqE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3SZhXRGqE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3SZhXRGqE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3SZhXRGqE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3SZhXRGqE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3SZhXRGqE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3SZhXRGqE .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-v3SZhXRGqE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3SZhXRGqE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3SZhXRGqE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3SZhXRGqE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3SZhXRGqE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3SZhXRGqE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3SZhXRGqE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3SZhXRGqE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3SZhXRGqE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3SZhXRGqE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3SZhXRGqE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3SZhXRGqE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3SZhXRGqE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3SZhXRGqE .dropdown-item.active,
.cid-v3SZhXRGqE .dropdown-item:active {
  background-color: transparent;
}
.cid-v3SZhXRGqE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3SZhXRGqE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3SZhXRGqE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3SZhXRGqE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3SZhXRGqE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3SZhXRGqE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3SZhXRGqE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3SZhXRGqE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3SZhXRGqE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3SZhXRGqE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3SZhXRGqE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3SZhXRGqE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3SZhXRGqE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3SZhXRGqE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3SZhXRGqE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3SZhXRGqE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3SZhXRGqE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3SZhXRGqE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3SZhXRGqE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3SZhXRGqE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3SZhXRGqE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3SZhXRGqE .navbar {
    height: 70px;
  }
  .cid-v3SZhXRGqE .navbar.opened {
    height: auto;
  }
  .cid-v3SZhXRGqE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3SZhYMaAs {
  background-image: url("../../../assets/images/acorns-on-branch.webp");
}
.cid-v3SZhYMaAs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZhYMaAs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZhYMaAs .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3SZhYMaAs .mbr-text,
.cid-v3SZhYMaAs .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3SZhYMaAs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3Thq00CIh {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Thq00CIh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Thq00CIh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Thq00CIh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Thq00CIh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Thq00CIh .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Thq00CIh .mbr-section-title {
  color: #ffffff;
}
.cid-v3Thq00CIh .mbr-text {
  color: #ffffff;
}
.cid-v3Thq00CIh .mbr-description {
  color: #ffffff;
}
.cid-v3TjnqpYfK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TjnqpYfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TjnqpYfK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TjnqpYfK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TjnqpYfK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TjnqpYfK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TjnqpYfK .mbr-section-title {
  color: #ffffff;
}
.cid-v3TjnqpYfK .mbr-text {
  color: #ffffff;
}
.cid-v3TjnqpYfK .mbr-description {
  color: #ffffff;
}
.cid-v3Tk7RtD5y {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tk7RtD5y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tk7RtD5y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tk7RtD5y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tk7RtD5y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tk7RtD5y .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tk7RtD5y .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tk7RtD5y .mbr-text {
  color: #ffffff;
}
.cid-v3Tk7RtD5y .mbr-description {
  color: #ffffff;
}
.cid-v3Tkyeuwcm {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tkyeuwcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tkyeuwcm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tkyeuwcm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tkyeuwcm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tkyeuwcm .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tkyeuwcm .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tkyeuwcm .mbr-text {
  color: #ffffff;
}
.cid-v3Tkyeuwcm .mbr-description {
  color: #ffffff;
}
.cid-v3Tl9D88uA {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tl9D88uA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tl9D88uA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tl9D88uA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tl9D88uA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tl9D88uA .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tl9D88uA .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tl9D88uA .mbr-text {
  color: #ffffff;
}
.cid-v3Tl9D88uA .mbr-description {
  color: #ffffff;
}
.cid-v3Tlt48TvV {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tlt48TvV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tlt48TvV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tlt48TvV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tlt48TvV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tlt48TvV .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tlt48TvV .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tlt48TvV .mbr-text {
  color: #ffffff;
}
.cid-v3Tlt48TvV .mbr-description {
  color: #ffffff;
}
.cid-v3TlJ3Xht8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3TlJ3Xht8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3TlJ3Xht8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3TlJ3Xht8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3TlJ3Xht8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3TlJ3Xht8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3TlJ3Xht8 .mbr-section-title {
  color: #ffffff;
}
.cid-v3TlJ3Xht8 .mbr-text {
  color: #ffffff;
}
.cid-v3TlJ3Xht8 .mbr-description {
  color: #ffffff;
}
.cid-v3Tm26nZNm {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3Tm26nZNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Tm26nZNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3Tm26nZNm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3Tm26nZNm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Tm26nZNm .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3Tm26nZNm .mbr-section-title {
  color: #ffffff;
}
.cid-v3Tm26nZNm .mbr-text {
  color: #ffffff;
}
.cid-v3Tm26nZNm .mbr-description {
  color: #ffffff;
}
.cid-v4hnTdGXrS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hnTdGXrS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hnTdGXrS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hnTdGXrS .mbr-section-title {
  color: #ffffff;
}
.cid-v4hnTdGXrS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3SZhZqI3M {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZhZqI3M img,
.cid-v3SZhZqI3M .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZhZqI3M .item:focus,
.cid-v3SZhZqI3M span:focus {
  outline: none;
}
.cid-v3SZhZqI3M .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZhZqI3M .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZhZqI3M .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZhZqI3M .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZhZqI3M .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZhZqI3M .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZhZqI3M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZhZqI3M .mbr-section-title {
  color: #ffffff;
}
.cid-v3SZhZqI3M .mbr-text,
.cid-v3SZhZqI3M .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZhZqI3M .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZhZqI3M .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZhZqI3M .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3SZi0dRhP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi0dRhP img,
.cid-v3SZi0dRhP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi0dRhP .item:focus,
.cid-v3SZi0dRhP span:focus {
  outline: none;
}
.cid-v3SZi0dRhP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi0dRhP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi0dRhP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi0dRhP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi0dRhP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi0dRhP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi0dRhP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi0dRhP .mbr-section-title {
  color: #232323;
}
.cid-v3SZi0dRhP .mbr-text,
.cid-v3SZi0dRhP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi0dRhP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi0dRhP .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi0Wv7c {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi0Wv7c img,
.cid-v3SZi0Wv7c .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi0Wv7c .item:focus,
.cid-v3SZi0Wv7c span:focus {
  outline: none;
}
.cid-v3SZi0Wv7c .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi0Wv7c .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi0Wv7c .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi0Wv7c .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi0Wv7c .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi0Wv7c .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi0Wv7c .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi0Wv7c .mbr-section-title {
  color: #232323;
}
.cid-v3SZi0Wv7c .mbr-text,
.cid-v3SZi0Wv7c .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi0Wv7c .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi0Wv7c .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi1HXs1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi1HXs1 img,
.cid-v3SZi1HXs1 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi1HXs1 .item:focus,
.cid-v3SZi1HXs1 span:focus {
  outline: none;
}
.cid-v3SZi1HXs1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi1HXs1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi1HXs1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi1HXs1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi1HXs1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi1HXs1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi1HXs1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi1HXs1 .mbr-section-title {
  color: #232323;
}
.cid-v3SZi1HXs1 .mbr-text,
.cid-v3SZi1HXs1 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi1HXs1 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi1HXs1 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi2u66L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi2u66L img,
.cid-v3SZi2u66L .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi2u66L .item:focus,
.cid-v3SZi2u66L span:focus {
  outline: none;
}
.cid-v3SZi2u66L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi2u66L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi2u66L .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi2u66L .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi2u66L .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi2u66L .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi2u66L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi2u66L .mbr-section-title {
  color: #232323;
}
.cid-v3SZi2u66L .mbr-text,
.cid-v3SZi2u66L .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi2u66L .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi2u66L .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi3m1Ta {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi3m1Ta img,
.cid-v3SZi3m1Ta .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi3m1Ta .item:focus,
.cid-v3SZi3m1Ta span:focus {
  outline: none;
}
.cid-v3SZi3m1Ta .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi3m1Ta .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi3m1Ta .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi3m1Ta .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi3m1Ta .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi3m1Ta .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi3m1Ta .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi3m1Ta .mbr-section-title {
  color: #232323;
}
.cid-v3SZi3m1Ta .mbr-text,
.cid-v3SZi3m1Ta .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi3m1Ta .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi3m1Ta .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi4bOdk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi4bOdk img,
.cid-v3SZi4bOdk .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi4bOdk .item:focus,
.cid-v3SZi4bOdk span:focus {
  outline: none;
}
.cid-v3SZi4bOdk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi4bOdk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi4bOdk .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi4bOdk .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi4bOdk .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi4bOdk .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi4bOdk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi4bOdk .mbr-section-title {
  color: #232323;
}
.cid-v3SZi4bOdk .mbr-text,
.cid-v3SZi4bOdk .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi4bOdk .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi4bOdk .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi4TeXN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi4TeXN img,
.cid-v3SZi4TeXN .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi4TeXN .item:focus,
.cid-v3SZi4TeXN span:focus {
  outline: none;
}
.cid-v3SZi4TeXN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi4TeXN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi4TeXN .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi4TeXN .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi4TeXN .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi4TeXN .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi4TeXN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi4TeXN .mbr-section-title {
  color: #ffffff;
}
.cid-v3SZi4TeXN .mbr-text,
.cid-v3SZi4TeXN .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi4TeXN .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi4TeXN .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi4TeXN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3SZi5Kvo9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi5Kvo9 img,
.cid-v3SZi5Kvo9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3SZi5Kvo9 .item:focus,
.cid-v3SZi5Kvo9 span:focus {
  outline: none;
}
.cid-v3SZi5Kvo9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SZi5Kvo9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SZi5Kvo9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3SZi5Kvo9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi5Kvo9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3SZi5Kvo9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3SZi5Kvo9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SZi5Kvo9 .mbr-section-title {
  color: #232323;
}
.cid-v3SZi5Kvo9 .mbr-text,
.cid-v3SZi5Kvo9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi5Kvo9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3SZi5Kvo9 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3SZi6Eltc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3SZi6Eltc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZi6Eltc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZi6Eltc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3SZi6Eltc .mbr-section-title {
  color: #ffffff;
}
.cid-v3SZi7pybk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi7pybk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZi7pybk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZi7pybk .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3SZi7pybk .number {
  color: #ffffff;
}
.cid-v3SZi7pybk .period {
  display: block;
}
.cid-v3SZi7pybk .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3SZi7pybk .period {
    font-size: 0.8rem;
  }
}
.cid-v3SZi7pybk .btn {
  height: 100%;
  margin: 0;
}
.cid-v3SZi7pybk .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3SZi7pybk .mbr-section-title {
  color: #ffffff;
}
.cid-v3SZi7pybk .mbr-text {
  color: #ffffff;
}
.cid-v3SZi7pybk .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3SZi7pybk .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3SZi7pybk .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3SZi7pybk .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3SZi8jY4I {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3SZi8jY4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZi8jY4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZi8jY4I .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3SZi8jY4I .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3SZi8jY4I .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3SZi8jY4I .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3SZi8jY4I .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3SZi8jY4I .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3SZi8jY4I .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3SZi8jY4I .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3SZi8jY4I .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3SZi8jY4I [class^="socicon-"]:before,
.cid-v3SZi8jY4I [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3SZi8jY4I .mbr-section-title,
.cid-v3SZi8jY4I .mbr-social-likes {
  color: #ffffff;
}
.cid-v3SZi96nWT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3SZi96nWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZi96nWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZi96nWT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3SZi96nWT .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3SZi96nWT .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3SZi96nWT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3SZi96nWT .mbr-text {
  color: #ffffff;
}
.cid-v3SZi96nWT .card-title {
  color: #ffffff;
}
.cid-v3SZi96nWT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3SZi96nWT .mbr-section-title {
  color: #ffffff;
}
.cid-v3SZi96nWT .link {
  color: #4479d9;
}
.cid-v3SZi9ZEGd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3SZi9ZEGd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SZi9ZEGd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SZi9ZEGd .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3SZi9ZEGd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3SZi9ZEGd .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3SZi9ZEGd .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3SZi9ZEGd div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3SZi9ZEGd .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3ZA1DRtY2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3ZA1DRtY2 nav.navbar {
  position: fixed;
}
.cid-v3ZA1DRtY2 .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-v3ZA1DRtY2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3ZA1DRtY2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3ZA1DRtY2 .dropdown-item:hover,
.cid-v3ZA1DRtY2 .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3ZA1DRtY2 .dropdown-item:hover span {
  color: white;
}
.cid-v3ZA1DRtY2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3ZA1DRtY2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3ZA1DRtY2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3ZA1DRtY2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3ZA1DRtY2 .nav-link {
  position: relative;
}
.cid-v3ZA1DRtY2 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3ZA1DRtY2 .container {
    flex-wrap: wrap;
  }
}
.cid-v3ZA1DRtY2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3ZA1DRtY2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3ZA1DRtY2 .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3ZA1DRtY2 .dropdown-menu,
.cid-v3ZA1DRtY2 .navbar.opened {
  background: #000000 !important;
}
.cid-v3ZA1DRtY2 .nav-item:focus,
.cid-v3ZA1DRtY2 .nav-link:focus {
  outline: none;
}
.cid-v3ZA1DRtY2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3ZA1DRtY2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3ZA1DRtY2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3ZA1DRtY2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ZA1DRtY2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3ZA1DRtY2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3ZA1DRtY2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3ZA1DRtY2 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3ZA1DRtY2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3ZA1DRtY2 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3ZA1DRtY2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3ZA1DRtY2 .navbar.collapsed {
  justify-content: center;
}
.cid-v3ZA1DRtY2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3ZA1DRtY2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3ZA1DRtY2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3ZA1DRtY2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3ZA1DRtY2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3ZA1DRtY2 .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-v3ZA1DRtY2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3ZA1DRtY2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3ZA1DRtY2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3ZA1DRtY2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3ZA1DRtY2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3ZA1DRtY2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3ZA1DRtY2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3ZA1DRtY2 .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-v3ZA1DRtY2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3ZA1DRtY2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3ZA1DRtY2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3ZA1DRtY2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3ZA1DRtY2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3ZA1DRtY2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3ZA1DRtY2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3ZA1DRtY2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3ZA1DRtY2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3ZA1DRtY2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3ZA1DRtY2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3ZA1DRtY2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3ZA1DRtY2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ZA1DRtY2 .dropdown-item.active,
.cid-v3ZA1DRtY2 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3ZA1DRtY2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3ZA1DRtY2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3ZA1DRtY2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3ZA1DRtY2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3ZA1DRtY2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3ZA1DRtY2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3ZA1DRtY2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3ZA1DRtY2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3ZA1DRtY2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3ZA1DRtY2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3ZA1DRtY2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3ZA1DRtY2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ZA1DRtY2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ZA1DRtY2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3ZA1DRtY2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ZA1DRtY2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3ZA1DRtY2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3ZA1DRtY2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ZA1DRtY2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3ZA1DRtY2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3ZA1DRtY2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3ZA1DRtY2 .navbar {
    height: 70px;
  }
  .cid-v3ZA1DRtY2 .navbar.opened {
    height: auto;
  }
  .cid-v3ZA1DRtY2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3ZA1ERUSy {
  background-image: url("../../../assets/images/woodspatulabutteronplate-banner.webp");
}
.cid-v3ZA1ERUSy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1ERUSy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA1ERUSy .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZA1ERUSy .mbr-text,
.cid-v3ZA1ERUSy .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZA1ERUSy .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZA1FEDvm {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1FEDvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1FEDvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA1FEDvm .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1FEDvm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA1Gtcqp {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1Gtcqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1Gtcqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1Gtcqp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1Gtcqp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1Gtcqp .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1Gtcqp .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1Gtcqp .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1Gtcqp .mbr-description {
  color: #ffffff;
}
.cid-v3ZA1HfoU4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1HfoU4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1HfoU4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1HfoU4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1HfoU4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1HfoU4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1HfoU4 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1HfoU4 .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1HfoU4 .mbr-description {
  color: #ffffff;
}
.cid-v3ZA1I2aKK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1I2aKK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1I2aKK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1I2aKK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1I2aKK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1I2aKK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1I2aKK .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1I2aKK .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1I2aKK .mbr-description {
  color: #ffffff;
}
.cid-v3ZA1IOrWm {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1IOrWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1IOrWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1IOrWm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1IOrWm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1IOrWm .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1IOrWm .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1IOrWm .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1IOrWm .mbr-description {
  color: #ffffff;
}
.cid-v3ZA1JBhDL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1JBhDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1JBhDL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1JBhDL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1JBhDL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1JBhDL .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1JBhDL .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1JBhDL .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1JBhDL .mbr-description {
  color: #ffffff;
}
.cid-v3ZA1KshNp {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA1KshNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA1KshNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZA1KshNp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZA1KshNp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZA1KshNp .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZA1KshNp .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA1KshNp .mbr-text {
  color: #ffffff;
}
.cid-v3ZA1KshNp .mbr-description {
  color: #ffffff;
}
.cid-v4hnFv6sHq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hnFv6sHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hnFv6sHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hnFv6sHq .mbr-section-title {
  color: #ffffff;
}
.cid-v4hnFv6sHq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA234zKP {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA234zKP img,
.cid-v3ZA234zKP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA234zKP .item:focus,
.cid-v3ZA234zKP span:focus {
  outline: none;
}
.cid-v3ZA234zKP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA234zKP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA234zKP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA234zKP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA234zKP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA234zKP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA234zKP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA234zKP .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA234zKP .mbr-text,
.cid-v3ZA234zKP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA234zKP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA234zKP .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA234zKP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA24h5rP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA24h5rP img,
.cid-v3ZA24h5rP .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA24h5rP .item:focus,
.cid-v3ZA24h5rP span:focus {
  outline: none;
}
.cid-v3ZA24h5rP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA24h5rP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA24h5rP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA24h5rP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA24h5rP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA24h5rP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA24h5rP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA24h5rP .mbr-section-title {
  color: #232323;
}
.cid-v3ZA24h5rP .mbr-text,
.cid-v3ZA24h5rP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA24h5rP .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA24h5rP .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA25unEq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA25unEq img,
.cid-v3ZA25unEq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA25unEq .item:focus,
.cid-v3ZA25unEq span:focus {
  outline: none;
}
.cid-v3ZA25unEq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA25unEq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA25unEq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA25unEq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA25unEq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA25unEq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA25unEq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA25unEq .mbr-section-title {
  color: #232323;
}
.cid-v3ZA25unEq .mbr-text,
.cid-v3ZA25unEq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA25unEq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA25unEq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA26ID6j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA26ID6j img,
.cid-v3ZA26ID6j .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA26ID6j .item:focus,
.cid-v3ZA26ID6j span:focus {
  outline: none;
}
.cid-v3ZA26ID6j .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA26ID6j .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA26ID6j .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA26ID6j .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA26ID6j .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA26ID6j .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA26ID6j .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA26ID6j .mbr-section-title {
  color: #232323;
}
.cid-v3ZA26ID6j .mbr-text,
.cid-v3ZA26ID6j .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA26ID6j .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA26ID6j .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA285paK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA285paK img,
.cid-v3ZA285paK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA285paK .item:focus,
.cid-v3ZA285paK span:focus {
  outline: none;
}
.cid-v3ZA285paK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA285paK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA285paK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA285paK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA285paK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA285paK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA285paK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA285paK .mbr-section-title {
  color: #232323;
}
.cid-v3ZA285paK .mbr-text,
.cid-v3ZA285paK .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA285paK .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA285paK .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA29oKu0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA29oKu0 img,
.cid-v3ZA29oKu0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA29oKu0 .item:focus,
.cid-v3ZA29oKu0 span:focus {
  outline: none;
}
.cid-v3ZA29oKu0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA29oKu0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA29oKu0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA29oKu0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA29oKu0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA29oKu0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA29oKu0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA29oKu0 .mbr-section-title {
  color: #232323;
}
.cid-v3ZA29oKu0 .mbr-text,
.cid-v3ZA29oKu0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA29oKu0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA29oKu0 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA2aJQ8i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA2aJQ8i img,
.cid-v3ZA2aJQ8i .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA2aJQ8i .item:focus,
.cid-v3ZA2aJQ8i span:focus {
  outline: none;
}
.cid-v3ZA2aJQ8i .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA2aJQ8i .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA2aJQ8i .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA2aJQ8i .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA2aJQ8i .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA2aJQ8i .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA2aJQ8i .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA2aJQ8i .mbr-section-title {
  color: #232323;
}
.cid-v3ZA2aJQ8i .mbr-text,
.cid-v3ZA2aJQ8i .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2aJQ8i .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2aJQ8i .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA2c1NIj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA2c1NIj img,
.cid-v3ZA2c1NIj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA2c1NIj .item:focus,
.cid-v3ZA2c1NIj span:focus {
  outline: none;
}
.cid-v3ZA2c1NIj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA2c1NIj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA2c1NIj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA2c1NIj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA2c1NIj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA2c1NIj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA2c1NIj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA2c1NIj .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA2c1NIj .mbr-text,
.cid-v3ZA2c1NIj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2c1NIj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2c1NIj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA2c1NIj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA2dpgNu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA2dpgNu img,
.cid-v3ZA2dpgNu .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZA2dpgNu .item:focus,
.cid-v3ZA2dpgNu span:focus {
  outline: none;
}
.cid-v3ZA2dpgNu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZA2dpgNu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZA2dpgNu .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZA2dpgNu .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA2dpgNu .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZA2dpgNu .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZA2dpgNu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZA2dpgNu .mbr-section-title {
  color: #232323;
}
.cid-v3ZA2dpgNu .mbr-text,
.cid-v3ZA2dpgNu .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2dpgNu .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZA2dpgNu .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZA2eLMPi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3ZA2eLMPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA2eLMPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA2eLMPi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA2eLMPi .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA2g9pyi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA2g9pyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA2g9pyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA2g9pyi .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZA2g9pyi .number {
  color: #ffffff;
}
.cid-v3ZA2g9pyi .period {
  display: block;
}
.cid-v3ZA2g9pyi .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3ZA2g9pyi .period {
    font-size: 0.8rem;
  }
}
.cid-v3ZA2g9pyi .btn {
  height: 100%;
  margin: 0;
}
.cid-v3ZA2g9pyi .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3ZA2g9pyi .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA2g9pyi .mbr-text {
  color: #ffffff;
}
.cid-v3ZA2g9pyi .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3ZA2g9pyi .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3ZA2g9pyi .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3ZA2g9pyi .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3ZA2hCctE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3ZA2hCctE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA2hCctE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA2hCctE .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3ZA2hCctE .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3ZA2hCctE .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3ZA2hCctE .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3ZA2hCctE .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3ZA2hCctE .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3ZA2hCctE .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3ZA2hCctE .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3ZA2hCctE .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3ZA2hCctE [class^="socicon-"]:before,
.cid-v3ZA2hCctE [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3ZA2hCctE .mbr-section-title,
.cid-v3ZA2hCctE .mbr-social-likes {
  color: #ffffff;
}
.cid-v3ZA2j0R6b {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZA2j0R6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA2j0R6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA2j0R6b .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3ZA2j0R6b .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3ZA2j0R6b .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3ZA2j0R6b .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3ZA2j0R6b .mbr-text {
  color: #ffffff;
}
.cid-v3ZA2j0R6b .card-title {
  color: #ffffff;
}
.cid-v3ZA2j0R6b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZA2j0R6b .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZA2j0R6b .link {
  color: #4479d9;
}
.cid-v3ZA2kqYNQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3ZA2kqYNQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZA2kqYNQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZA2kqYNQ .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3ZA2kqYNQ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3ZA2kqYNQ .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3ZA2kqYNQ .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3ZA2kqYNQ div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3ZA2kqYNQ .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v3ZI5Gj4qE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3ZI5Gj4qE nav.navbar {
  position: fixed;
}
.cid-v3ZI5Gj4qE .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-v3ZI5Gj4qE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3ZI5Gj4qE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3ZI5Gj4qE .dropdown-item:hover,
.cid-v3ZI5Gj4qE .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v3ZI5Gj4qE .dropdown-item:hover span {
  color: white;
}
.cid-v3ZI5Gj4qE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3ZI5Gj4qE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3ZI5Gj4qE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3ZI5Gj4qE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3ZI5Gj4qE .nav-link {
  position: relative;
}
.cid-v3ZI5Gj4qE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3ZI5Gj4qE .container {
    flex-wrap: wrap;
  }
}
.cid-v3ZI5Gj4qE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v3ZI5Gj4qE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v3ZI5Gj4qE .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3ZI5Gj4qE .dropdown-menu,
.cid-v3ZI5Gj4qE .navbar.opened {
  background: #000000 !important;
}
.cid-v3ZI5Gj4qE .nav-item:focus,
.cid-v3ZI5Gj4qE .nav-link:focus {
  outline: none;
}
.cid-v3ZI5Gj4qE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3ZI5Gj4qE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3ZI5Gj4qE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3ZI5Gj4qE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3ZI5Gj4qE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3ZI5Gj4qE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3ZI5Gj4qE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v3ZI5Gj4qE .navbar.opened {
  transition: all 0.3s;
}
.cid-v3ZI5Gj4qE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3ZI5Gj4qE .navbar .navbar-logo img {
  width: auto;
}
.cid-v3ZI5Gj4qE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3ZI5Gj4qE .navbar.collapsed {
  justify-content: center;
}
.cid-v3ZI5Gj4qE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3ZI5Gj4qE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3ZI5Gj4qE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v3ZI5Gj4qE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3ZI5Gj4qE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3ZI5Gj4qE .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-v3ZI5Gj4qE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3ZI5Gj4qE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3ZI5Gj4qE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3ZI5Gj4qE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3ZI5Gj4qE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3ZI5Gj4qE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3ZI5Gj4qE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3ZI5Gj4qE .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-v3ZI5Gj4qE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3ZI5Gj4qE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3ZI5Gj4qE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3ZI5Gj4qE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3ZI5Gj4qE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3ZI5Gj4qE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3ZI5Gj4qE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3ZI5Gj4qE .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3ZI5Gj4qE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3ZI5Gj4qE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3ZI5Gj4qE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3ZI5Gj4qE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3ZI5Gj4qE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3ZI5Gj4qE .dropdown-item.active,
.cid-v3ZI5Gj4qE .dropdown-item:active {
  background-color: transparent;
}
.cid-v3ZI5Gj4qE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3ZI5Gj4qE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3ZI5Gj4qE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3ZI5Gj4qE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3ZI5Gj4qE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3ZI5Gj4qE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3ZI5Gj4qE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3ZI5Gj4qE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3ZI5Gj4qE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3ZI5Gj4qE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v3ZI5Gj4qE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3ZI5Gj4qE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ZI5Gj4qE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3ZI5Gj4qE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3ZI5Gj4qE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ZI5Gj4qE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3ZI5Gj4qE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3ZI5Gj4qE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3ZI5Gj4qE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3ZI5Gj4qE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3ZI5Gj4qE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3ZI5Gj4qE .navbar {
    height: 70px;
  }
  .cid-v3ZI5Gj4qE .navbar.opened {
    height: auto;
  }
  .cid-v3ZI5Gj4qE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3ZI5Hctnl {
  background-image: url("../../../assets/images/removingcheesefrompress-banner.webp");
}
.cid-v3ZI5Hctnl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5Hctnl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5Hctnl .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZI5Hctnl .mbr-text,
.cid-v3ZI5Hctnl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZI5Hctnl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZI5HRPeZ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5HRPeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5HRPeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5HRPeZ .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5HRPeZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZO8uk2Bq {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZO8uk2Bq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZO8uk2Bq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZO8uk2Bq .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZO8uk2Bq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5IsqCV {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5IsqCV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5IsqCV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5IsqCV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5IsqCV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5IsqCV .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5IsqCV .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5IsqCV .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5IsqCV .mbr-description {
  color: #ffffff;
}
.cid-v3ZI5J9r9n {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5J9r9n .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5J9r9n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5J9r9n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5J9r9n img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5J9r9n .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5J9r9n .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5J9r9n .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5J9r9n .mbr-description {
  color: #ffffff;
}
.cid-v3ZI5JMzBJ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5JMzBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5JMzBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5JMzBJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5JMzBJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5JMzBJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5JMzBJ .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5JMzBJ .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5JMzBJ .mbr-description {
  color: #ffffff;
}
.cid-v3ZI5KqYy9 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5KqYy9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5KqYy9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5KqYy9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5KqYy9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5KqYy9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5KqYy9 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5KqYy9 .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5KqYy9 .mbr-description {
  color: #ffffff;
}
.cid-v3ZI5L5VTl {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5L5VTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5L5VTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5L5VTl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5L5VTl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5L5VTl .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5L5VTl .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5L5VTl .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5L5VTl .mbr-description {
  color: #ffffff;
}
.cid-v3ZNQSknxh {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZNQSknxh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZNQSknxh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZNQSknxh .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZNQSknxh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5LKnwr {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5LKnwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5LKnwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZI5LKnwr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZI5LKnwr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZI5LKnwr .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZI5LKnwr .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5LKnwr .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5LKnwr .mbr-description {
  color: #ffffff;
}
.cid-v3ZPFhlinr {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZPFhlinr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZPFhlinr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZPFhlinr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZPFhlinr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZPFhlinr .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZPFhlinr .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZPFhlinr .mbr-text {
  color: #ffffff;
}
.cid-v3ZPFhlinr .mbr-description {
  color: #ffffff;
}
.cid-v3ZPG60kK4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZPG60kK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZPG60kK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZPG60kK4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZPG60kK4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZPG60kK4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZPG60kK4 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZPG60kK4 .mbr-text {
  color: #ffffff;
}
.cid-v3ZPG60kK4 .mbr-description {
  color: #ffffff;
}
.cid-v3ZPICcXTQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZPICcXTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZPICcXTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZPICcXTQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZPICcXTQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZPICcXTQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZPICcXTQ .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZPICcXTQ .mbr-text {
  color: #ffffff;
}
.cid-v3ZPICcXTQ .mbr-description {
  color: #ffffff;
}
.cid-v3ZPJqigqL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZPJqigqL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZPJqigqL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZPJqigqL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZPJqigqL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZPJqigqL .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZPJqigqL .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZPJqigqL .mbr-text {
  color: #ffffff;
}
.cid-v3ZPJqigqL .mbr-description {
  color: #ffffff;
}
.cid-v3ZS4ey7hr {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZS4ey7hr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZS4ey7hr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZS4ey7hr .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZS4ey7hr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZRJGrTid {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZRJGrTid .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZRJGrTid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZRJGrTid .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZRJGrTid img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZRJGrTid .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZRJGrTid .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZRJGrTid .mbr-text {
  color: #ffffff;
}
.cid-v3ZRJGrTid .mbr-description {
  color: #ffffff;
}
.cid-v3ZRKx5AKX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZRKx5AKX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZRKx5AKX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZRKx5AKX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZRKx5AKX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZRKx5AKX .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZRKx5AKX .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZRKx5AKX .mbr-text {
  color: #ffffff;
}
.cid-v3ZRKx5AKX .mbr-description {
  color: #ffffff;
}
.cid-v3ZRLsm2YF {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZRLsm2YF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZRLsm2YF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZRLsm2YF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZRLsm2YF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZRLsm2YF .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZRLsm2YF .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZRLsm2YF .mbr-text {
  color: #ffffff;
}
.cid-v3ZRLsm2YF .mbr-description {
  color: #ffffff;
}
.cid-v3ZRMgYUvH {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZRMgYUvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZRMgYUvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZRMgYUvH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZRMgYUvH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZRMgYUvH .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZRMgYUvH .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZRMgYUvH .mbr-text {
  color: #ffffff;
}
.cid-v3ZRMgYUvH .mbr-description {
  color: #ffffff;
}
.cid-v3ZUxkI5ok {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZUxkI5ok .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZUxkI5ok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZUxkI5ok .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZUxkI5ok img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZUxkI5ok .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZUxkI5ok .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZUxkI5ok .mbr-text {
  color: #ffffff;
}
.cid-v3ZUxkI5ok .mbr-description {
  color: #ffffff;
}
.cid-v3ZUy9HOlj {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZUy9HOlj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZUy9HOlj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZUy9HOlj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZUy9HOlj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZUy9HOlj .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZUy9HOlj .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZUy9HOlj .mbr-text {
  color: #ffffff;
}
.cid-v3ZUy9HOlj .mbr-description {
  color: #ffffff;
}
.cid-v3ZUyVxnF3 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZUyVxnF3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZUyVxnF3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZUyVxnF3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZUyVxnF3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZUyVxnF3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZUyVxnF3 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZUyVxnF3 .mbr-text {
  color: #ffffff;
}
.cid-v3ZUyVxnF3 .mbr-description {
  color: #ffffff;
}
.cid-v3ZUzMqBtV {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZUzMqBtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZUzMqBtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZUzMqBtV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZUzMqBtV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZUzMqBtV .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZUzMqBtV .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZUzMqBtV .mbr-text {
  color: #ffffff;
}
.cid-v3ZUzMqBtV .mbr-description {
  color: #ffffff;
}
.cid-v3ZXYyreFx {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZXYyreFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZXYyreFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZXYyreFx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZXYyreFx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZXYyreFx .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZXYyreFx .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZXYyreFx .mbr-text {
  color: #ffffff;
}
.cid-v3ZXYyreFx .mbr-description {
  color: #ffffff;
}
.cid-v3ZXZm2TCz {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZXZm2TCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZXZm2TCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZXZm2TCz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZXZm2TCz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZXZm2TCz .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZXZm2TCz .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZXZm2TCz .mbr-text {
  color: #ffffff;
}
.cid-v3ZXZm2TCz .mbr-description {
  color: #ffffff;
}
.cid-v3ZY0h5eHS {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZY0h5eHS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZY0h5eHS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZY0h5eHS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZY0h5eHS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZY0h5eHS .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZY0h5eHS .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZY0h5eHS .mbr-text {
  color: #ffffff;
}
.cid-v3ZY0h5eHS .mbr-description {
  color: #ffffff;
}
.cid-v3ZY186rsU {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZY186rsU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZY186rsU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZY186rsU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZY186rsU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZY186rsU .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZY186rsU .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZY186rsU .mbr-text {
  color: #ffffff;
}
.cid-v3ZY186rsU .mbr-description {
  color: #ffffff;
}
.cid-v3ZZuDwUQ6 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZZuDwUQ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZZuDwUQ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZZuDwUQ6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZZuDwUQ6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZZuDwUQ6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZZuDwUQ6 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZZuDwUQ6 .mbr-text {
  color: #ffffff;
}
.cid-v3ZZuDwUQ6 .mbr-description {
  color: #ffffff;
}
.cid-v3ZZvvJSi4 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZZvvJSi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZZvvJSi4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZZvvJSi4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZZvvJSi4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZZvvJSi4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZZvvJSi4 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZZvvJSi4 .mbr-text {
  color: #ffffff;
}
.cid-v3ZZvvJSi4 .mbr-description {
  color: #ffffff;
}
.cid-v3ZZwCQ244 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZZwCQ244 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZZwCQ244 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v3ZZwCQ244 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v3ZZwCQ244 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3ZZwCQ244 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v3ZZwCQ244 .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZZwCQ244 .mbr-text {
  color: #ffffff;
}
.cid-v3ZZwCQ244 .mbr-description {
  color: #ffffff;
}
.cid-v4hnvmgAne {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hnvmgAne .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hnvmgAne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hnvmgAne .mbr-section-title {
  color: #ffffff;
}
.cid-v4hnvmgAne .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5MvRbt {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5MvRbt img,
.cid-v3ZI5MvRbt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5MvRbt .item:focus,
.cid-v3ZI5MvRbt span:focus {
  outline: none;
}
.cid-v3ZI5MvRbt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5MvRbt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5MvRbt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5MvRbt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5MvRbt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5MvRbt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5MvRbt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5MvRbt .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5MvRbt .mbr-text,
.cid-v3ZI5MvRbt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5MvRbt .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5MvRbt .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5MvRbt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5NktfK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5NktfK img,
.cid-v3ZI5NktfK .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5NktfK .item:focus,
.cid-v3ZI5NktfK span:focus {
  outline: none;
}
.cid-v3ZI5NktfK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5NktfK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5NktfK .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5NktfK .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5NktfK .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5NktfK .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5NktfK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5NktfK .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5NktfK .mbr-text,
.cid-v3ZI5NktfK .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5NktfK .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5NktfK .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5Oae42 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5Oae42 img,
.cid-v3ZI5Oae42 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5Oae42 .item:focus,
.cid-v3ZI5Oae42 span:focus {
  outline: none;
}
.cid-v3ZI5Oae42 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5Oae42 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5Oae42 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5Oae42 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5Oae42 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5Oae42 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5Oae42 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5Oae42 .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5Oae42 .mbr-text,
.cid-v3ZI5Oae42 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5Oae42 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5Oae42 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5P3yh0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5P3yh0 img,
.cid-v3ZI5P3yh0 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5P3yh0 .item:focus,
.cid-v3ZI5P3yh0 span:focus {
  outline: none;
}
.cid-v3ZI5P3yh0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5P3yh0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5P3yh0 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5P3yh0 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5P3yh0 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5P3yh0 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5P3yh0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5P3yh0 .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5P3yh0 .mbr-text,
.cid-v3ZI5P3yh0 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5P3yh0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5P3yh0 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5Q3XFz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5Q3XFz img,
.cid-v3ZI5Q3XFz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5Q3XFz .item:focus,
.cid-v3ZI5Q3XFz span:focus {
  outline: none;
}
.cid-v3ZI5Q3XFz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5Q3XFz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5Q3XFz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5Q3XFz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5Q3XFz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5Q3XFz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5Q3XFz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5Q3XFz .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5Q3XFz .mbr-text,
.cid-v3ZI5Q3XFz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5Q3XFz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5Q3XFz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5R1vCx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5R1vCx img,
.cid-v3ZI5R1vCx .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5R1vCx .item:focus,
.cid-v3ZI5R1vCx span:focus {
  outline: none;
}
.cid-v3ZI5R1vCx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5R1vCx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5R1vCx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5R1vCx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5R1vCx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5R1vCx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5R1vCx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5R1vCx .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5R1vCx .mbr-text,
.cid-v3ZI5R1vCx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5R1vCx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5R1vCx .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5RZ7sb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5RZ7sb img,
.cid-v3ZI5RZ7sb .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5RZ7sb .item:focus,
.cid-v3ZI5RZ7sb span:focus {
  outline: none;
}
.cid-v3ZI5RZ7sb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5RZ7sb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5RZ7sb .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5RZ7sb .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5RZ7sb .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5RZ7sb .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5RZ7sb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5RZ7sb .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5RZ7sb .mbr-text,
.cid-v3ZI5RZ7sb .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5RZ7sb .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5RZ7sb .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5SWI1K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5SWI1K img,
.cid-v3ZI5SWI1K .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5SWI1K .item:focus,
.cid-v3ZI5SWI1K span:focus {
  outline: none;
}
.cid-v3ZI5SWI1K .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5SWI1K .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5SWI1K .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5SWI1K .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5SWI1K .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5SWI1K .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5SWI1K .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5SWI1K .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5SWI1K .mbr-text,
.cid-v3ZI5SWI1K .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5SWI1K .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5SWI1K .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5SWI1K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5TXfoQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5TXfoQ img,
.cid-v3ZI5TXfoQ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v3ZI5TXfoQ .item:focus,
.cid-v3ZI5TXfoQ span:focus {
  outline: none;
}
.cid-v3ZI5TXfoQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3ZI5TXfoQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3ZI5TXfoQ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v3ZI5TXfoQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5TXfoQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v3ZI5TXfoQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v3ZI5TXfoQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3ZI5TXfoQ .mbr-section-title {
  color: #232323;
}
.cid-v3ZI5TXfoQ .mbr-text,
.cid-v3ZI5TXfoQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5TXfoQ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3ZI5TXfoQ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v3ZI5UWb9T {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v3ZI5UWb9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5UWb9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5UWb9T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5UWb9T .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5VUvJp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5VUvJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5VUvJp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5VUvJp .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v3ZI5VUvJp .number {
  color: #ffffff;
}
.cid-v3ZI5VUvJp .period {
  display: block;
}
.cid-v3ZI5VUvJp .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v3ZI5VUvJp .period {
    font-size: 0.8rem;
  }
}
.cid-v3ZI5VUvJp .btn {
  height: 100%;
  margin: 0;
}
.cid-v3ZI5VUvJp .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v3ZI5VUvJp .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5VUvJp .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5VUvJp .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v3ZI5VUvJp .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v3ZI5VUvJp .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v3ZI5VUvJp .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v3ZI5WXgGh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v3ZI5WXgGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5WXgGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5WXgGh .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v3ZI5WXgGh .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v3ZI5WXgGh .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v3ZI5WXgGh .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v3ZI5WXgGh .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v3ZI5WXgGh .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v3ZI5WXgGh .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v3ZI5WXgGh .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v3ZI5WXgGh .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v3ZI5WXgGh [class^="socicon-"]:before,
.cid-v3ZI5WXgGh [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v3ZI5WXgGh .mbr-section-title,
.cid-v3ZI5WXgGh .mbr-social-likes {
  color: #ffffff;
}
.cid-v3ZI5XUgdW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3ZI5XUgdW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5XUgdW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5XUgdW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v3ZI5XUgdW .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v3ZI5XUgdW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v3ZI5XUgdW .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v3ZI5XUgdW .mbr-text {
  color: #ffffff;
}
.cid-v3ZI5XUgdW .card-title {
  color: #ffffff;
}
.cid-v3ZI5XUgdW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3ZI5XUgdW .mbr-section-title {
  color: #ffffff;
}
.cid-v3ZI5XUgdW .link {
  color: #4479d9;
}
.cid-v3ZI5YXb30 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3ZI5YXb30 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3ZI5YXb30 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3ZI5YXb30 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3ZI5YXb30 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3ZI5YXb30 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v3ZI5YXb30 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v3ZI5YXb30 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v3ZI5YXb30 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v49B8jjiIW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v49B8jjiIW nav.navbar {
  position: fixed;
}
.cid-v49B8jjiIW .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-v49B8jjiIW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v49B8jjiIW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v49B8jjiIW .dropdown-item:hover,
.cid-v49B8jjiIW .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v49B8jjiIW .dropdown-item:hover span {
  color: white;
}
.cid-v49B8jjiIW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v49B8jjiIW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v49B8jjiIW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v49B8jjiIW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v49B8jjiIW .nav-link {
  position: relative;
}
.cid-v49B8jjiIW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v49B8jjiIW .container {
    flex-wrap: wrap;
  }
}
.cid-v49B8jjiIW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v49B8jjiIW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v49B8jjiIW .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v49B8jjiIW .dropdown-menu,
.cid-v49B8jjiIW .navbar.opened {
  background: #000000 !important;
}
.cid-v49B8jjiIW .nav-item:focus,
.cid-v49B8jjiIW .nav-link:focus {
  outline: none;
}
.cid-v49B8jjiIW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v49B8jjiIW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v49B8jjiIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v49B8jjiIW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v49B8jjiIW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v49B8jjiIW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v49B8jjiIW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v49B8jjiIW .navbar.opened {
  transition: all 0.3s;
}
.cid-v49B8jjiIW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v49B8jjiIW .navbar .navbar-logo img {
  width: auto;
}
.cid-v49B8jjiIW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v49B8jjiIW .navbar.collapsed {
  justify-content: center;
}
.cid-v49B8jjiIW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v49B8jjiIW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v49B8jjiIW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v49B8jjiIW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v49B8jjiIW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v49B8jjiIW .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-v49B8jjiIW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v49B8jjiIW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v49B8jjiIW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v49B8jjiIW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v49B8jjiIW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v49B8jjiIW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v49B8jjiIW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v49B8jjiIW .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-v49B8jjiIW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v49B8jjiIW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v49B8jjiIW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v49B8jjiIW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v49B8jjiIW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v49B8jjiIW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v49B8jjiIW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v49B8jjiIW .navbar.navbar-short {
  min-height: 60px;
}
.cid-v49B8jjiIW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v49B8jjiIW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v49B8jjiIW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v49B8jjiIW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v49B8jjiIW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v49B8jjiIW .dropdown-item.active,
.cid-v49B8jjiIW .dropdown-item:active {
  background-color: transparent;
}
.cid-v49B8jjiIW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v49B8jjiIW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v49B8jjiIW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v49B8jjiIW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v49B8jjiIW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v49B8jjiIW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v49B8jjiIW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v49B8jjiIW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v49B8jjiIW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v49B8jjiIW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v49B8jjiIW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v49B8jjiIW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v49B8jjiIW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v49B8jjiIW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v49B8jjiIW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v49B8jjiIW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v49B8jjiIW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v49B8jjiIW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v49B8jjiIW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v49B8jjiIW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v49B8jjiIW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v49B8jjiIW .navbar {
    height: 70px;
  }
  .cid-v49B8jjiIW .navbar.opened {
    height: auto;
  }
  .cid-v49B8jjiIW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v49B8kk3i8 {
  background-image: url("../../../assets/images/lye-soap-banner.webp");
}
.cid-v49B8kk3i8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8kk3i8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8kk3i8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v49B8kk3i8 .mbr-text,
.cid-v49B8kk3i8 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v49B8kk3i8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v49B8l6Owx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8l6Owx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8l6Owx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8l6Owx .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8l6Owx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8lKly1 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8lKly1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8lKly1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8lKly1 .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8lKly1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8mvU5u {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8mvU5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8mvU5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8mvU5u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8mvU5u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8mvU5u .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8mvU5u .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8mvU5u .mbr-text {
  color: #ffffff;
}
.cid-v49B8mvU5u .mbr-description {
  color: #ffffff;
}
.cid-v49B8nbJGG {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8nbJGG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8nbJGG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8nbJGG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8nbJGG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8nbJGG .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8nbJGG .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8nbJGG .mbr-text {
  color: #ffffff;
}
.cid-v49B8nbJGG .mbr-description {
  color: #ffffff;
}
.cid-v49B8nRbQX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8nRbQX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8nRbQX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8nRbQX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8nRbQX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8nRbQX .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8nRbQX .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8nRbQX .mbr-text {
  color: #ffffff;
}
.cid-v49B8nRbQX .mbr-description {
  color: #ffffff;
}
.cid-v49B8ozw9p {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8ozw9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8ozw9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8ozw9p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8ozw9p img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8ozw9p .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8ozw9p .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8ozw9p .mbr-text {
  color: #ffffff;
}
.cid-v49B8ozw9p .mbr-description {
  color: #ffffff;
}
.cid-v4acStmKuN {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4acStmKuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4acStmKuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4acStmKuN .mbr-section-title {
  color: #ffffff;
}
.cid-v4acStmKuN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8phyjC {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8phyjC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8phyjC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8phyjC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8phyjC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8phyjC .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8phyjC .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8phyjC .mbr-text {
  color: #ffffff;
}
.cid-v49B8phyjC .mbr-description {
  color: #ffffff;
}
.cid-v4af3eKM8N {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4af3eKM8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4af3eKM8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4af3eKM8N .mbr-section-title {
  color: #ffffff;
}
.cid-v4af3eKM8N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8q4GTO {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8q4GTO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8q4GTO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8q4GTO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8q4GTO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8q4GTO .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8q4GTO .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8q4GTO .mbr-text {
  color: #ffffff;
}
.cid-v49B8q4GTO .mbr-description {
  color: #ffffff;
}
.cid-v49B8qMrQk {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8qMrQk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8qMrQk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49B8qMrQk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49B8qMrQk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49B8qMrQk .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49B8qMrQk .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8qMrQk .mbr-text {
  color: #ffffff;
}
.cid-v49B8qMrQk .mbr-description {
  color: #ffffff;
}
.cid-v4amR4KgHg {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4amR4KgHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4amR4KgHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4amR4KgHg .mbr-section-title {
  color: #ffffff;
}
.cid-v4amR4KgHg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4hn4lZk4K {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hn4lZk4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hn4lZk4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hn4lZk4K .mbr-section-title {
  color: #ffffff;
}
.cid-v4hn4lZk4K .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8sg5cG {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8sg5cG img,
.cid-v49B8sg5cG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8sg5cG .item:focus,
.cid-v49B8sg5cG span:focus {
  outline: none;
}
.cid-v49B8sg5cG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8sg5cG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8sg5cG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8sg5cG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8sg5cG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8sg5cG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8sg5cG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8sg5cG .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8sg5cG .mbr-text,
.cid-v49B8sg5cG .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8sg5cG .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8sg5cG .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8sg5cG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8tekoq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8tekoq img,
.cid-v49B8tekoq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8tekoq .item:focus,
.cid-v49B8tekoq span:focus {
  outline: none;
}
.cid-v49B8tekoq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8tekoq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8tekoq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8tekoq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8tekoq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8tekoq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8tekoq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8tekoq .mbr-section-title {
  color: #232323;
}
.cid-v49B8tekoq .mbr-text,
.cid-v49B8tekoq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8tekoq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8tekoq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8uaLWX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8uaLWX img,
.cid-v49B8uaLWX .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8uaLWX .item:focus,
.cid-v49B8uaLWX span:focus {
  outline: none;
}
.cid-v49B8uaLWX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8uaLWX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8uaLWX .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8uaLWX .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8uaLWX .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8uaLWX .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8uaLWX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8uaLWX .mbr-section-title {
  color: #232323;
}
.cid-v49B8uaLWX .mbr-text,
.cid-v49B8uaLWX .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8uaLWX .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8uaLWX .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8v7coj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8v7coj img,
.cid-v49B8v7coj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8v7coj .item:focus,
.cid-v49B8v7coj span:focus {
  outline: none;
}
.cid-v49B8v7coj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8v7coj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8v7coj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8v7coj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8v7coj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8v7coj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8v7coj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8v7coj .mbr-section-title {
  color: #232323;
}
.cid-v49B8v7coj .mbr-text,
.cid-v49B8v7coj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8v7coj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8v7coj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8wcd94 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8wcd94 img,
.cid-v49B8wcd94 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8wcd94 .item:focus,
.cid-v49B8wcd94 span:focus {
  outline: none;
}
.cid-v49B8wcd94 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8wcd94 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8wcd94 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8wcd94 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8wcd94 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8wcd94 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8wcd94 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8wcd94 .mbr-section-title {
  color: #232323;
}
.cid-v49B8wcd94 .mbr-text,
.cid-v49B8wcd94 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8wcd94 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8wcd94 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8xftZJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8xftZJ img,
.cid-v49B8xftZJ .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8xftZJ .item:focus,
.cid-v49B8xftZJ span:focus {
  outline: none;
}
.cid-v49B8xftZJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8xftZJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8xftZJ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8xftZJ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8xftZJ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8xftZJ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8xftZJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8xftZJ .mbr-section-title {
  color: #232323;
}
.cid-v49B8xftZJ .mbr-text,
.cid-v49B8xftZJ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8xftZJ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8xftZJ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8yi2eT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8yi2eT img,
.cid-v49B8yi2eT .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8yi2eT .item:focus,
.cid-v49B8yi2eT span:focus {
  outline: none;
}
.cid-v49B8yi2eT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8yi2eT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8yi2eT .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8yi2eT .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8yi2eT .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8yi2eT .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8yi2eT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8yi2eT .mbr-section-title {
  color: #232323;
}
.cid-v49B8yi2eT .mbr-text,
.cid-v49B8yi2eT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8yi2eT .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8yi2eT .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8zjKM6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8zjKM6 img,
.cid-v49B8zjKM6 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8zjKM6 .item:focus,
.cid-v49B8zjKM6 span:focus {
  outline: none;
}
.cid-v49B8zjKM6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8zjKM6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8zjKM6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8zjKM6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8zjKM6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8zjKM6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8zjKM6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8zjKM6 .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8zjKM6 .mbr-text,
.cid-v49B8zjKM6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8zjKM6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8zjKM6 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8zjKM6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8Aptkc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8Aptkc img,
.cid-v49B8Aptkc .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49B8Aptkc .item:focus,
.cid-v49B8Aptkc span:focus {
  outline: none;
}
.cid-v49B8Aptkc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49B8Aptkc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49B8Aptkc .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49B8Aptkc .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49B8Aptkc .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49B8Aptkc .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49B8Aptkc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49B8Aptkc .mbr-section-title {
  color: #232323;
}
.cid-v49B8Aptkc .mbr-text,
.cid-v49B8Aptkc .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8Aptkc .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49B8Aptkc .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49B8BtqBa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v49B8BtqBa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8BtqBa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8BtqBa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8BtqBa .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8CsWLY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8CsWLY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8CsWLY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8CsWLY .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v49B8CsWLY .number {
  color: #ffffff;
}
.cid-v49B8CsWLY .period {
  display: block;
}
.cid-v49B8CsWLY .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v49B8CsWLY .period {
    font-size: 0.8rem;
  }
}
.cid-v49B8CsWLY .btn {
  height: 100%;
  margin: 0;
}
.cid-v49B8CsWLY .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v49B8CsWLY .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8CsWLY .mbr-text {
  color: #ffffff;
}
.cid-v49B8CsWLY .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v49B8CsWLY .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v49B8CsWLY .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v49B8CsWLY .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v49B8DEYvX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v49B8DEYvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8DEYvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8DEYvX .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v49B8DEYvX .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v49B8DEYvX .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v49B8DEYvX .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v49B8DEYvX .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v49B8DEYvX .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v49B8DEYvX .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v49B8DEYvX .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v49B8DEYvX .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v49B8DEYvX [class^="socicon-"]:before,
.cid-v49B8DEYvX [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v49B8DEYvX .mbr-section-title,
.cid-v49B8DEYvX .mbr-social-likes {
  color: #ffffff;
}
.cid-v49B8EG2OT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49B8EG2OT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8EG2OT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8EG2OT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v49B8EG2OT .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v49B8EG2OT .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v49B8EG2OT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v49B8EG2OT .mbr-text {
  color: #ffffff;
}
.cid-v49B8EG2OT .card-title {
  color: #ffffff;
}
.cid-v49B8EG2OT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49B8EG2OT .mbr-section-title {
  color: #ffffff;
}
.cid-v49B8EG2OT .link {
  color: #4479d9;
}
.cid-v49B8FPQEW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v49B8FPQEW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49B8FPQEW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49B8FPQEW .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v49B8FPQEW .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v49B8FPQEW .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v49B8FPQEW .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v49B8FPQEW div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v49B8FPQEW .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v4fSAiL3mx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4fSAiL3mx nav.navbar {
  position: fixed;
}
.cid-v4fSAiL3mx .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-v4fSAiL3mx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4fSAiL3mx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4fSAiL3mx .dropdown-item:hover,
.cid-v4fSAiL3mx .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v4fSAiL3mx .dropdown-item:hover span {
  color: white;
}
.cid-v4fSAiL3mx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4fSAiL3mx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4fSAiL3mx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4fSAiL3mx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4fSAiL3mx .nav-link {
  position: relative;
}
.cid-v4fSAiL3mx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4fSAiL3mx .container {
    flex-wrap: wrap;
  }
}
.cid-v4fSAiL3mx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4fSAiL3mx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v4fSAiL3mx .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4fSAiL3mx .dropdown-menu,
.cid-v4fSAiL3mx .navbar.opened {
  background: #000000 !important;
}
.cid-v4fSAiL3mx .nav-item:focus,
.cid-v4fSAiL3mx .nav-link:focus {
  outline: none;
}
.cid-v4fSAiL3mx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4fSAiL3mx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4fSAiL3mx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4fSAiL3mx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4fSAiL3mx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4fSAiL3mx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4fSAiL3mx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v4fSAiL3mx .navbar.opened {
  transition: all 0.3s;
}
.cid-v4fSAiL3mx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4fSAiL3mx .navbar .navbar-logo img {
  width: auto;
}
.cid-v4fSAiL3mx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4fSAiL3mx .navbar.collapsed {
  justify-content: center;
}
.cid-v4fSAiL3mx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4fSAiL3mx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4fSAiL3mx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v4fSAiL3mx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4fSAiL3mx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4fSAiL3mx .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-v4fSAiL3mx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4fSAiL3mx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4fSAiL3mx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4fSAiL3mx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4fSAiL3mx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4fSAiL3mx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4fSAiL3mx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4fSAiL3mx .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-v4fSAiL3mx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4fSAiL3mx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4fSAiL3mx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4fSAiL3mx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4fSAiL3mx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4fSAiL3mx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v4fSAiL3mx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v4fSAiL3mx .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4fSAiL3mx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4fSAiL3mx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4fSAiL3mx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4fSAiL3mx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4fSAiL3mx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4fSAiL3mx .dropdown-item.active,
.cid-v4fSAiL3mx .dropdown-item:active {
  background-color: transparent;
}
.cid-v4fSAiL3mx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4fSAiL3mx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4fSAiL3mx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4fSAiL3mx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v4fSAiL3mx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4fSAiL3mx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4fSAiL3mx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4fSAiL3mx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4fSAiL3mx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4fSAiL3mx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v4fSAiL3mx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4fSAiL3mx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4fSAiL3mx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4fSAiL3mx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4fSAiL3mx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4fSAiL3mx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4fSAiL3mx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4fSAiL3mx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4fSAiL3mx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4fSAiL3mx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4fSAiL3mx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4fSAiL3mx .navbar {
    height: 70px;
  }
  .cid-v4fSAiL3mx .navbar.opened {
    height: auto;
  }
  .cid-v4fSAiL3mx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4fSAjNfcB {
  background-image: url("../../../assets/images/peanutbutterinjar-banner.webp");
}
.cid-v4fSAjNfcB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAjNfcB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAjNfcB .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v4fSAjNfcB .mbr-text,
.cid-v4fSAjNfcB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v4fSAjNfcB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v4fSAktTtC {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAktTtC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAktTtC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAktTtC .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAktTtC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSAlPImG {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAlPImG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAlPImG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSAlPImG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSAlPImG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSAlPImG .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSAlPImG .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAlPImG .mbr-text {
  color: #ffffff;
}
.cid-v4fSAlPImG .mbr-description {
  color: #ffffff;
}
.cid-v4fSAmuQ6r {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAmuQ6r .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAmuQ6r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSAmuQ6r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSAmuQ6r img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSAmuQ6r .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSAmuQ6r .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAmuQ6r .mbr-text {
  color: #ffffff;
}
.cid-v4fSAmuQ6r .mbr-description {
  color: #ffffff;
}
.cid-v4fSAnaOSm {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAnaOSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAnaOSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSAnaOSm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSAnaOSm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSAnaOSm .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSAnaOSm .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAnaOSm .mbr-text {
  color: #ffffff;
}
.cid-v4fSAnaOSm .mbr-description {
  color: #ffffff;
}
.cid-v4fSAnT1Ef {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAnT1Ef .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAnT1Ef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSAnT1Ef .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSAnT1Ef img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSAnT1Ef .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSAnT1Ef .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAnT1Ef .mbr-text {
  color: #ffffff;
}
.cid-v4fSAnT1Ef .mbr-description {
  color: #ffffff;
}
.cid-v4fSApmkT8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSApmkT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSApmkT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSApmkT8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSApmkT8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSApmkT8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSApmkT8 .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSApmkT8 .mbr-text {
  color: #ffffff;
}
.cid-v4fSApmkT8 .mbr-description {
  color: #ffffff;
}
.cid-v4fSAqPeaJ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAqPeaJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAqPeaJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4fSAqPeaJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4fSAqPeaJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4fSAqPeaJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4fSAqPeaJ .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAqPeaJ .mbr-text {
  color: #ffffff;
}
.cid-v4fSAqPeaJ .mbr-description {
  color: #ffffff;
}
.cid-v4hmUJkJlC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hmUJkJlC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hmUJkJlC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hmUJkJlC .mbr-section-title {
  color: #ffffff;
}
.cid-v4hmUJkJlC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSAtZMoj {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAtZMoj img,
.cid-v4fSAtZMoj .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAtZMoj .item:focus,
.cid-v4fSAtZMoj span:focus {
  outline: none;
}
.cid-v4fSAtZMoj .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAtZMoj .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAtZMoj .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAtZMoj .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAtZMoj .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAtZMoj .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAtZMoj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAtZMoj .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAtZMoj .mbr-text,
.cid-v4fSAtZMoj .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAtZMoj .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAtZMoj .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAtZMoj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSAuZ7wU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAuZ7wU img,
.cid-v4fSAuZ7wU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAuZ7wU .item:focus,
.cid-v4fSAuZ7wU span:focus {
  outline: none;
}
.cid-v4fSAuZ7wU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAuZ7wU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAuZ7wU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAuZ7wU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAuZ7wU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAuZ7wU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAuZ7wU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAuZ7wU .mbr-section-title {
  color: #232323;
}
.cid-v4fSAuZ7wU .mbr-text,
.cid-v4fSAuZ7wU .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAuZ7wU .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAuZ7wU .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAvYR6L {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAvYR6L img,
.cid-v4fSAvYR6L .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAvYR6L .item:focus,
.cid-v4fSAvYR6L span:focus {
  outline: none;
}
.cid-v4fSAvYR6L .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAvYR6L .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAvYR6L .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAvYR6L .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAvYR6L .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAvYR6L .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAvYR6L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAvYR6L .mbr-section-title {
  color: #232323;
}
.cid-v4fSAvYR6L .mbr-text,
.cid-v4fSAvYR6L .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAvYR6L .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAvYR6L .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAx2YUC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAx2YUC img,
.cid-v4fSAx2YUC .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAx2YUC .item:focus,
.cid-v4fSAx2YUC span:focus {
  outline: none;
}
.cid-v4fSAx2YUC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAx2YUC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAx2YUC .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAx2YUC .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAx2YUC .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAx2YUC .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAx2YUC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAx2YUC .mbr-section-title {
  color: #232323;
}
.cid-v4fSAx2YUC .mbr-text,
.cid-v4fSAx2YUC .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAx2YUC .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAx2YUC .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAy5eN9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAy5eN9 img,
.cid-v4fSAy5eN9 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAy5eN9 .item:focus,
.cid-v4fSAy5eN9 span:focus {
  outline: none;
}
.cid-v4fSAy5eN9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAy5eN9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAy5eN9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAy5eN9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAy5eN9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAy5eN9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAy5eN9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAy5eN9 .mbr-section-title {
  color: #232323;
}
.cid-v4fSAy5eN9 .mbr-text,
.cid-v4fSAy5eN9 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAy5eN9 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAy5eN9 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAzb8cD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAzb8cD img,
.cid-v4fSAzb8cD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAzb8cD .item:focus,
.cid-v4fSAzb8cD span:focus {
  outline: none;
}
.cid-v4fSAzb8cD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAzb8cD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAzb8cD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAzb8cD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAzb8cD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAzb8cD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAzb8cD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAzb8cD .mbr-section-title {
  color: #232323;
}
.cid-v4fSAzb8cD .mbr-text,
.cid-v4fSAzb8cD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAzb8cD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAzb8cD .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSAAikTq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAAikTq img,
.cid-v4fSAAikTq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSAAikTq .item:focus,
.cid-v4fSAAikTq span:focus {
  outline: none;
}
.cid-v4fSAAikTq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSAAikTq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSAAikTq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSAAikTq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAAikTq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSAAikTq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSAAikTq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSAAikTq .mbr-section-title {
  color: #232323;
}
.cid-v4fSAAikTq .mbr-text,
.cid-v4fSAAikTq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAAikTq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSAAikTq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSABnxLm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSABnxLm img,
.cid-v4fSABnxLm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSABnxLm .item:focus,
.cid-v4fSABnxLm span:focus {
  outline: none;
}
.cid-v4fSABnxLm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSABnxLm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSABnxLm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSABnxLm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSABnxLm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSABnxLm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSABnxLm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSABnxLm .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSABnxLm .mbr-text,
.cid-v4fSABnxLm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSABnxLm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSABnxLm .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSABnxLm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSACz7cY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSACz7cY img,
.cid-v4fSACz7cY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4fSACz7cY .item:focus,
.cid-v4fSACz7cY span:focus {
  outline: none;
}
.cid-v4fSACz7cY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4fSACz7cY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4fSACz7cY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4fSACz7cY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4fSACz7cY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4fSACz7cY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4fSACz7cY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4fSACz7cY .mbr-section-title {
  color: #232323;
}
.cid-v4fSACz7cY .mbr-text,
.cid-v4fSACz7cY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSACz7cY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4fSACz7cY .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4fSADJ5vA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4fSADJ5vA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSADJ5vA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSADJ5vA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSADJ5vA .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAENFZH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAENFZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAENFZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAENFZH .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v4fSAENFZH .number {
  color: #ffffff;
}
.cid-v4fSAENFZH .period {
  display: block;
}
.cid-v4fSAENFZH .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v4fSAENFZH .period {
    font-size: 0.8rem;
  }
}
.cid-v4fSAENFZH .btn {
  height: 100%;
  margin: 0;
}
.cid-v4fSAENFZH .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v4fSAENFZH .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAENFZH .mbr-text {
  color: #ffffff;
}
.cid-v4fSAENFZH .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v4fSAENFZH .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v4fSAENFZH .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v4fSAENFZH .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v4fSAG3abF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4fSAG3abF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAG3abF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAG3abF .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v4fSAG3abF .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v4fSAG3abF .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v4fSAG3abF .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v4fSAG3abF .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v4fSAG3abF .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v4fSAG3abF .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v4fSAG3abF .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v4fSAG3abF .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v4fSAG3abF [class^="socicon-"]:before,
.cid-v4fSAG3abF [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v4fSAG3abF .mbr-section-title,
.cid-v4fSAG3abF .mbr-social-likes {
  color: #ffffff;
}
.cid-v4fSAH9TZ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4fSAH9TZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAH9TZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAH9TZ8 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v4fSAH9TZ8 .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v4fSAH9TZ8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4fSAH9TZ8 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v4fSAH9TZ8 .mbr-text {
  color: #ffffff;
}
.cid-v4fSAH9TZ8 .card-title {
  color: #ffffff;
}
.cid-v4fSAH9TZ8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4fSAH9TZ8 .mbr-section-title {
  color: #ffffff;
}
.cid-v4fSAH9TZ8 .link {
  color: #4479d9;
}
.cid-v4fSAImHZn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v4fSAImHZn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4fSAImHZn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4fSAImHZn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v4fSAImHZn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v4fSAImHZn .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v4fSAImHZn .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v4fSAImHZn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v4fSAImHZn .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v4350MAVtT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4350MAVtT nav.navbar {
  position: fixed;
}
.cid-v4350MAVtT .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-v4350MAVtT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4350MAVtT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4350MAVtT .dropdown-item:hover,
.cid-v4350MAVtT .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v4350MAVtT .dropdown-item:hover span {
  color: white;
}
.cid-v4350MAVtT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4350MAVtT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4350MAVtT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4350MAVtT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4350MAVtT .nav-link {
  position: relative;
}
.cid-v4350MAVtT .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4350MAVtT .container {
    flex-wrap: wrap;
  }
}
.cid-v4350MAVtT .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4350MAVtT .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v4350MAVtT .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4350MAVtT .dropdown-menu,
.cid-v4350MAVtT .navbar.opened {
  background: #000000 !important;
}
.cid-v4350MAVtT .nav-item:focus,
.cid-v4350MAVtT .nav-link:focus {
  outline: none;
}
.cid-v4350MAVtT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4350MAVtT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4350MAVtT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4350MAVtT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4350MAVtT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4350MAVtT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4350MAVtT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v4350MAVtT .navbar.opened {
  transition: all 0.3s;
}
.cid-v4350MAVtT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4350MAVtT .navbar .navbar-logo img {
  width: auto;
}
.cid-v4350MAVtT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4350MAVtT .navbar.collapsed {
  justify-content: center;
}
.cid-v4350MAVtT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4350MAVtT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4350MAVtT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v4350MAVtT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4350MAVtT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4350MAVtT .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-v4350MAVtT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4350MAVtT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4350MAVtT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4350MAVtT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4350MAVtT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4350MAVtT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4350MAVtT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4350MAVtT .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-v4350MAVtT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4350MAVtT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4350MAVtT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4350MAVtT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4350MAVtT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4350MAVtT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v4350MAVtT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v4350MAVtT .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4350MAVtT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4350MAVtT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4350MAVtT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4350MAVtT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4350MAVtT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4350MAVtT .dropdown-item.active,
.cid-v4350MAVtT .dropdown-item:active {
  background-color: transparent;
}
.cid-v4350MAVtT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4350MAVtT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4350MAVtT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4350MAVtT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v4350MAVtT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4350MAVtT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4350MAVtT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4350MAVtT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4350MAVtT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4350MAVtT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v4350MAVtT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4350MAVtT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4350MAVtT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4350MAVtT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4350MAVtT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4350MAVtT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4350MAVtT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4350MAVtT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4350MAVtT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4350MAVtT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4350MAVtT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4350MAVtT .navbar {
    height: 70px;
  }
  .cid-v4350MAVtT .navbar.opened {
    height: auto;
  }
  .cid-v4350MAVtT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4350NCN5D {
  background-image: url("../../../assets/images/rootcellar.webp");
}
.cid-v4350NCN5D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350NCN5D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4350NCN5D .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v4350NCN5D .mbr-text,
.cid-v4350NCN5D .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v4350NCN5D .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v4350Ousnz {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350Ousnz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350Ousnz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4350Ousnz .mbr-section-title {
  color: #ffffff;
}
.cid-v4350Ousnz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4350PjFND {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350PjFND .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350PjFND .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4350PjFND .mbr-section-title {
  color: #ffffff;
}
.cid-v4350PjFND .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4350Q6FwH {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350Q6FwH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350Q6FwH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350Q6FwH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350Q6FwH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350Q6FwH .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350Q6FwH .mbr-section-title {
  color: #ffffff;
}
.cid-v4350Q6FwH .mbr-text {
  color: #ffffff;
}
.cid-v4350Q6FwH .mbr-description {
  color: #ffffff;
}
.cid-v4350QVLNr {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350QVLNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350QVLNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350QVLNr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350QVLNr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350QVLNr .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350QVLNr .mbr-section-title {
  color: #ffffff;
}
.cid-v4350QVLNr .mbr-text {
  color: #ffffff;
}
.cid-v4350QVLNr .mbr-description {
  color: #ffffff;
}
.cid-v4350RKmyI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350RKmyI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350RKmyI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350RKmyI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350RKmyI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350RKmyI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350RKmyI .mbr-section-title {
  color: #ffffff;
}
.cid-v4350RKmyI .mbr-text {
  color: #ffffff;
}
.cid-v4350RKmyI .mbr-description {
  color: #ffffff;
}
.cid-v4350SCkQd {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350SCkQd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350SCkQd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350SCkQd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350SCkQd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350SCkQd .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350SCkQd .mbr-section-title {
  color: #ffffff;
}
.cid-v4350SCkQd .mbr-text {
  color: #ffffff;
}
.cid-v4350SCkQd .mbr-description {
  color: #ffffff;
}
.cid-v43edVNm0J {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43edVNm0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43edVNm0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v43edVNm0J .mbr-section-title {
  color: #ffffff;
}
.cid-v43edVNm0J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4350TuwKN {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350TuwKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350TuwKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350TuwKN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350TuwKN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350TuwKN .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350TuwKN .mbr-section-title {
  color: #ffffff;
}
.cid-v4350TuwKN .mbr-text {
  color: #ffffff;
}
.cid-v4350TuwKN .mbr-description {
  color: #ffffff;
}
.cid-v4350VcnG8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350VcnG8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350VcnG8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350VcnG8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350VcnG8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350VcnG8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350VcnG8 .mbr-section-title {
  color: #ffffff;
}
.cid-v4350VcnG8 .mbr-text {
  color: #ffffff;
}
.cid-v4350VcnG8 .mbr-description {
  color: #ffffff;
}
.cid-v4350W4DVM {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350W4DVM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350W4DVM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350W4DVM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350W4DVM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350W4DVM .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350W4DVM .mbr-section-title {
  color: #ffffff;
}
.cid-v4350W4DVM .mbr-text {
  color: #ffffff;
}
.cid-v4350W4DVM .mbr-description {
  color: #ffffff;
}
.cid-v4350WZuig {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350WZuig .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350WZuig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350WZuig .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350WZuig img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350WZuig .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350WZuig .mbr-section-title {
  color: #ffffff;
}
.cid-v4350WZuig .mbr-text {
  color: #ffffff;
}
.cid-v4350WZuig .mbr-description {
  color: #ffffff;
}
.cid-v43ia1gHLM {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43ia1gHLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43ia1gHLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v43ia1gHLM .mbr-section-title {
  color: #ffffff;
}
.cid-v43ia1gHLM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4350XUNpx {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350XUNpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350XUNpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350XUNpx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350XUNpx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350XUNpx .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350XUNpx .mbr-section-title {
  color: #ffffff;
}
.cid-v4350XUNpx .mbr-text {
  color: #ffffff;
}
.cid-v4350XUNpx .mbr-description {
  color: #ffffff;
}
.cid-v4350YPM2s {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4350YPM2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4350YPM2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4350YPM2s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4350YPM2s img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4350YPM2s .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4350YPM2s .mbr-section-title {
  color: #ffffff;
}
.cid-v4350YPM2s .mbr-text {
  color: #ffffff;
}
.cid-v4350YPM2s .mbr-description {
  color: #ffffff;
}
.cid-v43510GB4P {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43510GB4P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43510GB4P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43510GB4P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43510GB4P img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43510GB4P .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43510GB4P .mbr-section-title {
  color: #ffffff;
}
.cid-v43510GB4P .mbr-text {
  color: #ffffff;
}
.cid-v43510GB4P .mbr-description {
  color: #ffffff;
}
.cid-v43511Hr8m {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43511Hr8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43511Hr8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43511Hr8m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43511Hr8m img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43511Hr8m .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43511Hr8m .mbr-section-title {
  color: #ffffff;
}
.cid-v43511Hr8m .mbr-text {
  color: #ffffff;
}
.cid-v43511Hr8m .mbr-description {
  color: #ffffff;
}
.cid-v43512Fu0Y {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43512Fu0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43512Fu0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43512Fu0Y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43512Fu0Y img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43512Fu0Y .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43512Fu0Y .mbr-section-title {
  color: #ffffff;
}
.cid-v43512Fu0Y .mbr-text {
  color: #ffffff;
}
.cid-v43512Fu0Y .mbr-description {
  color: #ffffff;
}
.cid-v43513Ct2x {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43513Ct2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43513Ct2x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43513Ct2x .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43513Ct2x img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43513Ct2x .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43513Ct2x .mbr-section-title {
  color: #ffffff;
}
.cid-v43513Ct2x .mbr-text {
  color: #ffffff;
}
.cid-v43513Ct2x .mbr-description {
  color: #ffffff;
}
.cid-v43514AdHL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43514AdHL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43514AdHL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43514AdHL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43514AdHL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43514AdHL .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43514AdHL .mbr-section-title {
  color: #ffffff;
}
.cid-v43514AdHL .mbr-text {
  color: #ffffff;
}
.cid-v43514AdHL .mbr-description {
  color: #ffffff;
}
.cid-v43515zqXs {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43515zqXs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43515zqXs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43515zqXs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43515zqXs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43515zqXs .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43515zqXs .mbr-section-title {
  color: #ffffff;
}
.cid-v43515zqXs .mbr-text {
  color: #ffffff;
}
.cid-v43515zqXs .mbr-description {
  color: #ffffff;
}
.cid-v43516B1T8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43516B1T8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43516B1T8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43516B1T8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43516B1T8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43516B1T8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43516B1T8 .mbr-section-title {
  color: #ffffff;
}
.cid-v43516B1T8 .mbr-text {
  color: #ffffff;
}
.cid-v43516B1T8 .mbr-description {
  color: #ffffff;
}
.cid-v43517BJTI {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43517BJTI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43517BJTI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43517BJTI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43517BJTI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43517BJTI .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43517BJTI .mbr-section-title {
  color: #ffffff;
}
.cid-v43517BJTI .mbr-text {
  color: #ffffff;
}
.cid-v43517BJTI .mbr-description {
  color: #ffffff;
}
.cid-v43518CxUc {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43518CxUc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43518CxUc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43518CxUc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43518CxUc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43518CxUc .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43518CxUc .mbr-section-title {
  color: #ffffff;
}
.cid-v43518CxUc .mbr-text {
  color: #ffffff;
}
.cid-v43518CxUc .mbr-description {
  color: #ffffff;
}
.cid-v43519Esv3 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43519Esv3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43519Esv3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43519Esv3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43519Esv3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43519Esv3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43519Esv3 .mbr-section-title {
  color: #ffffff;
}
.cid-v43519Esv3 .mbr-text {
  color: #ffffff;
}
.cid-v43519Esv3 .mbr-description {
  color: #ffffff;
}
.cid-v4351aJajh {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351aJajh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351aJajh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4351aJajh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4351aJajh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4351aJajh .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4351aJajh .mbr-section-title {
  color: #ffffff;
}
.cid-v4351aJajh .mbr-text {
  color: #ffffff;
}
.cid-v4351aJajh .mbr-description {
  color: #ffffff;
}
.cid-v4351bM3av {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351bM3av .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351bM3av .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4351bM3av .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4351bM3av img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4351bM3av .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4351bM3av .mbr-section-title {
  color: #ffffff;
}
.cid-v4351bM3av .mbr-text {
  color: #ffffff;
}
.cid-v4351bM3av .mbr-description {
  color: #ffffff;
}
.cid-v4351cPaIp {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351cPaIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351cPaIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4351cPaIp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4351cPaIp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4351cPaIp .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4351cPaIp .mbr-section-title {
  color: #ffffff;
}
.cid-v4351cPaIp .mbr-text {
  color: #ffffff;
}
.cid-v4351cPaIp .mbr-description {
  color: #ffffff;
}
.cid-v4351dTMWL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351dTMWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351dTMWL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4351dTMWL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4351dTMWL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4351dTMWL .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4351dTMWL .mbr-section-title {
  color: #ffffff;
}
.cid-v4351dTMWL .mbr-text {
  color: #ffffff;
}
.cid-v4351dTMWL .mbr-description {
  color: #ffffff;
}
.cid-v4351eYEuq {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351eYEuq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351eYEuq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4351eYEuq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4351eYEuq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4351eYEuq .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4351eYEuq .mbr-section-title {
  color: #ffffff;
}
.cid-v4351eYEuq .mbr-text {
  color: #ffffff;
}
.cid-v4351eYEuq .mbr-description {
  color: #ffffff;
}
.cid-v43rTev2kE {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43rTev2kE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43rTev2kE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43rTev2kE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43rTev2kE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43rTev2kE .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43rTev2kE .mbr-section-title {
  color: #ffffff;
}
.cid-v43rTev2kE .mbr-text {
  color: #ffffff;
}
.cid-v43rTev2kE .mbr-description {
  color: #ffffff;
}
.cid-v43slLO1Nk {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43slLO1Nk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43slLO1Nk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43slLO1Nk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43slLO1Nk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43slLO1Nk .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43slLO1Nk .mbr-section-title {
  color: #ffffff;
}
.cid-v43slLO1Nk .mbr-text {
  color: #ffffff;
}
.cid-v43slLO1Nk .mbr-description {
  color: #ffffff;
}
.cid-v43sJDxtE6 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43sJDxtE6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43sJDxtE6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43sJDxtE6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43sJDxtE6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43sJDxtE6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43sJDxtE6 .mbr-section-title {
  color: #ffffff;
}
.cid-v43sJDxtE6 .mbr-text {
  color: #ffffff;
}
.cid-v43sJDxtE6 .mbr-description {
  color: #ffffff;
}
.cid-v43wdzd16j {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v43wdzd16j .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43wdzd16j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v43wdzd16j .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v43wdzd16j img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v43wdzd16j .text-wrapper {
    padding: 2rem;
  }
}
.cid-v43wdzd16j .mbr-section-title {
  color: #ffffff;
}
.cid-v43wdzd16j .mbr-text {
  color: #ffffff;
}
.cid-v43wdzd16j .mbr-description {
  color: #ffffff;
}
.cid-v4hnnpgEgn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hnnpgEgn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hnnpgEgn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hnnpgEgn .mbr-section-title {
  color: #ffffff;
}
.cid-v4hnnpgEgn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4351g7cDY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351g7cDY img,
.cid-v4351g7cDY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351g7cDY .item:focus,
.cid-v4351g7cDY span:focus {
  outline: none;
}
.cid-v4351g7cDY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351g7cDY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351g7cDY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351g7cDY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351g7cDY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351g7cDY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351g7cDY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351g7cDY .mbr-section-title {
  color: #ffffff;
}
.cid-v4351g7cDY .mbr-text,
.cid-v4351g7cDY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351g7cDY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351g7cDY .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351g7cDY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4351hnUc6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351hnUc6 img,
.cid-v4351hnUc6 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351hnUc6 .item:focus,
.cid-v4351hnUc6 span:focus {
  outline: none;
}
.cid-v4351hnUc6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351hnUc6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351hnUc6 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351hnUc6 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351hnUc6 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351hnUc6 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351hnUc6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351hnUc6 .mbr-section-title {
  color: #232323;
}
.cid-v4351hnUc6 .mbr-text,
.cid-v4351hnUc6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351hnUc6 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351hnUc6 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351iHVOg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351iHVOg img,
.cid-v4351iHVOg .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351iHVOg .item:focus,
.cid-v4351iHVOg span:focus {
  outline: none;
}
.cid-v4351iHVOg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351iHVOg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351iHVOg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351iHVOg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351iHVOg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351iHVOg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351iHVOg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351iHVOg .mbr-section-title {
  color: #232323;
}
.cid-v4351iHVOg .mbr-text,
.cid-v4351iHVOg .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351iHVOg .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351iHVOg .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351k417v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351k417v img,
.cid-v4351k417v .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351k417v .item:focus,
.cid-v4351k417v span:focus {
  outline: none;
}
.cid-v4351k417v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351k417v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351k417v .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351k417v .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351k417v .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351k417v .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351k417v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351k417v .mbr-section-title {
  color: #232323;
}
.cid-v4351k417v .mbr-text,
.cid-v4351k417v .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351k417v .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351k417v .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351lp0fs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351lp0fs img,
.cid-v4351lp0fs .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351lp0fs .item:focus,
.cid-v4351lp0fs span:focus {
  outline: none;
}
.cid-v4351lp0fs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351lp0fs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351lp0fs .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351lp0fs .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351lp0fs .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351lp0fs .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351lp0fs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351lp0fs .mbr-section-title {
  color: #232323;
}
.cid-v4351lp0fs .mbr-text,
.cid-v4351lp0fs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351lp0fs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351lp0fs .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351mMU20 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351mMU20 img,
.cid-v4351mMU20 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351mMU20 .item:focus,
.cid-v4351mMU20 span:focus {
  outline: none;
}
.cid-v4351mMU20 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351mMU20 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351mMU20 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351mMU20 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351mMU20 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351mMU20 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351mMU20 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351mMU20 .mbr-section-title {
  color: #232323;
}
.cid-v4351mMU20 .mbr-text,
.cid-v4351mMU20 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351mMU20 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351mMU20 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351obhzH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351obhzH img,
.cid-v4351obhzH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351obhzH .item:focus,
.cid-v4351obhzH span:focus {
  outline: none;
}
.cid-v4351obhzH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351obhzH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351obhzH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351obhzH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351obhzH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351obhzH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351obhzH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351obhzH .mbr-section-title {
  color: #232323;
}
.cid-v4351obhzH .mbr-text,
.cid-v4351obhzH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351obhzH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351obhzH .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351pzr8T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351pzr8T img,
.cid-v4351pzr8T .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351pzr8T .item:focus,
.cid-v4351pzr8T span:focus {
  outline: none;
}
.cid-v4351pzr8T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351pzr8T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351pzr8T .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351pzr8T .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351pzr8T .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351pzr8T .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351pzr8T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351pzr8T .mbr-section-title {
  color: #ffffff;
}
.cid-v4351pzr8T .mbr-text,
.cid-v4351pzr8T .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351pzr8T .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351pzr8T .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351pzr8T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4351r1MLm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351r1MLm img,
.cid-v4351r1MLm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4351r1MLm .item:focus,
.cid-v4351r1MLm span:focus {
  outline: none;
}
.cid-v4351r1MLm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4351r1MLm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4351r1MLm .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4351r1MLm .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4351r1MLm .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4351r1MLm .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4351r1MLm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4351r1MLm .mbr-section-title {
  color: #232323;
}
.cid-v4351r1MLm .mbr-text,
.cid-v4351r1MLm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4351r1MLm .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4351r1MLm .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4351srcsb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4351srcsb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351srcsb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4351srcsb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4351srcsb .mbr-section-title {
  color: #ffffff;
}
.cid-v4351tPIPc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351tPIPc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351tPIPc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4351tPIPc .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v4351tPIPc .number {
  color: #ffffff;
}
.cid-v4351tPIPc .period {
  display: block;
}
.cid-v4351tPIPc .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v4351tPIPc .period {
    font-size: 0.8rem;
  }
}
.cid-v4351tPIPc .btn {
  height: 100%;
  margin: 0;
}
.cid-v4351tPIPc .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v4351tPIPc .mbr-section-title {
  color: #ffffff;
}
.cid-v4351tPIPc .mbr-text {
  color: #ffffff;
}
.cid-v4351tPIPc .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v4351tPIPc .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v4351tPIPc .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v4351tPIPc .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v4351vjM4W {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4351vjM4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351vjM4W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4351vjM4W .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v4351vjM4W .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v4351vjM4W .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v4351vjM4W .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v4351vjM4W .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v4351vjM4W .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v4351vjM4W .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v4351vjM4W .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v4351vjM4W .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v4351vjM4W [class^="socicon-"]:before,
.cid-v4351vjM4W [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v4351vjM4W .mbr-section-title,
.cid-v4351vjM4W .mbr-social-likes {
  color: #ffffff;
}
.cid-v4351wHzCI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4351wHzCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4351wHzCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4351wHzCI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v4351wHzCI .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v4351wHzCI .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4351wHzCI .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v4351wHzCI .mbr-text {
  color: #ffffff;
}
.cid-v4351wHzCI .card-title {
  color: #ffffff;
}
.cid-v4351wHzCI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4351wHzCI .mbr-section-title {
  color: #ffffff;
}
.cid-v4351wHzCI .link {
  color: #4479d9;
}
.cid-v43vQLJdlv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v43vQLJdlv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v43vQLJdlv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v43vQLJdlv .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v43vQLJdlv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v43vQLJdlv .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v43vQLJdlv .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v43vQLJdlv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v43vQLJdlv .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v49f14sAwP {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v49f14sAwP nav.navbar {
  position: fixed;
}
.cid-v49f14sAwP .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-v49f14sAwP .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v49f14sAwP .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v49f14sAwP .dropdown-item:hover,
.cid-v49f14sAwP .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v49f14sAwP .dropdown-item:hover span {
  color: white;
}
.cid-v49f14sAwP .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v49f14sAwP .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v49f14sAwP .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v49f14sAwP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v49f14sAwP .nav-link {
  position: relative;
}
.cid-v49f14sAwP .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v49f14sAwP .container {
    flex-wrap: wrap;
  }
}
.cid-v49f14sAwP .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v49f14sAwP .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v49f14sAwP .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v49f14sAwP .dropdown-menu,
.cid-v49f14sAwP .navbar.opened {
  background: #000000 !important;
}
.cid-v49f14sAwP .nav-item:focus,
.cid-v49f14sAwP .nav-link:focus {
  outline: none;
}
.cid-v49f14sAwP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v49f14sAwP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v49f14sAwP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v49f14sAwP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v49f14sAwP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v49f14sAwP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v49f14sAwP .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v49f14sAwP .navbar.opened {
  transition: all 0.3s;
}
.cid-v49f14sAwP .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v49f14sAwP .navbar .navbar-logo img {
  width: auto;
}
.cid-v49f14sAwP .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v49f14sAwP .navbar.collapsed {
  justify-content: center;
}
.cid-v49f14sAwP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v49f14sAwP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v49f14sAwP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v49f14sAwP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v49f14sAwP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v49f14sAwP .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-v49f14sAwP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v49f14sAwP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v49f14sAwP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v49f14sAwP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v49f14sAwP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v49f14sAwP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v49f14sAwP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v49f14sAwP .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-v49f14sAwP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v49f14sAwP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v49f14sAwP .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v49f14sAwP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v49f14sAwP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v49f14sAwP .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v49f14sAwP .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v49f14sAwP .navbar.navbar-short {
  min-height: 60px;
}
.cid-v49f14sAwP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v49f14sAwP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v49f14sAwP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v49f14sAwP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v49f14sAwP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v49f14sAwP .dropdown-item.active,
.cid-v49f14sAwP .dropdown-item:active {
  background-color: transparent;
}
.cid-v49f14sAwP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v49f14sAwP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v49f14sAwP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v49f14sAwP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v49f14sAwP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v49f14sAwP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v49f14sAwP ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v49f14sAwP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v49f14sAwP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v49f14sAwP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v49f14sAwP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v49f14sAwP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v49f14sAwP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v49f14sAwP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v49f14sAwP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v49f14sAwP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v49f14sAwP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v49f14sAwP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v49f14sAwP .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v49f14sAwP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v49f14sAwP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v49f14sAwP .navbar {
    height: 70px;
  }
  .cid-v49f14sAwP .navbar.opened {
    height: auto;
  }
  .cid-v49f14sAwP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v49f15EDvY {
  background-image: url("../../../assets/images/cleanhominy-banner.webp");
}
.cid-v49f15EDvY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f15EDvY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f15EDvY .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v49f15EDvY .mbr-text,
.cid-v49f15EDvY .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v49f15EDvY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v49f16A76c {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f16A76c .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f16A76c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f16A76c .mbr-section-title {
  color: #ffffff;
}
.cid-v49f16A76c .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f17sxKJ {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f17sxKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f17sxKJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f17sxKJ .mbr-section-title {
  color: #ffffff;
}
.cid-v49f17sxKJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f18h35X {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f18h35X .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f18h35X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f18h35X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f18h35X img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f18h35X .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f18h35X .mbr-section-title {
  color: #ffffff;
}
.cid-v49f18h35X .mbr-text {
  color: #ffffff;
}
.cid-v49f18h35X .mbr-description {
  color: #ffffff;
}
.cid-v49f19agwK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f19agwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f19agwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f19agwK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f19agwK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f19agwK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f19agwK .mbr-section-title {
  color: #ffffff;
}
.cid-v49f19agwK .mbr-text {
  color: #ffffff;
}
.cid-v49f19agwK .mbr-description {
  color: #ffffff;
}
.cid-v49f1a2SlL {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1a2SlL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1a2SlL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f1a2SlL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f1a2SlL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f1a2SlL .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f1a2SlL .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1a2SlL .mbr-text {
  color: #ffffff;
}
.cid-v49f1a2SlL .mbr-description {
  color: #ffffff;
}
.cid-v49f1aY8zw {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1aY8zw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1aY8zw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f1aY8zw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f1aY8zw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f1aY8zw .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f1aY8zw .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1aY8zw .mbr-text {
  color: #ffffff;
}
.cid-v49f1aY8zw .mbr-description {
  color: #ffffff;
}
.cid-v49f1cNMua {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1cNMua .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1cNMua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f1cNMua .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f1cNMua img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f1cNMua .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f1cNMua .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1cNMua .mbr-text {
  color: #ffffff;
}
.cid-v49f1cNMua .mbr-description {
  color: #ffffff;
}
.cid-v49f1dIxgq {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1dIxgq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1dIxgq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f1dIxgq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f1dIxgq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f1dIxgq .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f1dIxgq .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1dIxgq .mbr-text {
  color: #ffffff;
}
.cid-v49f1dIxgq .mbr-description {
  color: #ffffff;
}
.cid-v49f1eGEQQ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1eGEQQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1eGEQQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v49f1eGEQQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v49f1eGEQQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v49f1eGEQQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-v49f1eGEQQ .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1eGEQQ .mbr-text {
  color: #ffffff;
}
.cid-v49f1eGEQQ .mbr-description {
  color: #ffffff;
}
.cid-v4hndgJrDS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4hndgJrDS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4hndgJrDS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4hndgJrDS .mbr-section-title {
  color: #ffffff;
}
.cid-v4hndgJrDS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f1FQWpp {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1FQWpp img,
.cid-v49f1FQWpp .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1FQWpp .item:focus,
.cid-v49f1FQWpp span:focus {
  outline: none;
}
.cid-v49f1FQWpp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1FQWpp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1FQWpp .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1FQWpp .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1FQWpp .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1FQWpp .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1FQWpp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1FQWpp .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1FQWpp .mbr-text,
.cid-v49f1FQWpp .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1FQWpp .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1FQWpp .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1FQWpp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f1HeSLt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1HeSLt img,
.cid-v49f1HeSLt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1HeSLt .item:focus,
.cid-v49f1HeSLt span:focus {
  outline: none;
}
.cid-v49f1HeSLt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1HeSLt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1HeSLt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1HeSLt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1HeSLt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1HeSLt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1HeSLt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1HeSLt .mbr-section-title {
  color: #232323;
}
.cid-v49f1HeSLt .mbr-text,
.cid-v49f1HeSLt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1HeSLt .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1HeSLt .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1IGglh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1IGglh img,
.cid-v49f1IGglh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1IGglh .item:focus,
.cid-v49f1IGglh span:focus {
  outline: none;
}
.cid-v49f1IGglh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1IGglh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1IGglh .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1IGglh .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1IGglh .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1IGglh .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1IGglh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1IGglh .mbr-section-title {
  color: #232323;
}
.cid-v49f1IGglh .mbr-text,
.cid-v49f1IGglh .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1IGglh .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1IGglh .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1K8eQy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1K8eQy img,
.cid-v49f1K8eQy .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1K8eQy .item:focus,
.cid-v49f1K8eQy span:focus {
  outline: none;
}
.cid-v49f1K8eQy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1K8eQy .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1K8eQy .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1K8eQy .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1K8eQy .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1K8eQy .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1K8eQy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1K8eQy .mbr-section-title {
  color: #232323;
}
.cid-v49f1K8eQy .mbr-text,
.cid-v49f1K8eQy .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1K8eQy .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1K8eQy .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1LAiQA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1LAiQA img,
.cid-v49f1LAiQA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1LAiQA .item:focus,
.cid-v49f1LAiQA span:focus {
  outline: none;
}
.cid-v49f1LAiQA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1LAiQA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1LAiQA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1LAiQA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1LAiQA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1LAiQA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1LAiQA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1LAiQA .mbr-section-title {
  color: #232323;
}
.cid-v49f1LAiQA .mbr-text,
.cid-v49f1LAiQA .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1LAiQA .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1LAiQA .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1N86C8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1N86C8 img,
.cid-v49f1N86C8 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1N86C8 .item:focus,
.cid-v49f1N86C8 span:focus {
  outline: none;
}
.cid-v49f1N86C8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1N86C8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1N86C8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1N86C8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1N86C8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1N86C8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1N86C8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1N86C8 .mbr-section-title {
  color: #232323;
}
.cid-v49f1N86C8 .mbr-text,
.cid-v49f1N86C8 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1N86C8 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1N86C8 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1OFjvz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1OFjvz img,
.cid-v49f1OFjvz .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1OFjvz .item:focus,
.cid-v49f1OFjvz span:focus {
  outline: none;
}
.cid-v49f1OFjvz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1OFjvz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1OFjvz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1OFjvz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1OFjvz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1OFjvz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1OFjvz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1OFjvz .mbr-section-title {
  color: #232323;
}
.cid-v49f1OFjvz .mbr-text,
.cid-v49f1OFjvz .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1OFjvz .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1OFjvz .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1Q6pT7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1Q6pT7 img,
.cid-v49f1Q6pT7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1Q6pT7 .item:focus,
.cid-v49f1Q6pT7 span:focus {
  outline: none;
}
.cid-v49f1Q6pT7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1Q6pT7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1Q6pT7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1Q6pT7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1Q6pT7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1Q6pT7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1Q6pT7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1Q6pT7 .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1Q6pT7 .mbr-text,
.cid-v49f1Q6pT7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1Q6pT7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1Q6pT7 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1Q6pT7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f1RGxrR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1RGxrR img,
.cid-v49f1RGxrR .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v49f1RGxrR .item:focus,
.cid-v49f1RGxrR span:focus {
  outline: none;
}
.cid-v49f1RGxrR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49f1RGxrR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49f1RGxrR .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v49f1RGxrR .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49f1RGxrR .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v49f1RGxrR .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v49f1RGxrR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49f1RGxrR .mbr-section-title {
  color: #232323;
}
.cid-v49f1RGxrR .mbr-text,
.cid-v49f1RGxrR .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1RGxrR .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v49f1RGxrR .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v49f1ThxuG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v49f1ThxuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1ThxuG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f1ThxuG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f1ThxuG .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1UJqQ8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1UJqQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1UJqQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f1UJqQ8 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v49f1UJqQ8 .number {
  color: #ffffff;
}
.cid-v49f1UJqQ8 .period {
  display: block;
}
.cid-v49f1UJqQ8 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v49f1UJqQ8 .period {
    font-size: 0.8rem;
  }
}
.cid-v49f1UJqQ8 .btn {
  height: 100%;
  margin: 0;
}
.cid-v49f1UJqQ8 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v49f1UJqQ8 .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1UJqQ8 .mbr-text {
  color: #ffffff;
}
.cid-v49f1UJqQ8 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v49f1UJqQ8 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v49f1UJqQ8 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v49f1UJqQ8 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v49f1WlzRS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v49f1WlzRS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1WlzRS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f1WlzRS .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v49f1WlzRS .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v49f1WlzRS .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v49f1WlzRS .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v49f1WlzRS .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v49f1WlzRS .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v49f1WlzRS .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v49f1WlzRS .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v49f1WlzRS .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v49f1WlzRS [class^="socicon-"]:before,
.cid-v49f1WlzRS [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v49f1WlzRS .mbr-section-title,
.cid-v49f1WlzRS .mbr-social-likes {
  color: #ffffff;
}
.cid-v49f1XSTHt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v49f1XSTHt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1XSTHt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f1XSTHt .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v49f1XSTHt .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v49f1XSTHt .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v49f1XSTHt .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v49f1XSTHt .mbr-text {
  color: #ffffff;
}
.cid-v49f1XSTHt .card-title {
  color: #ffffff;
}
.cid-v49f1XSTHt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v49f1XSTHt .mbr-section-title {
  color: #ffffff;
}
.cid-v49f1XSTHt .link {
  color: #4479d9;
}
.cid-v49f1Zvifn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v49f1Zvifn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v49f1Zvifn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v49f1Zvifn .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v49f1Zvifn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v49f1Zvifn .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v49f1Zvifn .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v49f1Zvifn div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v49f1Zvifn .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v4h6TcHgcI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4h6TcHgcI nav.navbar {
  position: fixed;
}
.cid-v4h6TcHgcI .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-v4h6TcHgcI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4h6TcHgcI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4h6TcHgcI .dropdown-item:hover,
.cid-v4h6TcHgcI .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v4h6TcHgcI .dropdown-item:hover span {
  color: white;
}
.cid-v4h6TcHgcI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4h6TcHgcI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4h6TcHgcI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4h6TcHgcI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4h6TcHgcI .nav-link {
  position: relative;
}
.cid-v4h6TcHgcI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4h6TcHgcI .container {
    flex-wrap: wrap;
  }
}
.cid-v4h6TcHgcI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v4h6TcHgcI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v4h6TcHgcI .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4h6TcHgcI .dropdown-menu,
.cid-v4h6TcHgcI .navbar.opened {
  background: #000000 !important;
}
.cid-v4h6TcHgcI .nav-item:focus,
.cid-v4h6TcHgcI .nav-link:focus {
  outline: none;
}
.cid-v4h6TcHgcI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4h6TcHgcI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4h6TcHgcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4h6TcHgcI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4h6TcHgcI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4h6TcHgcI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4h6TcHgcI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v4h6TcHgcI .navbar.opened {
  transition: all 0.3s;
}
.cid-v4h6TcHgcI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4h6TcHgcI .navbar .navbar-logo img {
  width: auto;
}
.cid-v4h6TcHgcI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4h6TcHgcI .navbar.collapsed {
  justify-content: center;
}
.cid-v4h6TcHgcI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4h6TcHgcI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4h6TcHgcI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v4h6TcHgcI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4h6TcHgcI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4h6TcHgcI .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-v4h6TcHgcI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4h6TcHgcI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4h6TcHgcI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4h6TcHgcI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4h6TcHgcI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4h6TcHgcI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4h6TcHgcI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4h6TcHgcI .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-v4h6TcHgcI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4h6TcHgcI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4h6TcHgcI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4h6TcHgcI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4h6TcHgcI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4h6TcHgcI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v4h6TcHgcI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v4h6TcHgcI .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4h6TcHgcI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4h6TcHgcI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4h6TcHgcI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4h6TcHgcI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4h6TcHgcI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4h6TcHgcI .dropdown-item.active,
.cid-v4h6TcHgcI .dropdown-item:active {
  background-color: transparent;
}
.cid-v4h6TcHgcI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4h6TcHgcI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4h6TcHgcI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4h6TcHgcI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v4h6TcHgcI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4h6TcHgcI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4h6TcHgcI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4h6TcHgcI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4h6TcHgcI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4h6TcHgcI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v4h6TcHgcI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4h6TcHgcI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4h6TcHgcI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4h6TcHgcI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4h6TcHgcI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4h6TcHgcI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4h6TcHgcI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4h6TcHgcI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4h6TcHgcI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4h6TcHgcI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4h6TcHgcI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4h6TcHgcI .navbar {
    height: 70px;
  }
  .cid-v4h6TcHgcI .navbar.opened {
    height: auto;
  }
  .cid-v4h6TcHgcI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4h6TdFmQR {
  background-image: url("../../../assets/images/vinegaringlassdispenser-banner.webp");
}
.cid-v4h6TdFmQR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TdFmQR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TdFmQR .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v4h6TdFmQR .mbr-text,
.cid-v4h6TdFmQR .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v4h6TdFmQR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v4h6TejoQ5 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TejoQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TejoQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TejoQ5 .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TejoQ5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6TeUpUB {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TeUpUB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TeUpUB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4h6TeUpUB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4h6TeUpUB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4h6TeUpUB .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4h6TeUpUB .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TeUpUB .mbr-text {
  color: #ffffff;
}
.cid-v4h6TeUpUB .mbr-description {
  color: #ffffff;
}
.cid-v4h6TfvbsK {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TfvbsK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TfvbsK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4h6TfvbsK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4h6TfvbsK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4h6TfvbsK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4h6TfvbsK .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TfvbsK .mbr-text {
  color: #ffffff;
}
.cid-v4h6TfvbsK .mbr-description {
  color: #ffffff;
}
.cid-v4h6Tgaomc {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6Tgaomc .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6Tgaomc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4h6Tgaomc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4h6Tgaomc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4h6Tgaomc .text-wrapper {
    padding: 2rem;
  }
}
.cid-v4h6Tgaomc .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6Tgaomc .mbr-text {
  color: #ffffff;
}
.cid-v4h6Tgaomc .mbr-description {
  color: #ffffff;
}
.cid-v4h6TiDdtr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v4h6TiDdtr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TiDdtr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TiDdtr .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TiDdtr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6Tjhl9N {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6Tjhl9N img,
.cid-v4h6Tjhl9N .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6Tjhl9N .item:focus,
.cid-v4h6Tjhl9N span:focus {
  outline: none;
}
.cid-v4h6Tjhl9N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6Tjhl9N .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6Tjhl9N .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6Tjhl9N .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6Tjhl9N .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6Tjhl9N .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6Tjhl9N .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6Tjhl9N .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6Tjhl9N .mbr-text,
.cid-v4h6Tjhl9N .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tjhl9N .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tjhl9N .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6Tjhl9N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6Tka4Ot {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6Tka4Ot img,
.cid-v4h6Tka4Ot .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6Tka4Ot .item:focus,
.cid-v4h6Tka4Ot span:focus {
  outline: none;
}
.cid-v4h6Tka4Ot .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6Tka4Ot .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6Tka4Ot .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6Tka4Ot .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6Tka4Ot .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6Tka4Ot .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6Tka4Ot .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6Tka4Ot .mbr-section-title {
  color: #232323;
}
.cid-v4h6Tka4Ot .mbr-text,
.cid-v4h6Tka4Ot .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tka4Ot .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tka4Ot .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6Tl0TSq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6Tl0TSq img,
.cid-v4h6Tl0TSq .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6Tl0TSq .item:focus,
.cid-v4h6Tl0TSq span:focus {
  outline: none;
}
.cid-v4h6Tl0TSq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6Tl0TSq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6Tl0TSq .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6Tl0TSq .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6Tl0TSq .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6Tl0TSq .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6Tl0TSq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6Tl0TSq .mbr-section-title {
  color: #232323;
}
.cid-v4h6Tl0TSq .mbr-text,
.cid-v4h6Tl0TSq .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tl0TSq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6Tl0TSq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TlSIrO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TlSIrO img,
.cid-v4h6TlSIrO .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6TlSIrO .item:focus,
.cid-v4h6TlSIrO span:focus {
  outline: none;
}
.cid-v4h6TlSIrO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6TlSIrO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6TlSIrO .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6TlSIrO .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TlSIrO .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6TlSIrO .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6TlSIrO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6TlSIrO .mbr-section-title {
  color: #232323;
}
.cid-v4h6TlSIrO .mbr-text,
.cid-v4h6TlSIrO .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TlSIrO .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TlSIrO .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TmN0Ug {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TmN0Ug img,
.cid-v4h6TmN0Ug .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6TmN0Ug .item:focus,
.cid-v4h6TmN0Ug span:focus {
  outline: none;
}
.cid-v4h6TmN0Ug .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6TmN0Ug .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6TmN0Ug .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6TmN0Ug .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TmN0Ug .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6TmN0Ug .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6TmN0Ug .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6TmN0Ug .mbr-section-title {
  color: #232323;
}
.cid-v4h6TmN0Ug .mbr-text,
.cid-v4h6TmN0Ug .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TmN0Ug .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TmN0Ug .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TnOS8B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TnOS8B img,
.cid-v4h6TnOS8B .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6TnOS8B .item:focus,
.cid-v4h6TnOS8B span:focus {
  outline: none;
}
.cid-v4h6TnOS8B .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6TnOS8B .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6TnOS8B .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6TnOS8B .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TnOS8B .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6TnOS8B .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6TnOS8B .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6TnOS8B .mbr-section-title {
  color: #232323;
}
.cid-v4h6TnOS8B .mbr-text,
.cid-v4h6TnOS8B .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TnOS8B .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TnOS8B .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6ToN1CE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6ToN1CE img,
.cid-v4h6ToN1CE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6ToN1CE .item:focus,
.cid-v4h6ToN1CE span:focus {
  outline: none;
}
.cid-v4h6ToN1CE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6ToN1CE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6ToN1CE .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6ToN1CE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6ToN1CE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6ToN1CE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6ToN1CE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6ToN1CE .mbr-section-title {
  color: #232323;
}
.cid-v4h6ToN1CE .mbr-text,
.cid-v4h6ToN1CE .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6ToN1CE .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6ToN1CE .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TpHmYS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TpHmYS img,
.cid-v4h6TpHmYS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6TpHmYS .item:focus,
.cid-v4h6TpHmYS span:focus {
  outline: none;
}
.cid-v4h6TpHmYS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6TpHmYS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6TpHmYS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6TpHmYS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TpHmYS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6TpHmYS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6TpHmYS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6TpHmYS .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TpHmYS .mbr-text,
.cid-v4h6TpHmYS .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TpHmYS .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TpHmYS .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TpHmYS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6TqMejW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TqMejW img,
.cid-v4h6TqMejW .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v4h6TqMejW .item:focus,
.cid-v4h6TqMejW span:focus {
  outline: none;
}
.cid-v4h6TqMejW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4h6TqMejW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4h6TqMejW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v4h6TqMejW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TqMejW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v4h6TqMejW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v4h6TqMejW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4h6TqMejW .mbr-section-title {
  color: #232323;
}
.cid-v4h6TqMejW .mbr-text,
.cid-v4h6TqMejW .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TqMejW .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v4h6TqMejW .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-v4h6TrKkdM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4h6TrKkdM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TrKkdM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TrKkdM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6TrKkdM .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TsFvjG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TsFvjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TsFvjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TsFvjG .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v4h6TsFvjG .number {
  color: #ffffff;
}
.cid-v4h6TsFvjG .period {
  display: block;
}
.cid-v4h6TsFvjG .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v4h6TsFvjG .period {
    font-size: 0.8rem;
  }
}
.cid-v4h6TsFvjG .btn {
  height: 100%;
  margin: 0;
}
.cid-v4h6TsFvjG .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v4h6TsFvjG .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TsFvjG .mbr-text {
  color: #ffffff;
}
.cid-v4h6TsFvjG .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v4h6TsFvjG .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v4h6TsFvjG .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v4h6TsFvjG .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v4h6TtKSfY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v4h6TtKSfY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TtKSfY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TtKSfY .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v4h6TtKSfY .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v4h6TtKSfY .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v4h6TtKSfY .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v4h6TtKSfY .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v4h6TtKSfY .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v4h6TtKSfY .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v4h6TtKSfY .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v4h6TtKSfY .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v4h6TtKSfY [class^="socicon-"]:before,
.cid-v4h6TtKSfY [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v4h6TtKSfY .mbr-section-title,
.cid-v4h6TtKSfY .mbr-social-likes {
  color: #ffffff;
}
.cid-v4h6TuGgtA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v4h6TuGgtA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TuGgtA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TuGgtA .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v4h6TuGgtA .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v4h6TuGgtA .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v4h6TuGgtA .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v4h6TuGgtA .mbr-text {
  color: #ffffff;
}
.cid-v4h6TuGgtA .card-title {
  color: #ffffff;
}
.cid-v4h6TuGgtA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4h6TuGgtA .mbr-section-title {
  color: #ffffff;
}
.cid-v4h6TuGgtA .link {
  color: #4479d9;
}
.cid-v4h6TvMyM9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v4h6TvMyM9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4h6TvMyM9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4h6TvMyM9 .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v4h6TvMyM9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v4h6TvMyM9 .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v4h6TvMyM9 .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v4h6TvMyM9 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v4h6TvMyM9 .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v50vD6bdCQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v50vD6bdCQ nav.navbar {
  position: fixed;
}
.cid-v50vD6bdCQ .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-v50vD6bdCQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v50vD6bdCQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v50vD6bdCQ .dropdown-item:hover,
.cid-v50vD6bdCQ .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v50vD6bdCQ .dropdown-item:hover span {
  color: white;
}
.cid-v50vD6bdCQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v50vD6bdCQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v50vD6bdCQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v50vD6bdCQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v50vD6bdCQ .nav-link {
  position: relative;
}
.cid-v50vD6bdCQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v50vD6bdCQ .container {
    flex-wrap: wrap;
  }
}
.cid-v50vD6bdCQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v50vD6bdCQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v50vD6bdCQ .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v50vD6bdCQ .dropdown-menu,
.cid-v50vD6bdCQ .navbar.opened {
  background: #000000 !important;
}
.cid-v50vD6bdCQ .nav-item:focus,
.cid-v50vD6bdCQ .nav-link:focus {
  outline: none;
}
.cid-v50vD6bdCQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v50vD6bdCQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v50vD6bdCQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v50vD6bdCQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v50vD6bdCQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v50vD6bdCQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v50vD6bdCQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v50vD6bdCQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v50vD6bdCQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v50vD6bdCQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v50vD6bdCQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v50vD6bdCQ .navbar.collapsed {
  justify-content: center;
}
.cid-v50vD6bdCQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v50vD6bdCQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v50vD6bdCQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v50vD6bdCQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v50vD6bdCQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v50vD6bdCQ .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-v50vD6bdCQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v50vD6bdCQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v50vD6bdCQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v50vD6bdCQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v50vD6bdCQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v50vD6bdCQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v50vD6bdCQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v50vD6bdCQ .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-v50vD6bdCQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v50vD6bdCQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v50vD6bdCQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v50vD6bdCQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v50vD6bdCQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v50vD6bdCQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v50vD6bdCQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v50vD6bdCQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v50vD6bdCQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v50vD6bdCQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v50vD6bdCQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v50vD6bdCQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v50vD6bdCQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v50vD6bdCQ .dropdown-item.active,
.cid-v50vD6bdCQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v50vD6bdCQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v50vD6bdCQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v50vD6bdCQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v50vD6bdCQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v50vD6bdCQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v50vD6bdCQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v50vD6bdCQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v50vD6bdCQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v50vD6bdCQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v50vD6bdCQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v50vD6bdCQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v50vD6bdCQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v50vD6bdCQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v50vD6bdCQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v50vD6bdCQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v50vD6bdCQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v50vD6bdCQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v50vD6bdCQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v50vD6bdCQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v50vD6bdCQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v50vD6bdCQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v50vD6bdCQ .navbar {
    height: 70px;
  }
  .cid-v50vD6bdCQ .navbar.opened {
    height: auto;
  }
  .cid-v50vD6bdCQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v50vD6ZNkf {
  background-image: url("../../../assets/images/oaxacangreencorn-banner.webp");
}
.cid-v50vD6ZNkf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vD6ZNkf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vD6ZNkf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v50vD6ZNkf .mbr-text,
.cid-v50vD6ZNkf .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-v50vD6ZNkf .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v50xPNTLwD {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v50xPNTLwD img,
.cid-v50xPNTLwD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v50xPNTLwD .item:focus,
.cid-v50xPNTLwD span:focus {
  outline: none;
}
.cid-v50xPNTLwD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50xPNTLwD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50xPNTLwD .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-v50xPNTLwD .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50xPNTLwD .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-v50xPNTLwD .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-v50xPNTLwD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50xPNTLwD .mbr-section-title {
  color: #ffffff;
}
.cid-v50xPNTLwD .mbr-text,
.cid-v50xPNTLwD .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-v50xPNTLwD .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v50xPNTLwD .item-subtitle {
  text-align: left;
}
.cid-v50xPNTLwD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50vD81hV8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50vD81hV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vD81hV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vD81hV8 .mbr-section-title {
  color: #ffffff;
}
.cid-v50vD81hV8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50vD8waiS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v50vD8waiS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vD8waiS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vD8waiS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50vD8waiS .mbr-section-title {
  color: #ffffff;
}
.cid-v50vD92S7z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50vD92S7z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vD92S7z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vD92S7z .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v50vD92S7z .number {
  color: #ffffff;
}
.cid-v50vD92S7z .period {
  display: block;
}
.cid-v50vD92S7z .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v50vD92S7z .period {
    font-size: 0.8rem;
  }
}
.cid-v50vD92S7z .btn {
  height: 100%;
  margin: 0;
}
.cid-v50vD92S7z .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v50vD92S7z .mbr-section-title {
  color: #ffffff;
}
.cid-v50vD92S7z .mbr-text {
  color: #ffffff;
}
.cid-v50vD92S7z .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v50vD92S7z .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v50vD92S7z .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v50vD92S7z .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v50vD9HXsd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v50vD9HXsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vD9HXsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vD9HXsd .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v50vD9HXsd .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v50vD9HXsd .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v50vD9HXsd .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v50vD9HXsd .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v50vD9HXsd .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v50vD9HXsd .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v50vD9HXsd .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v50vD9HXsd .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v50vD9HXsd [class^="socicon-"]:before,
.cid-v50vD9HXsd [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v50vD9HXsd .mbr-section-title,
.cid-v50vD9HXsd .mbr-social-likes {
  color: #ffffff;
}
.cid-v50vDagkrx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v50vDagkrx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vDagkrx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vDagkrx .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v50vDagkrx .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v50vDagkrx .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v50vDagkrx .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v50vDagkrx .mbr-text {
  color: #ffffff;
}
.cid-v50vDagkrx .card-title {
  color: #ffffff;
}
.cid-v50vDagkrx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v50vDagkrx .mbr-section-title {
  color: #ffffff;
}
.cid-v50vDagkrx .link {
  color: #4479d9;
}
.cid-v50vDaT2Ii {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v50vDaT2Ii .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50vDaT2Ii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50vDaT2Ii .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v50vDaT2Ii .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v50vDaT2Ii .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v50vDaT2Ii .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v50vDaT2Ii div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v50vDaT2Ii .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-v9O3o9NY8s {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v9O3o9NY8s nav.navbar {
  position: fixed;
}
.cid-v9O3o9NY8s .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-v9O3o9NY8s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v9O3o9NY8s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v9O3o9NY8s .dropdown-item:hover,
.cid-v9O3o9NY8s .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-v9O3o9NY8s .dropdown-item:hover span {
  color: white;
}
.cid-v9O3o9NY8s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v9O3o9NY8s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v9O3o9NY8s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v9O3o9NY8s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v9O3o9NY8s .nav-link {
  position: relative;
}
.cid-v9O3o9NY8s .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v9O3o9NY8s .container {
    flex-wrap: wrap;
  }
}
.cid-v9O3o9NY8s .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v9O3o9NY8s .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v9O3o9NY8s .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9O3o9NY8s .dropdown-menu,
.cid-v9O3o9NY8s .navbar.opened {
  background: #000000 !important;
}
.cid-v9O3o9NY8s .nav-item:focus,
.cid-v9O3o9NY8s .nav-link:focus {
  outline: none;
}
.cid-v9O3o9NY8s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9O3o9NY8s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9O3o9NY8s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9O3o9NY8s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9O3o9NY8s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9O3o9NY8s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9O3o9NY8s .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-v9O3o9NY8s .navbar.opened {
  transition: all 0.3s;
}
.cid-v9O3o9NY8s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9O3o9NY8s .navbar .navbar-logo img {
  width: auto;
}
.cid-v9O3o9NY8s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9O3o9NY8s .navbar.collapsed {
  justify-content: center;
}
.cid-v9O3o9NY8s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9O3o9NY8s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9O3o9NY8s .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v9O3o9NY8s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9O3o9NY8s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9O3o9NY8s .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-v9O3o9NY8s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9O3o9NY8s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9O3o9NY8s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v9O3o9NY8s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9O3o9NY8s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9O3o9NY8s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9O3o9NY8s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9O3o9NY8s .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-v9O3o9NY8s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v9O3o9NY8s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9O3o9NY8s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9O3o9NY8s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v9O3o9NY8s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9O3o9NY8s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v9O3o9NY8s .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v9O3o9NY8s .navbar.navbar-short {
  min-height: 60px;
}
.cid-v9O3o9NY8s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v9O3o9NY8s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v9O3o9NY8s .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9O3o9NY8s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9O3o9NY8s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9O3o9NY8s .dropdown-item.active,
.cid-v9O3o9NY8s .dropdown-item:active {
  background-color: transparent;
}
.cid-v9O3o9NY8s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9O3o9NY8s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9O3o9NY8s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9O3o9NY8s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v9O3o9NY8s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9O3o9NY8s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9O3o9NY8s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9O3o9NY8s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v9O3o9NY8s button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9O3o9NY8s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v9O3o9NY8s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9O3o9NY8s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9O3o9NY8s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9O3o9NY8s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9O3o9NY8s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9O3o9NY8s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9O3o9NY8s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9O3o9NY8s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9O3o9NY8s .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v9O3o9NY8s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9O3o9NY8s .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9O3o9NY8s .navbar {
    height: 70px;
  }
  .cid-v9O3o9NY8s .navbar.opened {
    height: auto;
  }
  .cid-v9O3o9NY8s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9Oc1BopT2 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
}
.cid-v9Oc1BopT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Oc1BopT2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Oc1BopT2 .mbr-section-title {
  color: #ffffff;
}
.cid-v9Oc1BopT2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3obBfDo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3obBfDo img,
.cid-v9O3obBfDo .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v9O3obBfDo .item:focus,
.cid-v9O3obBfDo span:focus {
  outline: none;
}
.cid-v9O3obBfDo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9O3obBfDo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9O3obBfDo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9O3obBfDo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9O3obBfDo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9O3obBfDo .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3obBfDo .mbr-text,
.cid-v9O3obBfDo .mbr-section-btn {
  text-align: left;
}
.cid-v9O3obBfDo .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v9O3obBfDo .item-subtitle {
  text-align: center;
}
.cid-v9O3obBfDo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3ockMU5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3ockMU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3ockMU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3ockMU5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3ockMU5 .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3ocVXpS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3ocVXpS img,
.cid-v9O3ocVXpS .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v9O3ocVXpS .item:focus,
.cid-v9O3ocVXpS span:focus {
  outline: none;
}
.cid-v9O3ocVXpS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9O3ocVXpS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9O3ocVXpS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9O3ocVXpS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9O3ocVXpS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9O3ocVXpS .mbr-section-title {
  color: #232323;
}
.cid-v9O3ocVXpS .mbr-text,
.cid-v9O3ocVXpS .mbr-section-btn {
  text-align: left;
}
.cid-v9O3ocVXpS .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v9O3ocVXpS .item-subtitle {
  text-align: center;
}
.cid-v9O3odEWWf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3odEWWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3odEWWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3odEWWf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3odEWWf .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3oeeiKm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3oeeiKm img,
.cid-v9O3oeeiKm .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v9O3oeeiKm .item:focus,
.cid-v9O3oeeiKm span:focus {
  outline: none;
}
.cid-v9O3oeeiKm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9O3oeeiKm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9O3oeeiKm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9O3oeeiKm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9O3oeeiKm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9O3oeeiKm .mbr-section-title {
  color: #232323;
}
.cid-v9O3oeeiKm .mbr-text,
.cid-v9O3oeeiKm .mbr-section-btn {
  text-align: left;
}
.cid-v9O3oeeiKm .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v9O3oeeiKm .item-subtitle {
  text-align: center;
}
.cid-v9O3of094V {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3of094V .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3of094V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3of094V .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3ofDk00 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3ofDk00 img,
.cid-v9O3ofDk00 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v9O3ofDk00 .item:focus,
.cid-v9O3ofDk00 span:focus {
  outline: none;
}
.cid-v9O3ofDk00 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9O3ofDk00 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9O3ofDk00 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9O3ofDk00 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9O3ofDk00 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9O3ofDk00 .mbr-section-title {
  color: #232323;
}
.cid-v9O3ofDk00 .mbr-text,
.cid-v9O3ofDk00 .mbr-section-btn {
  text-align: left;
}
.cid-v9O3ofDk00 .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v9O3ofDk00 .item-subtitle {
  text-align: center;
}
.cid-v9O3ogytxn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3ogytxn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3ogytxn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3ogytxn .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3ohdcoE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3ohdcoE img,
.cid-v9O3ohdcoE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-v9O3ohdcoE .item:focus,
.cid-v9O3ohdcoE span:focus {
  outline: none;
}
.cid-v9O3ohdcoE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9O3ohdcoE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9O3ohdcoE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9O3ohdcoE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9O3ohdcoE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9O3ohdcoE .mbr-section-title {
  color: #232323;
}
.cid-v9O3ohdcoE .mbr-text,
.cid-v9O3ohdcoE .mbr-section-btn {
  text-align: left;
}
.cid-v9O3ohdcoE .item-title {
  text-align: center;
  color: #4479d9;
}
.cid-v9O3ohdcoE .item-subtitle {
  text-align: center;
}
.cid-v9O3ohVGDG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v9O3ohVGDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3ohVGDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3ohVGDG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3ohVGDG .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3oiCBVC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3oiCBVC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3oiCBVC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3oiCBVC .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-v9O3oiCBVC .number {
  color: #ffffff;
}
.cid-v9O3oiCBVC .period {
  display: block;
}
.cid-v9O3oiCBVC .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-v9O3oiCBVC .period {
    font-size: 0.8rem;
  }
}
.cid-v9O3oiCBVC .btn {
  height: 100%;
  margin: 0;
}
.cid-v9O3oiCBVC .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-v9O3oiCBVC .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3oiCBVC .mbr-text {
  color: #ffffff;
}
.cid-v9O3oiCBVC .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-v9O3oiCBVC .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-v9O3oiCBVC .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-v9O3oiCBVC .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-v9O3ojpG9C {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-v9O3ojpG9C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3ojpG9C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3ojpG9C .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-v9O3ojpG9C .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-v9O3ojpG9C .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-v9O3ojpG9C .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-v9O3ojpG9C .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-v9O3ojpG9C .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-v9O3ojpG9C .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-v9O3ojpG9C .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-v9O3ojpG9C .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-v9O3ojpG9C [class^="socicon-"]:before,
.cid-v9O3ojpG9C [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-v9O3ojpG9C .mbr-section-title,
.cid-v9O3ojpG9C .mbr-social-likes {
  color: #ffffff;
}
.cid-v9O3okdwmp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v9O3okdwmp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3okdwmp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3okdwmp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-v9O3okdwmp .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-v9O3okdwmp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v9O3okdwmp .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-v9O3okdwmp .mbr-text {
  color: #ffffff;
}
.cid-v9O3okdwmp .card-title {
  color: #ffffff;
}
.cid-v9O3okdwmp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9O3okdwmp .mbr-section-title {
  color: #ffffff;
}
.cid-v9O3okdwmp .link {
  color: #4479d9;
}
.cid-v9O3ol4V2J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v9O3ol4V2J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9O3ol4V2J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9O3ol4V2J .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v9O3ol4V2J .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v9O3ol4V2J .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-v9O3ol4V2J .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-v9O3ol4V2J div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-v9O3ol4V2J .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-va0GTch7pV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-va0GTch7pV nav.navbar {
  position: fixed;
}
.cid-va0GTch7pV .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-va0GTch7pV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-va0GTch7pV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-va0GTch7pV .dropdown-item:hover,
.cid-va0GTch7pV .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-va0GTch7pV .dropdown-item:hover span {
  color: white;
}
.cid-va0GTch7pV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-va0GTch7pV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-va0GTch7pV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-va0GTch7pV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-va0GTch7pV .nav-link {
  position: relative;
}
.cid-va0GTch7pV .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-va0GTch7pV .container {
    flex-wrap: wrap;
  }
}
.cid-va0GTch7pV .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-va0GTch7pV .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-va0GTch7pV .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-va0GTch7pV .dropdown-menu,
.cid-va0GTch7pV .navbar.opened {
  background: #000000 !important;
}
.cid-va0GTch7pV .nav-item:focus,
.cid-va0GTch7pV .nav-link:focus {
  outline: none;
}
.cid-va0GTch7pV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-va0GTch7pV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va0GTch7pV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-va0GTch7pV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-va0GTch7pV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-va0GTch7pV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-va0GTch7pV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-va0GTch7pV .navbar.opened {
  transition: all 0.3s;
}
.cid-va0GTch7pV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-va0GTch7pV .navbar .navbar-logo img {
  width: auto;
}
.cid-va0GTch7pV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-va0GTch7pV .navbar.collapsed {
  justify-content: center;
}
.cid-va0GTch7pV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-va0GTch7pV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-va0GTch7pV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-va0GTch7pV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-va0GTch7pV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-va0GTch7pV .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-va0GTch7pV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-va0GTch7pV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-va0GTch7pV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-va0GTch7pV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-va0GTch7pV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-va0GTch7pV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-va0GTch7pV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-va0GTch7pV .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-va0GTch7pV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-va0GTch7pV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-va0GTch7pV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-va0GTch7pV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-va0GTch7pV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-va0GTch7pV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-va0GTch7pV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-va0GTch7pV .navbar.navbar-short {
  min-height: 60px;
}
.cid-va0GTch7pV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-va0GTch7pV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-va0GTch7pV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-va0GTch7pV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-va0GTch7pV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-va0GTch7pV .dropdown-item.active,
.cid-va0GTch7pV .dropdown-item:active {
  background-color: transparent;
}
.cid-va0GTch7pV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-va0GTch7pV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-va0GTch7pV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-va0GTch7pV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-va0GTch7pV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-va0GTch7pV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va0GTch7pV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-va0GTch7pV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-va0GTch7pV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-va0GTch7pV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-va0GTch7pV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va0GTch7pV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va0GTch7pV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va0GTch7pV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va0GTch7pV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va0GTch7pV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va0GTch7pV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va0GTch7pV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va0GTch7pV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-va0GTch7pV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-va0GTch7pV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-va0GTch7pV .navbar {
    height: 70px;
  }
  .cid-va0GTch7pV .navbar.opened {
    height: auto;
  }
  .cid-va0GTch7pV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-va0GTdwquh {
  background-image: url("../../../assets/images/corsicangourd.webp");
}
.cid-va0GTdwquh .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTdwquh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTdwquh .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-va0GTdwquh .mbr-text,
.cid-va0GTdwquh .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-va0GTdwquh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-va0GTehOr7 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-va0GTehOr7 img,
.cid-va0GTehOr7 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-va0GTehOr7 .item:focus,
.cid-va0GTehOr7 span:focus {
  outline: none;
}
.cid-va0GTehOr7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-va0GTehOr7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-va0GTehOr7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-va0GTehOr7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-va0GTehOr7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-va0GTehOr7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-va0GTehOr7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-va0GTehOr7 .mbr-section-title {
  color: #ffffff;
}
.cid-va0GTehOr7 .mbr-text,
.cid-va0GTehOr7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-va0GTehOr7 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-va0GTehOr7 .item-subtitle {
  text-align: left;
}
.cid-va0GTehOr7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-va0GTeM5xy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-va0GTeM5xy .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTeM5xy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTeM5xy .mbr-section-title {
  color: #ffffff;
}
.cid-va0GTeM5xy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-va0GTffsqn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-va0GTffsqn .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTffsqn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTffsqn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-va0GTffsqn .mbr-section-title {
  color: #ffffff;
}
.cid-va0GTfIRUN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-va0GTfIRUN .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTfIRUN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTfIRUN .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-va0GTfIRUN .number {
  color: #ffffff;
}
.cid-va0GTfIRUN .period {
  display: block;
}
.cid-va0GTfIRUN .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-va0GTfIRUN .period {
    font-size: 0.8rem;
  }
}
.cid-va0GTfIRUN .btn {
  height: 100%;
  margin: 0;
}
.cid-va0GTfIRUN .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-va0GTfIRUN .mbr-section-title {
  color: #ffffff;
}
.cid-va0GTfIRUN .mbr-text {
  color: #ffffff;
}
.cid-va0GTfIRUN .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-va0GTfIRUN .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-va0GTfIRUN .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-va0GTfIRUN .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-va0GTglZWv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-va0GTglZWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTglZWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTglZWv .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-va0GTglZWv .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-va0GTglZWv .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-va0GTglZWv .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-va0GTglZWv .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-va0GTglZWv .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-va0GTglZWv .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-va0GTglZWv .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-va0GTglZWv .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-va0GTglZWv [class^="socicon-"]:before,
.cid-va0GTglZWv [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-va0GTglZWv .mbr-section-title,
.cid-va0GTglZWv .mbr-social-likes {
  color: #ffffff;
}
.cid-va0GTgQGwR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-va0GTgQGwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GTgQGwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GTgQGwR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-va0GTgQGwR .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-va0GTgQGwR .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-va0GTgQGwR .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-va0GTgQGwR .mbr-text {
  color: #ffffff;
}
.cid-va0GTgQGwR .card-title {
  color: #ffffff;
}
.cid-va0GTgQGwR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-va0GTgQGwR .mbr-section-title {
  color: #ffffff;
}
.cid-va0GTgQGwR .link {
  color: #4479d9;
}
.cid-va0GThtNme {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-va0GThtNme .mbr-fallback-image.disabled {
  display: none;
}
.cid-va0GThtNme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va0GThtNme .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-va0GThtNme .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-va0GThtNme .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-va0GThtNme .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-va0GThtNme div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-va0GThtNme .copyright {
  color: #bbbbbb;
  text-align: center;
}
.cid-vdFcWeYr0i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vdFcWeYr0i nav.navbar {
  position: fixed;
}
.cid-vdFcWeYr0i .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-vdFcWeYr0i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vdFcWeYr0i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vdFcWeYr0i .dropdown-item:hover,
.cid-vdFcWeYr0i .dropdown-item:focus {
  background: #bed3f9 !important;
  color: white !important;
}
.cid-vdFcWeYr0i .dropdown-item:hover span {
  color: white;
}
.cid-vdFcWeYr0i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vdFcWeYr0i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vdFcWeYr0i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vdFcWeYr0i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vdFcWeYr0i .nav-link {
  position: relative;
}
.cid-vdFcWeYr0i .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vdFcWeYr0i .container {
    flex-wrap: wrap;
  }
}
.cid-vdFcWeYr0i .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-vdFcWeYr0i .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-vdFcWeYr0i .iconfont-wrapper {
  color: #22a5e5 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vdFcWeYr0i .dropdown-menu,
.cid-vdFcWeYr0i .navbar.opened {
  background: #000000 !important;
}
.cid-vdFcWeYr0i .nav-item:focus,
.cid-vdFcWeYr0i .nav-link:focus {
  outline: none;
}
.cid-vdFcWeYr0i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vdFcWeYr0i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vdFcWeYr0i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vdFcWeYr0i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vdFcWeYr0i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vdFcWeYr0i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vdFcWeYr0i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-vdFcWeYr0i .navbar.opened {
  transition: all 0.3s;
}
.cid-vdFcWeYr0i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vdFcWeYr0i .navbar .navbar-logo img {
  width: auto;
}
.cid-vdFcWeYr0i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vdFcWeYr0i .navbar.collapsed {
  justify-content: center;
}
.cid-vdFcWeYr0i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vdFcWeYr0i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vdFcWeYr0i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-vdFcWeYr0i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vdFcWeYr0i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vdFcWeYr0i .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-vdFcWeYr0i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vdFcWeYr0i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vdFcWeYr0i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vdFcWeYr0i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vdFcWeYr0i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vdFcWeYr0i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vdFcWeYr0i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vdFcWeYr0i .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-vdFcWeYr0i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vdFcWeYr0i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vdFcWeYr0i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vdFcWeYr0i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vdFcWeYr0i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vdFcWeYr0i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vdFcWeYr0i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vdFcWeYr0i .navbar.navbar-short {
  min-height: 60px;
}
.cid-vdFcWeYr0i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vdFcWeYr0i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vdFcWeYr0i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vdFcWeYr0i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vdFcWeYr0i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vdFcWeYr0i .dropdown-item.active,
.cid-vdFcWeYr0i .dropdown-item:active {
  background-color: transparent;
}
.cid-vdFcWeYr0i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vdFcWeYr0i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vdFcWeYr0i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vdFcWeYr0i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vdFcWeYr0i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vdFcWeYr0i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vdFcWeYr0i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vdFcWeYr0i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vdFcWeYr0i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vdFcWeYr0i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vdFcWeYr0i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vdFcWeYr0i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vdFcWeYr0i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vdFcWeYr0i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vdFcWeYr0i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vdFcWeYr0i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vdFcWeYr0i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vdFcWeYr0i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vdFcWeYr0i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vdFcWeYr0i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vdFcWeYr0i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vdFcWeYr0i .navbar {
    height: 70px;
  }
  .cid-vdFcWeYr0i .navbar.opened {
    height: auto;
  }
  .cid-vdFcWeYr0i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vdFcWfLjtO {
  background-image: url("../../../assets/images/cotton-banner.webp");
}
.cid-vdFcWfLjtO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWfLjtO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWfLjtO .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-vdFcWfLjtO .mbr-text,
.cid-vdFcWfLjtO .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-vdFcWfLjtO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vdFeBuxyOR {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFeBuxyOR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFeBuxyOR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFeBuxyOR .mbr-section-title {
  color: #ffffff;
}
.cid-vdFeBuxyOR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFg4GahLD {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFg4GahLD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFg4GahLD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdFg4GahLD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdFg4GahLD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vdFg4GahLD .text-wrapper {
    padding: 2rem;
  }
}
.cid-vdFg4GahLD .mbr-section-title {
  color: #ffffff;
}
.cid-vdFg4GahLD .mbr-text {
  color: #ffffff;
}
.cid-vdFg4GahLD .mbr-description {
  color: #ffffff;
}
.cid-vdFgOV3JDc {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFgOV3JDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFgOV3JDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdFgOV3JDc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdFgOV3JDc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vdFgOV3JDc .text-wrapper {
    padding: 2rem;
  }
}
.cid-vdFgOV3JDc .mbr-section-title {
  color: #ffffff;
}
.cid-vdFgOV3JDc .mbr-text {
  color: #ffffff;
}
.cid-vdFgOV3JDc .mbr-description {
  color: #ffffff;
}
.cid-vdFhLde64L {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFhLde64L .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFhLde64L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdFhLde64L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdFhLde64L img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vdFhLde64L .text-wrapper {
    padding: 2rem;
  }
}
.cid-vdFhLde64L .mbr-section-title {
  color: #ffffff;
}
.cid-vdFhLde64L .mbr-text {
  color: #ffffff;
}
.cid-vdFhLde64L .mbr-description {
  color: #ffffff;
}
.cid-vdFiEwDxE2 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFiEwDxE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFiEwDxE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdFiEwDxE2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdFiEwDxE2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vdFiEwDxE2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vdFiEwDxE2 .mbr-section-title {
  color: #ffffff;
}
.cid-vdFiEwDxE2 .mbr-text {
  color: #ffffff;
}
.cid-vdFiEwDxE2 .mbr-description {
  color: #ffffff;
}
.cid-vdFiZXdG2X {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFiZXdG2X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFiZXdG2X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vdFiZXdG2X .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vdFiZXdG2X img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vdFiZXdG2X .text-wrapper {
    padding: 2rem;
  }
}
.cid-vdFiZXdG2X .mbr-section-title {
  color: #ffffff;
}
.cid-vdFiZXdG2X .mbr-text {
  color: #ffffff;
}
.cid-vdFiZXdG2X .mbr-description {
  color: #ffffff;
}
.cid-vdFl8IiO5v {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFl8IiO5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFl8IiO5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFl8IiO5v .mbr-section-title {
  color: #ffffff;
}
.cid-vdFl8IiO5v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFcWgeHJt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vdFcWgeHJt img,
.cid-vdFcWgeHJt .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-vdFcWgeHJt .item:focus,
.cid-vdFcWgeHJt span:focus {
  outline: none;
}
.cid-vdFcWgeHJt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vdFcWgeHJt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vdFcWgeHJt .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vdFcWgeHJt .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vdFcWgeHJt .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vdFcWgeHJt .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vdFcWgeHJt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vdFcWgeHJt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vdFcWgeHJt .mbr-text,
.cid-vdFcWgeHJt .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vdFcWgeHJt .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vdFcWgeHJt .item-subtitle {
  text-align: left;
}
.cid-vdFcWgeHJt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFcWgNaYt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-vdFcWgNaYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWgNaYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWgNaYt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFcWgNaYt .mbr-section-title {
  color: #ffffff;
}
.cid-vdFcWhh2L7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFcWhh2L7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWhh2L7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWhh2L7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-vdFcWhh2L7 .number {
  color: #ffffff;
}
.cid-vdFcWhh2L7 .period {
  display: block;
}
.cid-vdFcWhh2L7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-vdFcWhh2L7 .period {
    font-size: 0.8rem;
  }
}
.cid-vdFcWhh2L7 .btn {
  height: 100%;
  margin: 0;
}
.cid-vdFcWhh2L7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-vdFcWhh2L7 .mbr-section-title {
  color: #ffffff;
}
.cid-vdFcWhh2L7 .mbr-text {
  color: #ffffff;
}
.cid-vdFcWhh2L7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-vdFcWhh2L7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-vdFcWhh2L7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-vdFcWhh2L7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-vdFcWhRyzQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vdFcWhRyzQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWhRyzQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWhRyzQ .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-vdFcWhRyzQ .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-vdFcWhRyzQ .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-vdFcWhRyzQ .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-vdFcWhRyzQ .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-vdFcWhRyzQ .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-vdFcWhRyzQ .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-vdFcWhRyzQ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-vdFcWhRyzQ .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-vdFcWhRyzQ [class^="socicon-"]:before,
.cid-vdFcWhRyzQ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-vdFcWhRyzQ .mbr-section-title,
.cid-vdFcWhRyzQ .mbr-social-likes {
  color: #ffffff;
}
.cid-vdFcWijndT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-vdFcWijndT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWijndT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWijndT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-vdFcWijndT .card-wrapper {
  padding: 3rem;
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-vdFcWijndT .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vdFcWijndT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-vdFcWijndT .mbr-text {
  color: #ffffff;
}
.cid-vdFcWijndT .card-title {
  color: #ffffff;
}
.cid-vdFcWijndT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-vdFcWijndT .mbr-section-title {
  color: #ffffff;
}
.cid-vdFcWijndT .link {
  color: #4479d9;
}
.cid-vdFcWiSxnt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vdFcWiSxnt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vdFcWiSxnt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vdFcWiSxnt .list {
  list-style: none;
  padding-left: 0;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vdFcWiSxnt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vdFcWiSxnt .list {
    margin-bottom: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-vdFcWiSxnt .row {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-vdFcWiSxnt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vdFcWiSxnt .copyright {
  color: #bbbbbb;
  text-align: center;
}
