body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Cooper Black Regular';
  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: 'Cooper Black Regular';
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2.0rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.0rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
.display-8 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}
.display-8 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.5rem;
    font-size: calc( 1.5rem + (1.5 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2rem + (2.2 - 2) * ((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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.45rem;
    font-size: calc( 1.0rem + (2.2 - 1.0) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.0 * (1.0rem + (2.2 - 1.0) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
    .display-8 {
    font-size: 1rem;

  }
}
/* 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #663332 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !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: #663332 !important;
  border-color: #663332 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 8x 0 rgba(0, 0, 0, 0.2);
  height: 60px; 
width: 200px; 


}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #2c1615 !important;
  border-color: #2c1615 !important;
  box-shadow: 0 8px 18px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #2c1615 !important;
  border-color: #2c1615 !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: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #663332;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #2c1615 !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: #663332 !important;
  border-color: #663332 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #663332 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !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: #221110 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.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: #663332;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #b36664;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Cooper Black Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Cooper Black Regular';
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sCMIjLgozQ {
  padding-top: auto;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sCMIjLgozQ .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sCMIjLgozQ .carousel {
    min-height: 400px;
  }
  .cid-sCMIjLgozQ .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCMIjLgozQ .carousel {
    min-height: 260px;
  }
  .cid-sCMIjLgozQ .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCMIjLgozQ .carousel {
    min-height: 220px;
  }
  .cid-sCMIjLgozQ .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sCMIjLgozQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCMIjLgozQ .content-slider-wrap {
    width: 120% !important;
  }
}
.cid-sCMIjLgozQ .carousel,
.cid-sCMIjLgozQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCMIjLgozQ .item-wrapper {
  width: 120%;
}
.cid-sCMIjLgozQ .carousel-caption {
  bottom: 40px;
}
.cid-sCMIjLgozQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCMIjLgozQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCMIjLgozQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCMIjLgozQ .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCMIjLgozQ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCMIjLgozQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCMIjLgozQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCMIjLgozQ .carousel-control {
    top: auto;
    bottom: 0rem;
  }
}
.cid-sCMIjLgozQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCMIjLgozQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 40%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCMIjLgozQ .carousel-indicators li.active,
.cid-sCMIjLgozQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCMIjLgozQ .carousel-indicators li::after,
.cid-sCMIjLgozQ .carousel-indicators li::before {
  content: none;
}
.cid-sCMIjLgozQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCMIjLgozQ .carousel-indicators {
    display: none !important;
  }
}
.cid-sx39K3bOfs {
  background-image: url("../../../assets/images/background Catfoodv2.png");
}
.cid-sx39K3bOfs .mbr-section-title {
  text-align: left;
  color: #663332;
}
.cid-sx39K3bOfs .mbr-text,
.cid-sx39K3bOfs .mbr-section-btn {
  text-align: left;
}
.cid-sx39K3bOfs .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-sCMHFHpYDU {
  padding-top: 1rem;
  padding-bottom: 0.3rem;
  background-color: #F0F0F0;
}
.cid-sCMHFHpYDU .mbr-section-title {
  color: #f47e45;
}
.cid-sCMHFHpYDP {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  background-color: #ffffff;
}
.cid-sCMHFHpYDP .mbr-section-title {
  color: #f47e45;
}
.cid-sCMlSySviJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #F47E45;
}
.cid-sCMlSySviJ .mbr-overlay {
  z-index: 0;
}
@media (min-width: 992px) {
  .cid-sCMlSySviJ .carousel {
    min-height: 400px;
  }
  .cid-sCMlSySviJ .carousel img {
    max-height: 1000px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCMlSySviJ .carousel {
    min-height: 250px;
  }
  .cid-sCMlSySviJ .carousel img {
    max-height: 280px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCMlSySviJ .carousel {
    min-height: 100px;
  }
  .cid-sCMlSySviJ .carousel img {
    max-height: 207px;
    object-fit: contain;
  }
  .cid-sCMlSySviJ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCMlSySviJ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCMlSySviJ .carousel,
.cid-sCMlSySviJ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCMlSySviJ .item-wrapper {
  width: 100%;
}
.cid-sCMlSySviJ .carousel-caption {
  bottom: 40px;
}
.cid-sCMlSySviJ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCMlSySviJ .mobi-mbri-arrow-next {
  margin-left: 3px;
}
.cid-sCMlSySviJ .mobi-mbri-arrow-prev {
  margin-right: 3px;
}
.cid-sCMlSySviJ .container .carousel-indicators {
  margin-bottom: 2px;
}
.cid-sCMlSySviJ .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCMlSySviJ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2rem;
}
.cid-sCMlSySviJ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2rem;
}
@media (max-width: 767px) {
  .cid-sCMlSySviJ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCMlSySviJ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCMlSySviJ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCMlSySviJ .carousel-indicators li.active,
.cid-sCMlSySviJ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCMlSySviJ .carousel-indicators li::after,
.cid-sCMlSySviJ .carousel-indicators li::before {
  content: none;
}
.cid-sCMlSySviJ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCMlSySviJ .carousel-indicators {
    display: none !important;
  }
}



.cid-sCMlSySviQ {
  padding-top: -0.5rem;
  padding-bottom: -0.5rem;
  background-color: #F0F0F0;
}
.cid-sCMlSySviQ .mbr-overlay {
  z-index: 0;
}
@media (min-width: 992px) {
  .cid-sCMlSySviQ .carousel {
    min-height: 170px;
  }
  .cid-sCMlSySviQ .carousel img {
    max-height: 170px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCMlSySviQ .carousel {
    min-height: 80px;
  }
  .cid-sCMlSySviQ .carousel img {
    max-height: 95px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCMlSySviQ .carousel {
    min-height: 47px;
  }
  .cid-sCMlSySviQ .carousel img {
    max-height: 52px;
    object-fit: contain;
  }
  .cid-sCMlSySviQ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCMlSySviQ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCMlSySviQ .carousel,
.cid-sCMlSySviQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCMlSySviQ .item-wrapper {
  width: 100%;
}
.cid-sCMlSySviQ .carousel-caption {
  bottom: 0px;
}
.cid-sCMlSySviQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCMlSySviQ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCMlSySviQ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCMlSySviQ .container .carousel-indicators {
  margin-bottom: 2px;
}
.cid-sCMlSySviQ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCMlSySviQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCMlSySviQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCMlSySviQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCMlSySviQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCMlSySviQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCMlSySviQ .carousel-indicators li.active,
.cid-sCMlSySviQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCMlSySviQ .carousel-indicators li::after,
.cid-sCMlSySviQ .carousel-indicators li::before {
  content: none;
}
.cid-sCMlSySviQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCMlSySviQ .carousel-indicators {
    display: none !important;
  }
}



.cid-sCMlSySviZ {
  padding-top: -0.5rem;
  padding-bottom: -0.5rem;
  background-color: #F0F0F0;
}
.cid-sCMlSySviZ .mbr-overlay {
  z-index: 0;
}
@media (min-width: 992px) {
  .cid-sCMlSySviZ .carousel {
    min-height: 256px;
  }
  .cid-sCMlSySviZ .carousel img {
    max-height: 256px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCMlSySviZ .carousel {
    min-height: 138px;
  }
  .cid-sCMlSySviZ .carousel img {
    max-height: 145px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCMlSySviZ .carousel {
    min-height: 61px;
  }
  .cid-sCMlSySviZ .carousel img {
    max-height: 71px;
    object-fit: contain;
  }
  .cid-sCMlSySviZ .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCMlSySviZ .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCMlSySviZ .carousel,
.cid-sCMlSySviZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCMlSySviZ .item-wrapper {
  width: 100%;
}
.cid-sCMlSySviZ .carousel-caption {
  bottom: 0px;
}
.cid-sCMlSySviZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCMlSySviZ .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCMlSySviZ .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCMlSySviZ .container .carousel-indicators {
  margin-bottom: 2px;
}
.cid-sCMlSySviZ .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCMlSySviZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCMlSySviZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCMlSySviZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCMlSySviZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCMlSySviZ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCMlSySviZ .carousel-indicators li.active,
.cid-sCMlSySviZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCMlSySviZ .carousel-indicators li::after,
.cid-sCMlSySviZ .carousel-indicators li::before {
  content: none;
}
.cid-sCMlSySviZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCMlSySviZ .carousel-indicators {
    display: none !important;
  }
}



.cid-sCMlSySviW {
  padding-top: -0.5rem;
  padding-bottom: -0.5rem;
  background-color: #F0F0F0;
}
.cid-sCMlSySviW .mbr-overlay {
  z-index: 0;
}
@media (min-width: 992px) {
  .cid-sCMlSySviW .carousel {
    min-height: 200px;
  }
  .cid-sCMlSySviW .carousel img {
    max-height: 215px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCMlSySviW .carousel {
    min-height: 110px;
  }
  .cid-sCMlSySviW .carousel img {
    max-height: 120px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCMlSySviW .carousel {
    min-height: 65px;
  }
  .cid-sCMlSySviW .carousel img {
    max-height: 80px;
    object-fit: contain;
  }
  .cid-sCMlSySviW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCMlSySviW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCMlSySviW .carousel,
.cid-sCMlSySviW .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCMlSySviW .item-wrapper {
  width: 100%;
}
.cid-sCMlSySviW .carousel-caption {
  bottom: 0px;
}
.cid-sCMlSySviW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCMlSySviW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCMlSySviW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCMlSySviW .container .carousel-indicators {
  margin-bottom: 2px;
}
.cid-sCMlSySviW .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCMlSySviW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCMlSySviW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCMlSySviW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCMlSySviW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCMlSySviW .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCMlSySviW .carousel-indicators li.active,
.cid-sCMlSySviW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCMlSySviW .carousel-indicators li::after,
.cid-sCMlSySviW .carousel-indicators li::before {
  content: none;
}
.cid-sCMlSySviW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCMlSySviW .carousel-indicators {
    display: none !important;
  }
}


.cid-sCNbeKCmzQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCNbeKCmzQ .mbr-section-title {
  color: #f47e45;
}
.cid-sCNb0w0RPi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCNb0w0RPi .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sCNb0w0RPi .carousel {
    min-height: 400px;
  }
  .cid-sCNb0w0RPi .carousel img {
    max-height: 400px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCNb0w0RPi .carousel {
    min-height: 260px;
  }
  .cid-sCNb0w0RPi .carousel img {
    max-height: 260px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCNb0w0RPi .carousel {
    min-height: 220px;
  }
  .cid-sCNb0w0RPi .carousel img {
    max-height: 220px;
    object-fit: contain;
  }
  .cid-sCNb0w0RPi .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCNb0w0RPi .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCNb0w0RPi .carousel,
.cid-sCNb0w0RPi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCNb0w0RPi .item-wrapper {
  width: 100%;
}
.cid-sCNb0w0RPi .carousel-caption {
  bottom: 40px;
}
.cid-sCNb0w0RPi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCNb0w0RPi .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCNb0w0RPi .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCNb0w0RPi .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCNb0w0RPi .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCNb0w0RPi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCNb0w0RPi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCNb0w0RPi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCNb0w0RPi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sCNb0w0RPi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCNb0w0RPi .carousel-indicators li.active,
.cid-sCNb0w0RPi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCNb0w0RPi .carousel-indicators li::after,
.cid-sCNb0w0RPi .carousel-indicators li::before {
  content: none;
}
.cid-sCNb0w0RPi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCNb0w0RPi .carousel-indicators {
    display: none !important;
  }
}
.cid-sCNbx52Iyf {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCNb1ktwdF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCNb1ktwdF .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-sCNb1ktwdF .carousel {
    min-height: 280px;
  }
  .cid-sCNb1ktwdF .carousel img {
    max-height: 311px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sCNb1ktwdF .carousel {
    min-height: 135px;
  }
  .cid-sCNb1ktwdF .carousel img {
    max-height: 160px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-sCNb1ktwdF .carousel {
    min-height: 90px;
  }
  .cid-sCNb1ktwdF .carousel img {
    max-height: 120x;
    object-fit: contain;
  }
  .cid-sCNb1ktwdF .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sCNb1ktwdF .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sCNb1ktwdF .carousel,
.cid-sCNb1ktwdF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCNb1ktwdF .item-wrapper {
  width: 100%;
}
.cid-sCNb1ktwdF .carousel-caption {
  bottom: 40px;
}
.cid-sCNb1ktwdF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCNb1ktwdF .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCNb1ktwdF .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCNb1ktwdF .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCNb1ktwdF .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.8s;
}
.cid-sCNb1ktwdF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCNb1ktwdF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCNb1ktwdF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCNb1ktwdF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: .5rem !important;
}
.cid-sCNb1ktwdF .carousel-indicators li {
  max-width: 10px;
  height: 10px;
  width: 10px;
  max-height: 10px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.1;
  transition: all 0.8s;
}
.cid-sCNb1ktwdF .carousel-indicators li.active,
.cid-sCNb1ktwdF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCNb1ktwdF .carousel-indicators li::after,
.cid-sCNb1ktwdF .carousel-indicators li::before {
  content: none;
}
.cid-sCNb1ktwdF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCNb1ktwdF .carousel-indicators {
    display: none !important;
  }
}
.cid-sDEYl84lZI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f47e45;
}
.cid-sDEYl84lZI .mbr-iconfont {
  display: block;
  font-size: 2.5rem;
  color: #6592e6;
  margin-bottom: 0.5rem;
}
.cid-sDEYl84lZI .card-wrapper {
  min-height: 120px;
  transition: all 0.3s;
  border-radius: 2px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sDEYl84lZ3 {
	width: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	background-color: #F0F0F0;
}
.cid-sDF9NumZgW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDF9NumZgW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sDF9NumZgW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sDF9NumZgW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sDF9NumZgW .mbr-section-title {
  color: #f47e45;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #F47E45;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #f47e45 !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #F47E45;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: 0rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: 0rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sx30ktcBAv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/cats1-copy-1335x444.png");
}
.cid-sx30ktcBAv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sx30ktcBAv .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #663332;
  transition: all 0.3s;
  color: #663332;
}
.cid-sx30ktcBAv .social-row .soc-item .mbr-iconfont:hover {
  background-color: #663332;
  color: #ffffff;
}
.cid-sx30ktcBAv .mbr-section-title {
  color: #663332;
  text-align: center;
}
.cid-sx30ktcBAv .mbr-text,
.cid-sx30ktcBAv .mbr-section-btn,
.cid-sx30ktcBAv .social-row {
  color: #ffffff;
}
.cid-s48P1Icc8J {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCRP9H4FtH {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner1-1680x350.jpg");
}
.cid-sCRP9H4FtH .mbr-section-title {
  color: #ffffff;
}
.cid-sCRP9H4FtT {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner11-1680x350.jpg");
}
.cid-sCRP9H4FtT .mbr-section-title {
  color: #ffffff;
 }
 .cid-sCNWT4ICnz {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sCNWT4ICnz .mbr-section-title {
  color: #f47e45;
}
.cid-sCNV4VPQB3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCNV4VPQB3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCNV4VPQB3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCNV4VPQB3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCNV4VPQB3 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCNV4VPQB3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCNV4VPQB3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSttTFOcX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSttTFOcX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSttTFOcX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSttTFOcX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSttTFOcX .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSttTFOcX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSttTFOcX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-s48OLK6784 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-s48OLK6784 nav.navbar {
  position: fixed;
}
.cid-s48OLK6784 .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-s48OLK6784 .dropdown-menu {
  padding: 0;
}
.cid-s48OLK6784 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-s48OLK6784 .dropdown-item:hover,
.cid-s48OLK6784 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-s48OLK6784 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s48OLK6784 .nav-link {
  position: relative;
}
.cid-s48OLK6784 .container {
  display: flex;
  margin: auto;
}
.cid-s48OLK6784 .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-s48OLK6784 .navbar-caption {
  padding-right: 4rem;
}
.cid-s48OLK6784 .dropdown-menu,
.cid-s48OLK6784 .navbar.opened {
  background: #f47e45 !important;
}
.cid-s48OLK6784 .nav-item:focus,
.cid-s48OLK6784 .nav-link:focus {
  outline: none;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s48OLK6784 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-s48OLK6784 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s48OLK6784 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s48OLK6784 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-s48OLK6784 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #F47E45;
}
.cid-s48OLK6784 .navbar.opened {
  transition: all .3s;
}
.cid-s48OLK6784 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-s48OLK6784 .navbar .navbar-logo img {
  width: auto;
}
.cid-s48OLK6784 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-s48OLK6784 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s48OLK6784 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s48OLK6784 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s48OLK6784 .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: 55%;
}
.cid-s48OLK6784 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s48OLK6784 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s48OLK6784 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s48OLK6784 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s48OLK6784 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s48OLK6784 .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: 55%;
  }
  .cid-s48OLK6784 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s48OLK6784 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s48OLK6784 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s48OLK6784 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s48OLK6784 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-s48OLK6784 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s48OLK6784 .navbar.navbar-short {
  min-height: 60px;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s48OLK6784 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s48OLK6784 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s48OLK6784 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s48OLK6784 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s48OLK6784 .dropdown-item.active,
.cid-s48OLK6784 .dropdown-item:active {
  background-color: transparent;
}
.cid-s48OLK6784 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s48OLK6784 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-s48OLK6784 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s48OLK6784 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s48OLK6784 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-s48OLK6784 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-s48OLK6784 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s48OLK6784 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s48OLK6784 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s48OLK6784 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s48OLK6784 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-s48OLK6784 .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-s48OLK6784 .navbar {
    height: 77px;
  }
  .cid-s48OLK6784 .navbar.opened {
    height: auto;
  }
  .cid-s48OLK6784 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCStPPQjdU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCStPPQjdU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCStPPQjdU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCStPPQjdU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCStPPQjdU .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCStPPQjdU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCStPPQjdU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOt4D9ELx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOt4D9ELx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOt4D9ELx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOt4D9ELx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOt4D9ELx .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOt4D9ELx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOt4D9ELx .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSuaPXpOI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSuaPXpOI .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSuaPXpOI .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSuaPXpOI .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSuaPXpOI .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSuaPXpOI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSuaPXpOI .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOtxbnJNZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOtxbnJNZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOtxbnJNZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOtxbnJNZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOtxbnJNZ .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOtxbnJNZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOtxbnJNZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSutJWT8r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSutJWT8r .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSutJWT8r .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSutJWT8r .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSutJWT8r .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSutJWT8r .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSutJWT8r .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSuuB3tWP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSuuB3tWP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSuuB3tWP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSuuB3tWP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSuuB3tWP .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSuuB3tWP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSuuB3tWP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSuuB3tXP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSuuB3tXP .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSuuB3tXP .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSuuB3tXP .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSuuB3tXP .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSuuB3tXP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSuuB3tXP .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRWbyxLyO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-s48P1Icc8J {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCNYkQrSyH {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancy-feast-ratings-and-reviews-1680x350.jpg");
}
.cid-sCNYkQrSyH .mbr-section-title {
  color: #f47e45;
}
.cid-sCNYkR2o6N {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCNYkR2o6N .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCNYkR2o6N .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCNYkR2o6N .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCNYkR2o6N .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCNYkR2o6N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCNYkR2o6N .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOasZVhKA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOasZVhKA .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOasZVhKA .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOasZVhKA .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOasZVhKA .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOasZVhKA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOasZVhKA .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRMJ82Rda {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCNYkRz2hL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCNYkRz2hL nav.navbar {
  position: fixed;
}
.cid-sCNYkRz2hL .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-sCNYkRz2hL .dropdown-menu {
  padding: 0;
}
.cid-sCNYkRz2hL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCNYkRz2hL .dropdown-item:hover,
.cid-sCNYkRz2hL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCNYkRz2hL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCNYkRz2hL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCNYkRz2hL .nav-link {
  position: relative;
}
.cid-sCNYkRz2hL .container {
  display: flex;
  margin: auto;
}
.cid-sCNYkRz2hL .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCNYkRz2hL .navbar-caption {
  padding-right: 4rem;
}
.cid-sCNYkRz2hL .dropdown-menu,
.cid-sCNYkRz2hL .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCNYkRz2hL .nav-item:focus,
.cid-sCNYkRz2hL .nav-link:focus {
  outline: none;
}
.cid-sCNYkRz2hL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCNYkRz2hL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCNYkRz2hL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCNYkRz2hL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCNYkRz2hL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCNYkRz2hL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCNYkRz2hL .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCNYkRz2hL .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCNYkRz2hL .navbar.opened {
  transition: all .3s;
}
.cid-sCNYkRz2hL .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCNYkRz2hL .navbar .navbar-logo img {
  width: auto;
}
.cid-sCNYkRz2hL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCNYkRz2hL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCNYkRz2hL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCNYkRz2hL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCNYkRz2hL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCNYkRz2hL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCNYkRz2hL .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: 55%;
}
.cid-sCNYkRz2hL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCNYkRz2hL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCNYkRz2hL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCNYkRz2hL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCNYkRz2hL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCNYkRz2hL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCNYkRz2hL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCNYkRz2hL .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: 55%;
  }
  .cid-sCNYkRz2hL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCNYkRz2hL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCNYkRz2hL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCNYkRz2hL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCNYkRz2hL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCNYkRz2hL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCNYkRz2hL .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCNYkRz2hL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCNYkRz2hL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCNYkRz2hL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCNYkRz2hL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCNYkRz2hL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCNYkRz2hL .dropdown-item.active,
.cid-sCNYkRz2hL .dropdown-item:active {
  background-color: transparent;
}
.cid-sCNYkRz2hL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCNYkRz2hL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCNYkRz2hL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCNYkRz2hL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCNYkRz2hL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCNYkRz2hL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCNYkRz2hL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCNYkRz2hL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCNYkRz2hL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCNYkRz2hL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCNYkRz2hL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCNYkRz2hL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCNYkRz2hL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCNYkRz2hL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCNYkRz2hL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCNYkRz2hL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCNYkRz2hL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCNYkRz2hL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCNYkRz2hL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCNYkRz2hL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCNYkRz2hL .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-sCNYkRz2hL .navbar {
    height: 77px;
  }
  .cid-sCNYkRz2hL .navbar.opened {
    height: auto;
  }
  .cid-sCNYkRz2hL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCNYkS2oop {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCNYkS2oop .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCNYkS2oop .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCNYkS2oop .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCNYkS2oop .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCNYkS2oop .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCNYkS2oop .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCNYkS2oop .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCNYkS2oop .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCNYkS2oop .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCNYkS2oop .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCNYkS2oop .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCNYkS2oop .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCNYkS2oop .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCNYkS2oop .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCNYkS2oop .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCRUwtrNW2 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner2-1680x350.jpg");
}
.cid-sCRUwtrNW2 .mbr-section-title {
  color: #f47e45;
}
.cid-sCOl2dptjc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOl2dptjc .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOl2dptjc .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOl2dptjc .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOl2dptjc .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOl2dptjc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOl2dptjc .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOl2ej7T4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOl2ej7T4 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOl2ej7T4 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOl2ej7T4 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOl2ej7T4 .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOl2ej7T4 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOl2ej7T4 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRX6QyDRI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCOl2f6R7E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCOl2f6R7E nav.navbar {
  position: fixed;
}
.cid-sCOl2f6R7E .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-sCOl2f6R7E .dropdown-menu {
  padding: 0;
}
.cid-sCOl2f6R7E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOl2f6R7E .dropdown-item:hover,
.cid-sCOl2f6R7E .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCOl2f6R7E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCOl2f6R7E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCOl2f6R7E .nav-link {
  position: relative;
}
.cid-sCOl2f6R7E .container {
  display: flex;
  margin: auto;
}
.cid-sCOl2f6R7E .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCOl2f6R7E .navbar-caption {
  padding-right: 4rem;
}
.cid-sCOl2f6R7E .dropdown-menu,
.cid-sCOl2f6R7E .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCOl2f6R7E .nav-item:focus,
.cid-sCOl2f6R7E .nav-link:focus {
  outline: none;
}
.cid-sCOl2f6R7E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCOl2f6R7E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCOl2f6R7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCOl2f6R7E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCOl2f6R7E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCOl2f6R7E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCOl2f6R7E .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCOl2f6R7E .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOl2f6R7E .navbar.opened {
  transition: all .3s;
}
.cid-sCOl2f6R7E .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCOl2f6R7E .navbar .navbar-logo img {
  width: auto;
}
.cid-sCOl2f6R7E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCOl2f6R7E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCOl2f6R7E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCOl2f6R7E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCOl2f6R7E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCOl2f6R7E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCOl2f6R7E .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: 55%;
}
.cid-sCOl2f6R7E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCOl2f6R7E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCOl2f6R7E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCOl2f6R7E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCOl2f6R7E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCOl2f6R7E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCOl2f6R7E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCOl2f6R7E .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: 55%;
  }
  .cid-sCOl2f6R7E .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCOl2f6R7E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCOl2f6R7E .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCOl2f6R7E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCOl2f6R7E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCOl2f6R7E .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCOl2f6R7E .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCOl2f6R7E .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCOl2f6R7E .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCOl2f6R7E .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCOl2f6R7E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCOl2f6R7E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCOl2f6R7E .dropdown-item.active,
.cid-sCOl2f6R7E .dropdown-item:active {
  background-color: transparent;
}
.cid-sCOl2f6R7E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCOl2f6R7E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCOl2f6R7E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCOl2f6R7E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCOl2f6R7E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCOl2f6R7E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCOl2f6R7E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCOl2f6R7E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCOl2f6R7E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCOl2f6R7E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCOl2f6R7E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCOl2f6R7E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOl2f6R7E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOl2f6R7E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCOl2f6R7E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOl2f6R7E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCOl2f6R7E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCOl2f6R7E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOl2f6R7E .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCOl2f6R7E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCOl2f6R7E .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-sCOl2f6R7E .navbar {
    height: 77px;
  }
  .cid-sCOl2f6R7E .navbar.opened {
    height: auto;
  }
  .cid-sCOl2f6R7E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCOl2fJvuw {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCOl2fJvuw .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCOl2fJvuw .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCOl2fJvuw .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCOl2fJvuw .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCOl2fJvuw .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCOl2fJvuw .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCOl2fJvuw .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCOl2fJvuw .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCOl2fJvuw .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCOl2fJvuw .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCOl2fJvuw .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCOl2fJvuw .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCOl2fJvuw .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCOl2fJvuw .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCOl2fJvuw .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCRTEjmlcR {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner10-1680x350.jpg");
}
.cid-sCRTEjmlcR .mbr-section-title {
  color: #f47e45;
}
.cid-sCOpjwU1GG {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOpjwU1GG .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOpjwU1GG .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOpjwU1GG .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOpjwU1GG .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOpjwU1GG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOpjwU1GG .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOpjy4iXQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOpjy4iXQ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOpjy4iXQ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOpjy4iXQ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOpjy4iXQ .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOpjy4iXQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOpjy4iXQ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRWtT9EHx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCOpjyPgK4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCOpjyPgK4 nav.navbar {
  position: fixed;
}
.cid-sCOpjyPgK4 .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-sCOpjyPgK4 .dropdown-menu {
  padding: 0;
}
.cid-sCOpjyPgK4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOpjyPgK4 .dropdown-item:hover,
.cid-sCOpjyPgK4 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCOpjyPgK4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCOpjyPgK4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCOpjyPgK4 .nav-link {
  position: relative;
}
.cid-sCOpjyPgK4 .container {
  display: flex;
  margin: auto;
}
.cid-sCOpjyPgK4 .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCOpjyPgK4 .navbar-caption {
  padding-right: 4rem;
}
.cid-sCOpjyPgK4 .dropdown-menu,
.cid-sCOpjyPgK4 .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCOpjyPgK4 .nav-item:focus,
.cid-sCOpjyPgK4 .nav-link:focus {
  outline: none;
}
.cid-sCOpjyPgK4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCOpjyPgK4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCOpjyPgK4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCOpjyPgK4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCOpjyPgK4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCOpjyPgK4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCOpjyPgK4 .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCOpjyPgK4 .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOpjyPgK4 .navbar.opened {
  transition: all .3s;
}
.cid-sCOpjyPgK4 .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCOpjyPgK4 .navbar .navbar-logo img {
  width: auto;
}
.cid-sCOpjyPgK4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCOpjyPgK4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCOpjyPgK4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCOpjyPgK4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCOpjyPgK4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCOpjyPgK4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCOpjyPgK4 .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: 55%;
}
.cid-sCOpjyPgK4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCOpjyPgK4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCOpjyPgK4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCOpjyPgK4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCOpjyPgK4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCOpjyPgK4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCOpjyPgK4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCOpjyPgK4 .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: 55%;
  }
  .cid-sCOpjyPgK4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCOpjyPgK4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCOpjyPgK4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCOpjyPgK4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCOpjyPgK4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCOpjyPgK4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCOpjyPgK4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCOpjyPgK4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCOpjyPgK4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCOpjyPgK4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCOpjyPgK4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCOpjyPgK4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCOpjyPgK4 .dropdown-item.active,
.cid-sCOpjyPgK4 .dropdown-item:active {
  background-color: transparent;
}
.cid-sCOpjyPgK4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCOpjyPgK4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCOpjyPgK4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCOpjyPgK4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCOpjyPgK4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCOpjyPgK4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCOpjyPgK4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCOpjyPgK4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCOpjyPgK4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCOpjyPgK4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCOpjyPgK4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCOpjyPgK4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOpjyPgK4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOpjyPgK4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCOpjyPgK4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOpjyPgK4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCOpjyPgK4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCOpjyPgK4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOpjyPgK4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCOpjyPgK4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCOpjyPgK4 .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-sCOpjyPgK4 .navbar {
    height: 77px;
  }
  .cid-sCOpjyPgK4 .navbar.opened {
    height: auto;
  }
  .cid-sCOpjyPgK4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCOpjzjYP6 {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCOpjzjYP6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCOpjzjYP6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCOpjzjYP6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCOpjzjYP6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCOpjzjYP6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCOpjzjYP6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCOpjzjYP6 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCOpjzjYP6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCOpjzjYP6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCOpjzjYP6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCOpjzjYP6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCOpjzjYP6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCOpjzjYP6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCOpjzjYP6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCOpjzjYP6 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCRTQH5eye {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner9-1440x300.jpg");
}
.cid-sCRTQH5eye .mbr-section-title {
  color: #f47e45;
}
.cid-sCRTQH5eyr {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/FancybannerComplement.jpg");
}
.cid-sCRTQH5eyr .mbr-section-title {
  color: #f47e45;
}
.cid-sCRTQH5eyq {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/Hartz_banner_cats.png");
}
.cid-sCRTQH5eyq .mbr-section-title {
  color: #f47e45;
}
.cid-sCRTQJ5eyq {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-tiki4.png");
}
.cid-sCRTQJ5eyq .mbr-section-title {
  color: #f47e45;
}
.cid-sCOuaU3Gng {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaU3Gng .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaU3Gng .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaU3Gng .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaU3Gng .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaU3Gng .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaU3Gng .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}

.cid-sCOuaU3GnW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaU3GnW .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaU3GnW .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaU3GnW .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaU3GnW .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaU3GnW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaU3GnW .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOuaU3GnW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCOuaU3GnW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCOuaU3GnW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCOuaU3GnW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCOuaU3GnW .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCOuaU3GnW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCOuaU3GnW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCOuaU3GnW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCOuaU3GnW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 0rem !important;
}
.cid-sCOuaU3GnW .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCOuaU3GnW .carousel-indicators li.active,
.cid-sCOuaU3GnW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCOuaU3GnW .carousel-indicators li::after,
.cid-sCOuaU3GnW .carousel-indicators li::before {
  content: none;
}
.cid-sCOuaU3GnW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCOuaU3GnW .carousel-indicators {
    display: none !important;
  }
}
.cid-sCOuaU3Gng {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaU3Gng .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaU3Gng .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaU3Gng .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaU3Gng .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaU3Gng .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaU3Gng .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}

.cid-sCOuaU3GnX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaU3GnX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaU3GnX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaU3GnX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaU3GnX .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaU3GnX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaU3GnX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOuaU3GnX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sCOuaU3GnX .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sCOuaU3GnX .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sCOuaU3GnX .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sCOuaU3GnX .carousel-control {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCOuaU3GnX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCOuaU3GnX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCOuaU3GnX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCOuaU3GnX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 0rem !important;
}
.cid-sCOuaU3GnX .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCOuaU3GnX .carousel-indicators li.active,
.cid-sCOuaU3GnX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCOuaU3GnX .carousel-indicators li::after,
.cid-sCOuaU3GnX .carousel-indicators li::before {
  content: none;
}
.cid-sCOuaU3GnX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCOuaU3GnX .carousel-indicators {
    display: none !important;
  }
}
.cid-sCOuaU3Gnq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaU3Gnq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaU3Gnq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaU3Gnq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaU3Gnq .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaU3Gnq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaU3Gnq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOuaUNyXX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOuaUNyXX .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOuaUNyXX .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOuaUNyXX .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOuaUNyXX .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOuaUNyXX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOuaUNyXX .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRWFgima8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCOuaVidWD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCOuaVidWD nav.navbar {
  position: fixed;
}
.cid-sCOuaVidWD .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-sCOuaVidWD .dropdown-menu {
  padding: 0;
}
.cid-sCOuaVidWD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOuaVidWD .dropdown-item:hover,
.cid-sCOuaVidWD .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCOuaVidWD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCOuaVidWD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCOuaVidWD .nav-link {
  position: relative;
}
.cid-sCOuaVidWD .container {
  display: flex;
  margin: auto;
}
.cid-sCOuaVidWD .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCOuaVidWD .navbar-caption {
  padding-right: 4rem;
}
.cid-sCOuaVidWD .dropdown-menu,
.cid-sCOuaVidWD .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCOuaVidWD .nav-item:focus,
.cid-sCOuaVidWD .nav-link:focus {
  outline: none;
}
.cid-sCOuaVidWD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCOuaVidWD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCOuaVidWD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCOuaVidWD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCOuaVidWD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCOuaVidWD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCOuaVidWD .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCOuaVidWD .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOuaVidWD .navbar.opened {
  transition: all .3s;
}
.cid-sCOuaVidWD .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCOuaVidWD .navbar .navbar-logo img {
  width: auto;
}
.cid-sCOuaVidWD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCOuaVidWD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCOuaVidWD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCOuaVidWD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCOuaVidWD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCOuaVidWD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCOuaVidWD .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: 55%;
}
.cid-sCOuaVidWD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCOuaVidWD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCOuaVidWD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCOuaVidWD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCOuaVidWD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCOuaVidWD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCOuaVidWD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCOuaVidWD .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: 55%;
  }
  .cid-sCOuaVidWD .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCOuaVidWD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCOuaVidWD .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCOuaVidWD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCOuaVidWD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCOuaVidWD .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCOuaVidWD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCOuaVidWD .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCOuaVidWD .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCOuaVidWD .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCOuaVidWD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCOuaVidWD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCOuaVidWD .dropdown-item.active,
.cid-sCOuaVidWD .dropdown-item:active {
  background-color: transparent;
}
.cid-sCOuaVidWD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCOuaVidWD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCOuaVidWD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCOuaVidWD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCOuaVidWD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCOuaVidWD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCOuaVidWD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCOuaVidWD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCOuaVidWD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCOuaVidWD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCOuaVidWD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCOuaVidWD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOuaVidWD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOuaVidWD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCOuaVidWD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOuaVidWD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCOuaVidWD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCOuaVidWD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOuaVidWD .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCOuaVidWD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCOuaVidWD .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-sCOuaVidWD .navbar {
    height: 77px;
  }
  .cid-sCOuaVidWD .navbar.opened {
    height: auto;
  }
  .cid-sCOuaVidWD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCOuaVJyN1 {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCOuaVJyN1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCOuaVJyN1 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCOuaVJyN1 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCOuaVJyN1 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCOuaVJyN1 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCOuaVJyN1 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCOuaVJyN1 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCOuaVJyN1 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCOuaVJyN1 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCOuaVJyN1 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCOuaVJyN1 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCOuaVJyN1 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCOuaVJyN1 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCOuaVJyN1 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCOuaVJyN1 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCRUebvz6J {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner8-1440x300.jpg");
}
.cid-sCRUebvz6J .mbr-section-title {
  color: #f47e45;
}
.cid-sCOwPFvNXt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOwPFvNXt .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOwPFvNXt .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOwPFvNXt .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOwPFvNXt .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOwPFvNXt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOwPFvNXt .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCOwPGjkVg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCOwPGjkVg .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCOwPGjkVg .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCOwPGjkVg .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCOwPGjkVg .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCOwPGjkVg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCOwPGjkVg .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCRXB2j4ZQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCOwPH0GjX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCOwPH0GjX nav.navbar {
  position: fixed;
}
.cid-sCOwPH0GjX .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-sCOwPH0GjX .dropdown-menu {
  padding: 0;
}
.cid-sCOwPH0GjX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOwPH0GjX .dropdown-item:hover,
.cid-sCOwPH0GjX .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCOwPH0GjX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCOwPH0GjX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCOwPH0GjX .nav-link {
  position: relative;
}
.cid-sCOwPH0GjX .container {
  display: flex;
  margin: auto;
}
.cid-sCOwPH0GjX .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCOwPH0GjX .navbar-caption {
  padding-right: 4rem;
}
.cid-sCOwPH0GjX .dropdown-menu,
.cid-sCOwPH0GjX .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCOwPH0GjX .nav-item:focus,
.cid-sCOwPH0GjX .nav-link:focus {
  outline: none;
}
.cid-sCOwPH0GjX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCOwPH0GjX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCOwPH0GjX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCOwPH0GjX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCOwPH0GjX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCOwPH0GjX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCOwPH0GjX .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCOwPH0GjX .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCOwPH0GjX .navbar.opened {
  transition: all .3s;
}
.cid-sCOwPH0GjX .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCOwPH0GjX .navbar .navbar-logo img {
  width: auto;
}
.cid-sCOwPH0GjX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCOwPH0GjX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCOwPH0GjX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCOwPH0GjX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCOwPH0GjX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCOwPH0GjX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCOwPH0GjX .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: 55%;
}
.cid-sCOwPH0GjX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCOwPH0GjX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCOwPH0GjX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCOwPH0GjX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCOwPH0GjX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCOwPH0GjX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCOwPH0GjX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCOwPH0GjX .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: 55%;
  }
  .cid-sCOwPH0GjX .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCOwPH0GjX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCOwPH0GjX .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCOwPH0GjX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCOwPH0GjX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCOwPH0GjX .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCOwPH0GjX .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCOwPH0GjX .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCOwPH0GjX .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCOwPH0GjX .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCOwPH0GjX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCOwPH0GjX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCOwPH0GjX .dropdown-item.active,
.cid-sCOwPH0GjX .dropdown-item:active {
  background-color: transparent;
}
.cid-sCOwPH0GjX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCOwPH0GjX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCOwPH0GjX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCOwPH0GjX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCOwPH0GjX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCOwPH0GjX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCOwPH0GjX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCOwPH0GjX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCOwPH0GjX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCOwPH0GjX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCOwPH0GjX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCOwPH0GjX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOwPH0GjX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCOwPH0GjX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCOwPH0GjX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOwPH0GjX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCOwPH0GjX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCOwPH0GjX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCOwPH0GjX .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCOwPH0GjX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCOwPH0GjX .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-sCOwPH0GjX .navbar {
    height: 77px;
  }
  .cid-sCOwPH0GjX .navbar.opened {
    height: auto;
  }
  .cid-sCOwPH0GjX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCOwPHpRhs {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCOwPHpRhs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCOwPHpRhs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCOwPHpRhs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCOwPHpRhs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCOwPHpRhs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCOwPHpRhs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCOwPHpRhs .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCOwPHpRhs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCOwPHpRhs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCOwPHpRhs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCOwPHpRhs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCOwPHpRhs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCOwPHpRhs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCOwPHpRhs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCOwPHpRhs .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCS2qfXwDw {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner7-1680x350.jpg");
}
.cid-sCS2qfXwDw .mbr-section-title {
  color: #f47e45;
}
.cid-sCS2qhaDvH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCS2qhaDvH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCS2qhaDvH .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCS2qhaDvH .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCS2qhaDvH .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCS2qhaDvH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCS2qhaDvH .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCS2qi7s69 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCS2qiuMUI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCS2qiuMUI nav.navbar {
  position: fixed;
}
.cid-sCS2qiuMUI .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-sCS2qiuMUI .dropdown-menu {
  padding: 0;
}
.cid-sCS2qiuMUI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCS2qiuMUI .dropdown-item:hover,
.cid-sCS2qiuMUI .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCS2qiuMUI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCS2qiuMUI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCS2qiuMUI .nav-link {
  position: relative;
}
.cid-sCS2qiuMUI .container {
  display: flex;
  margin: auto;
}
.cid-sCS2qiuMUI .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCS2qiuMUI .navbar-caption {
  padding-right: 4rem;
}
.cid-sCS2qiuMUI .dropdown-menu,
.cid-sCS2qiuMUI .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCS2qiuMUI .nav-item:focus,
.cid-sCS2qiuMUI .nav-link:focus {
  outline: none;
}
.cid-sCS2qiuMUI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCS2qiuMUI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCS2qiuMUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCS2qiuMUI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCS2qiuMUI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCS2qiuMUI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCS2qiuMUI .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCS2qiuMUI .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCS2qiuMUI .navbar.opened {
  transition: all .3s;
}
.cid-sCS2qiuMUI .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCS2qiuMUI .navbar .navbar-logo img {
  width: auto;
}
.cid-sCS2qiuMUI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCS2qiuMUI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCS2qiuMUI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCS2qiuMUI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCS2qiuMUI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCS2qiuMUI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCS2qiuMUI .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: 55%;
}
.cid-sCS2qiuMUI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCS2qiuMUI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCS2qiuMUI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCS2qiuMUI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCS2qiuMUI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCS2qiuMUI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCS2qiuMUI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCS2qiuMUI .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: 55%;
  }
  .cid-sCS2qiuMUI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCS2qiuMUI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCS2qiuMUI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCS2qiuMUI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCS2qiuMUI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCS2qiuMUI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCS2qiuMUI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCS2qiuMUI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCS2qiuMUI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCS2qiuMUI .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCS2qiuMUI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCS2qiuMUI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCS2qiuMUI .dropdown-item.active,
.cid-sCS2qiuMUI .dropdown-item:active {
  background-color: transparent;
}
.cid-sCS2qiuMUI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCS2qiuMUI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCS2qiuMUI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCS2qiuMUI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCS2qiuMUI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCS2qiuMUI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCS2qiuMUI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCS2qiuMUI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCS2qiuMUI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCS2qiuMUI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCS2qiuMUI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCS2qiuMUI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCS2qiuMUI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCS2qiuMUI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCS2qiuMUI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCS2qiuMUI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCS2qiuMUI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCS2qiuMUI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCS2qiuMUI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCS2qiuMUI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCS2qiuMUI .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-sCS2qiuMUI .navbar {
    height: 77px;
  }
  .cid-sCS2qiuMUI .navbar.opened {
    height: auto;
  }
  .cid-sCS2qiuMUI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCS2qiTBIr {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCS2qiTBIr .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCS2qiTBIr .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCS2qiTBIr .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCS2qiTBIr .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCS2qiTBIr .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCS2qiTBIr .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCS2qiTBIr .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCS2qiTBIr .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCS2qiTBIr .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCS2qiTBIr .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCS2qiTBIr .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCS2qiTBIr .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCS2qiTBIr .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCS2qiTBIr .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCS2qiTBIr .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCSld2Ha6J {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/couponpage-headerimage-1680x350.jpg");
}
.cid-sCSld2Ha6J .mbr-section-title {
  color: #f47e45;
}
.cid-sCSld3cuIx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSld3cuIx .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSld3cuIx .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSld3cuIx .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSld3cuIx .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSld3cuIx .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSld3cuIx .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSld424Be {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCSld4j5ds {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCSld4j5ds nav.navbar {
  position: fixed;
}
.cid-sCSld4j5ds .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-sCSld4j5ds .dropdown-menu {
  padding: 0;
}
.cid-sCSld4j5ds .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCSld4j5ds .dropdown-item:hover,
.cid-sCSld4j5ds .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCSld4j5ds .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCSld4j5ds .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCSld4j5ds .nav-link {
  position: relative;
}
.cid-sCSld4j5ds .container {
  display: flex;
  margin: auto;
}
.cid-sCSld4j5ds .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCSld4j5ds .navbar-caption {
  padding-right: 4rem;
}
.cid-sCSld4j5ds .dropdown-menu,
.cid-sCSld4j5ds .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCSld4j5ds .nav-item:focus,
.cid-sCSld4j5ds .nav-link:focus {
  outline: none;
}
.cid-sCSld4j5ds .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCSld4j5ds .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCSld4j5ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCSld4j5ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCSld4j5ds .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCSld4j5ds .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCSld4j5ds .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCSld4j5ds .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCSld4j5ds .navbar.opened {
  transition: all .3s;
}
.cid-sCSld4j5ds .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCSld4j5ds .navbar .navbar-logo img {
  width: auto;
}
.cid-sCSld4j5ds .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCSld4j5ds .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCSld4j5ds .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCSld4j5ds .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCSld4j5ds .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCSld4j5ds .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCSld4j5ds .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: 55%;
}
.cid-sCSld4j5ds .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCSld4j5ds .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCSld4j5ds .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCSld4j5ds .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCSld4j5ds .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCSld4j5ds .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCSld4j5ds .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCSld4j5ds .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: 55%;
  }
  .cid-sCSld4j5ds .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCSld4j5ds .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCSld4j5ds .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCSld4j5ds .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCSld4j5ds .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCSld4j5ds .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCSld4j5ds .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCSld4j5ds .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCSld4j5ds .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCSld4j5ds .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCSld4j5ds .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCSld4j5ds .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCSld4j5ds .dropdown-item.active,
.cid-sCSld4j5ds .dropdown-item:active {
  background-color: transparent;
}
.cid-sCSld4j5ds .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCSld4j5ds .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCSld4j5ds .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCSld4j5ds .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCSld4j5ds .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCSld4j5ds .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCSld4j5ds ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCSld4j5ds .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCSld4j5ds button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCSld4j5ds button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCSld4j5ds button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCSld4j5ds button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCSld4j5ds button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCSld4j5ds button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCSld4j5ds nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCSld4j5ds nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCSld4j5ds nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCSld4j5ds nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCSld4j5ds .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCSld4j5ds a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCSld4j5ds .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-sCSld4j5ds .navbar {
    height: 77px;
  }
  .cid-sCSld4j5ds .navbar.opened {
    height: auto;
  }
  .cid-sCSld4j5ds .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCSld4M922 {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCSld4M922 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCSld4M922 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCSld4M922 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCSld4M922 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCSld4M922 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCSld4M922 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCSld4M922 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCSld4M922 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCSld4M922 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCSld4M922 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCSld4M922 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCSld4M922 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCSld4M922 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCSld4M922 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCSld4M922 .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCSmhC43w9 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fancybanner4-1680x350.jpg");
}
.cid-sCSmhC43w9 .mbr-section-title {
  color: #f47e45;
}
.cid-sCSmhCHdBT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .cid-sCSmhCHdBT .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-sCSmhCHdBT .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sCSmhCHdBT .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-sCSmhCHdBT .card-wrapper {
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-sCSmhCHdBT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sCSmhCHdBT .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sCSmhDCcvb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCSmhDXEVE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCSmhDXEVE nav.navbar {
  position: fixed;
}
.cid-sCSmhDXEVE .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-sCSmhDXEVE .dropdown-menu {
  padding: 0;
}
.cid-sCSmhDXEVE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCSmhDXEVE .dropdown-item:hover,
.cid-sCSmhDXEVE .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCSmhDXEVE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCSmhDXEVE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCSmhDXEVE .nav-link {
  position: relative;
}
.cid-sCSmhDXEVE .container {
  display: flex;
  margin: auto;
}
.cid-sCSmhDXEVE .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCSmhDXEVE .navbar-caption {
  padding-right: 4rem;
}
.cid-sCSmhDXEVE .dropdown-menu,
.cid-sCSmhDXEVE .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCSmhDXEVE .nav-item:focus,
.cid-sCSmhDXEVE .nav-link:focus {
  outline: none;
}
.cid-sCSmhDXEVE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCSmhDXEVE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCSmhDXEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCSmhDXEVE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCSmhDXEVE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCSmhDXEVE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCSmhDXEVE .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCSmhDXEVE .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCSmhDXEVE .navbar.opened {
  transition: all .3s;
}
.cid-sCSmhDXEVE .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCSmhDXEVE .navbar .navbar-logo img {
  width: auto;
}
.cid-sCSmhDXEVE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCSmhDXEVE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCSmhDXEVE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCSmhDXEVE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCSmhDXEVE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCSmhDXEVE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCSmhDXEVE .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: 55%;
}
.cid-sCSmhDXEVE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCSmhDXEVE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCSmhDXEVE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCSmhDXEVE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCSmhDXEVE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCSmhDXEVE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCSmhDXEVE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCSmhDXEVE .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: 55%;
  }
  .cid-sCSmhDXEVE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCSmhDXEVE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCSmhDXEVE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCSmhDXEVE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCSmhDXEVE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCSmhDXEVE .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCSmhDXEVE .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCSmhDXEVE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCSmhDXEVE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCSmhDXEVE .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCSmhDXEVE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCSmhDXEVE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCSmhDXEVE .dropdown-item.active,
.cid-sCSmhDXEVE .dropdown-item:active {
  background-color: transparent;
}
.cid-sCSmhDXEVE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCSmhDXEVE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCSmhDXEVE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCSmhDXEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCSmhDXEVE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCSmhDXEVE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCSmhDXEVE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCSmhDXEVE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCSmhDXEVE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCSmhDXEVE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCSmhDXEVE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCSmhDXEVE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCSmhDXEVE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCSmhDXEVE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCSmhDXEVE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCSmhDXEVE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCSmhDXEVE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCSmhDXEVE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCSmhDXEVE .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCSmhDXEVE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCSmhDXEVE .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-sCSmhDXEVE .navbar {
    height: 77px;
  }
  .cid-sCSmhDXEVE .navbar.opened {
    height: auto;
  }
  .cid-sCSmhDXEVE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCSmhEpjbV {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCSmhEpjbV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCSmhEpjbV .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCSmhEpjbV .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCSmhEpjbV .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCSmhEpjbV .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCSmhEpjbV .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCSmhEpjbV .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCSmhEpjbV .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCSmhEpjbV .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCSmhEpjbV .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCSmhEpjbV .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCSmhEpjbV .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCSmhEpjbV .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCSmhEpjbV .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCSmhEpjbV .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sCY31KtYlf {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sCY31KtYlf .mbr-section-title {
  color: #f47e45;
}
.cid-sCY31LGgQd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sCY31LGgQd nav.navbar {
  position: fixed;
}
.cid-sCY31LGgQd .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-sCY31LGgQd .dropdown-menu {
  padding: 0;
}
.cid-sCY31LGgQd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCY31LGgQd .dropdown-item:hover,
.cid-sCY31LGgQd .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-sCY31LGgQd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-sCY31LGgQd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sCY31LGgQd .nav-link {
  position: relative;
}
.cid-sCY31LGgQd .container {
  display: flex;
  margin: auto;
}
.cid-sCY31LGgQd .iconfont-wrapper {
  color: #663332 !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCY31LGgQd .navbar-caption {
  padding-right: 4rem;
}
.cid-sCY31LGgQd .dropdown-menu,
.cid-sCY31LGgQd .navbar.opened {
  background: #f47e45 !important;
}
.cid-sCY31LGgQd .nav-item:focus,
.cid-sCY31LGgQd .nav-link:focus {
  outline: none;
}
.cid-sCY31LGgQd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sCY31LGgQd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCY31LGgQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCY31LGgQd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sCY31LGgQd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCY31LGgQd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCY31LGgQd .navbar {
  min-height: 77px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  background: #f47e45;
}
.cid-sCY31LGgQd .navbar:not(.navbar-short) {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sCY31LGgQd .navbar.opened {
  transition: all .3s;
}
.cid-sCY31LGgQd .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-sCY31LGgQd .navbar .navbar-logo img {
  width: auto;
}
.cid-sCY31LGgQd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sCY31LGgQd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCY31LGgQd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sCY31LGgQd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-sCY31LGgQd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCY31LGgQd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCY31LGgQd .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: 55%;
}
.cid-sCY31LGgQd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCY31LGgQd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCY31LGgQd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCY31LGgQd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCY31LGgQd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCY31LGgQd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCY31LGgQd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCY31LGgQd .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: 55%;
  }
  .cid-sCY31LGgQd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCY31LGgQd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCY31LGgQd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCY31LGgQd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sCY31LGgQd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sCY31LGgQd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCY31LGgQd .navbar.navbar-short {
  min-height: 60px;
}
.cid-sCY31LGgQd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCY31LGgQd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCY31LGgQd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCY31LGgQd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCY31LGgQd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCY31LGgQd .dropdown-item.active,
.cid-sCY31LGgQd .dropdown-item:active {
  background-color: transparent;
}
.cid-sCY31LGgQd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCY31LGgQd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCY31LGgQd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCY31LGgQd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f47e45;
}
.cid-sCY31LGgQd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCY31LGgQd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCY31LGgQd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sCY31LGgQd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sCY31LGgQd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-sCY31LGgQd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: currentColor;
}
.cid-sCY31LGgQd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCY31LGgQd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCY31LGgQd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCY31LGgQd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCY31LGgQd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCY31LGgQd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCY31LGgQd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCY31LGgQd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCY31LGgQd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCY31LGgQd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sCY31LGgQd .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-sCY31LGgQd .navbar {
    height: 77px;
  }
  .cid-sCY31LGgQd .navbar.opened {
    height: auto;
  }
  .cid-sCY31LGgQd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCY3sND0Dw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCY3sND0Dw .item {
  padding-bottom: 2rem;
}
.cid-sCY3sND0Dw .item-wrapper {
  position: relative;
}
.cid-sCY3sND0Dw .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCY3sND0Dw .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCY3sND0Dw .carousel-control,
.cid-sCY3sND0Dw .close {
  background: #1b1b1b;
}
.cid-sCY3sND0Dw .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCY3sND0Dw .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCY3sND0Dw .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCY3sND0Dw .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCY3sND0Dw .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCY3sND0Dw .close::before {
  content: '\e91a';
}
.cid-sCY3sND0Dw .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCY3sND0Dw .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCY3sND0Dw .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCY3sND0Dw .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCY3sND0Dw .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCY3sND0Dw .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCY3sND0Dw .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCY3sND0Dw .carousel-indicators li.active,
.cid-sCY3sND0Dw .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCY3sND0Dw .carousel-indicators li::after,
.cid-sCY3sND0Dw .carousel-indicators li::before {
  content: none;
}
.cid-sCY3sND0Dw .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCY3sND0Dw .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCY3sND0Dw .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCY3sND0Dw .carousel-indicators {
    display: none;
  }
}
.cid-sCY3sND0Dw .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCY3sND0Dw .carousel-inner > .active {
  display: block;
}
.cid-sCY3sND0Dw .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCY3sND0Dw .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCY3sND0Dw .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCY3sND0Dw .carousel-control,
  .cid-sCY3sND0Dw .carousel-indicators,
  .cid-sCY3sND0Dw .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCY3sND0Dw .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCY3sND0Dw .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCY3sND0Dw .carousel-indicators .active,
.cid-sCY3sND0Dw .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCY3sND0Dw .carousel-indicators .active {
  background: #fff;
}
.cid-sCY3sND0Dw .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCY3sND0Dw .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCY3sND0Dw .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCY3sND0Dw .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCY3sND0Dw .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCY3sND0Dw .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCY3sND0Dw .carousel {
  width: 100%;
}
.cid-sCY3sND0Dw .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCY3sND0Dw .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCY3sND0Dw .modal.fade .modal-dialog,
.cid-sCY3sND0Dw .modal.in .modal-dialog {
  transform: none;
}
.cid-sCY3sND0Dw .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCY3sND0Dw H6 {
  text-align: center;
}
.cid-sCY3sND0DQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sCY3sND0DQ .item {
  padding-bottom: 2rem;
}
.cid-sCY3sND0DQ .item-wrapper {
  position: relative;
}
.cid-sCY3sND0DQ .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-sCY3sND0DQ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-sCY3sND0DQ .carousel-control,
.cid-sCY3sND0DQ .close {
  background: #1b1b1b;
}
.cid-sCY3sND0DQ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sCY3sND0DQ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-sCY3sND0DQ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sCY3sND0DQ .carousel-control-next span {
  margin-left: 5px;
}
.cid-sCY3sND0DQ .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sCY3sND0DQ .close::before {
  content: '\e91a';
}
.cid-sCY3sND0DQ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sCY3sND0DQ .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sCY3sND0DQ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCY3sND0DQ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sCY3sND0DQ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sCY3sND0DQ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-sCY3sND0DQ .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sCY3sND0DQ .carousel-indicators li.active,
.cid-sCY3sND0DQ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sCY3sND0DQ .carousel-indicators li::after,
.cid-sCY3sND0DQ .carousel-indicators li::before {
  content: none;
}
.cid-sCY3sND0DQ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sCY3sND0DQ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-sCY3sND0DQ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sCY3sND0DQ .carousel-indicators {
    display: none;
  }
}
.cid-sCY3sND0DQ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sCY3sND0DQ .carousel-inner > .active {
  display: block;
}
.cid-sCY3sND0DQ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sCY3sND0DQ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sCY3sND0DQ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sCY3sND0DQ .carousel-control,
  .cid-sCY3sND0DQ .carousel-indicators,
  .cid-sCY3sND0DQ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sCY3sND0DQ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sCY3sND0DQ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sCY3sND0DQ .carousel-indicators .active,
.cid-sCY3sND0DQ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-sCY3sND0DQ .carousel-indicators .active {
  background: #fff;
}
.cid-sCY3sND0DQ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sCY3sND0DQ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sCY3sND0DQ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sCY3sND0DQ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sCY3sND0DQ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sCY3sND0DQ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-sCY3sND0DQ .carousel {
  width: 100%;
}
.cid-sCY3sND0DQ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-sCY3sND0DQ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-sCY3sND0DQ .modal.fade .modal-dialog,
.cid-sCY3sND0DQ .modal.in .modal-dialog {
  transform: none;
}
.cid-sCY3sND0DQ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-sCY3sND0DQ H6 {
  text-align: center;
}
.cid-sCY31OQuiZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sCY31P57PR {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/catfood-footer3-1918x460.png");
}
.cid-sCY31P57PR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sCY31P57PR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sCY31P57PR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sCY31P57PR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sCY31P57PR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sCY31P57PR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-sCY31P57PR .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sCY31P57PR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sCY31P57PR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sCY31P57PR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sCY31P57PR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sCY31P57PR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sCY31P57PR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sCY31P57PR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-sCY31P57PR .media-container-row .mbr-text {
  text-align: center;
  color: #ffffff;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	border-radius:80px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
    background-image: url("../../../assets/images/WhatsApp.png");
}

.my-float{
	margin-top:16px;
}

.shop-head {
	color: rgb(63, 63, 63); text-transform: uppercase; letter-spacing: 1px; font-size: 22px; margin-bottom: 25px;
}
.home-shop-head {
	color: rgb(63, 63, 63); text-transform: uppercase; letter-spacing: 1px; font-size: 22px;
}
@media all and (max-width:575.98px)
{
.shop-head {
	font-size: 18px;
}
.home-shop-head {
	font-size: 18px;
}
.rel-title {
	font-size: 18px;
}
}
.box-items {
	margin: 0px -5px;
}
.pt-5 {
	padding-top: 0rem !important;
}
.pb-5 {
	padding-bottom: 0rem !important;
}
.pb-50 {
	padding-bottom: 50px !important;
}
[class~='gcol'] {
	margin-bottom: 10px !important;
}
[class*='gcol-'] {
	margin-bottom: 10px !important;
}
[class*='gcol_'] {
	margin-bottom: 10px !important;
}

[class~='gridflex'] {
	margin: 0px -0.5rem; flex-flow:row wrap; display: flex; box-sizing: border-box;
}
[class*='gridflex-'] {
	margin: 0px -0.5rem; flex-flow:row wrap; display: flex; box-sizing: border-box;
}
[class*='gridflex_'] {
	margin: 0px -0.5rem; flex-flow:row wrap; display: flex; box-sizing: border-box;
}
[class~='gcol'] {
	padding: 0px 0.5rem 1rem; max-width: 100%; box-sizing: border-box;
}
[class*='gcol-'] {
	padding: 0px 0.5rem 1rem; max-width: 100%; box-sizing: border-box;
}
[class*='gcol_'] {
	padding: 0px 0.5rem 1rem; max-width: 100%; box-sizing: border-box;
}
[class~='gcol'] {
	flex:1 1 0%;
}
[class*='gcol_'] {
	flex:1 1 0%;
}
[class*='gcol-'] {
	flex:0 0 auto;
}
[class~='gridflex'][class~='gcol'] {
	margin: 0px; padding: 0px;
}
[class~='gridflex'][class*='gcol-'] {
	margin: 0px; padding: 0px;
}
[class~='gridflex'][class*='gcol_'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex-'][class~='gcol'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex-'][class*='gcol-'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex-'][class*='gcol_'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex_'][class~='gcol'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex_'][class*='gcol-'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex_'][class*='gcol_'] {
	margin: 0px; padding: 0px;
}
[class*='gridflex-'][class*='-noGutter'] {
	margin: 0px;
}
[class*='gridflex-'][class*='-noGutter'] > [class~='gcol'] {
	padding: 0px;
}
[class*='gridflex-'][class*='-noGutter'] > [class*='gcol-'] {
	padding: 0px;
}
[class*='gridflex-'][class*='-noWrap'] {
	flex-wrap: nowrap;
}
[class*='gridflex-'][class*='-center'] {
	justify-content: center;
}
[class*='gridflex-'][class*='-right'] {
	margin-left: auto; justify-content: flex-end; align-self: flex-end;
}
[class*='gridflex-'][class*='-top'] {
	align-items: flex-start;
}
[class*='gridflex-'][class*='-middle'] {
	align-items: center;
}
[class*='gridflex-'][class*='-bottom'] {
	align-items: flex-end;
}
[class*='gridflex-'][class*='-reverse'] {
	flex-direction: row-reverse;
}
[class*='gridflex-'][class*='-gcolumn'] {
	
}
[class*='gridflex-'][class*='-gcolumn'] > [class*='gcol-'] {
	flex-basis: auto;
}
[class*='gridflex-'][class*='-gcolumn-reverse'] {
	
}
[class*='gridflex-'][class*='-spaceBetween'] {
	justify-content: space-between;
}
[class*='gridflex-'][class*='-spaceAround'] {
	justify-content: space-around;
}
[class*='gridflex-'][class*='-equalHeight'] > [class~='gcol'] {
	align-self: stretch;
}
[class*='gridflex-'][class*='-equalHeight'] > [class*='gcol-'] {
	align-self: stretch;
}
[class*='gridflex-'][class*='-equalHeight'] > [class*='gcol_'] {
	align-self: stretch;
}
[class*='gridflex-'][class*='-equalHeight'] > [class~='gcol'] > * {
	height: 100%;
}
[class*='gridflex-'][class*='-equalHeight'] > [class*='gcol-'] > * {
	height: 100%;
}
[class*='gridflex-'][class*='-equalHeight'] > [class*='gcol_'] > * {
	height: 100%;
}
[class*='gridflex-'][class*='-noBottom'] > [class~='gcol'] {
	padding-bottom: 0px;
}
[class*='gridflex-'][class*='-noBottom'] > [class*='gcol-'] {
	padding-bottom: 0px;
}
[class*='gridflex-'][class*='-noBottom'] > [class*='gcol_'] {
	padding-bottom: 0px;
}
[class*='gcol-'][class*='-top'] {
	align-self: flex-start;
}
[class*='gcol-'][class*='-middle'] {
	align-self: center;
}
[class*='gcol-'][class*='-bottom'] {
	align-self: flex-end;
}
[class*='gcol-'][class*='-first'] {
	order: -1;
}
[class*='gcol-'][class*='-last'] {
	order: 1;
}
[class*='gridflex-1'] > [class~='gcol'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='gridflex-1'] > [class*='gcol-'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='gridflex-1'] > [class*='gcol_'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='gridflex-2'] > [class~='gcol'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='gridflex-2'] > [class*='gcol-'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='gridflex-2'] > [class*='gcol_'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='gridflex-3'] > [class~='gcol'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='gridflex-3'] > [class*='gcol-'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='gridflex-3'] > [class*='gcol_'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='gridflex-4'] > [class~='gcol'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='gridflex-4'] > [class*='gcol-'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='gridflex-4'] > [class*='gcol_'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='gridflex-5'] > [class~='gcol'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='gridflex-5'] > [class*='gcol-'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='gridflex-5'] > [class*='gcol_'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='gridflex-6'] > [class~='gcol'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='gridflex-6'] > [class*='gcol-'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='gridflex-6'] > [class*='gcol_'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='gridflex-7'] > [class~='gcol'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='gridflex-7'] > [class*='gcol-'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='gridflex-7'] > [class*='gcol_'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='gridflex-8'] > [class~='gcol'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='gridflex-8'] > [class*='gcol-'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='gridflex-8'] > [class*='gcol_'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='gridflex-9'] > [class~='gcol'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='gridflex-9'] > [class*='gcol-'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='gridflex-9'] > [class*='gcol_'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='gridflex-10'] > [class~='gcol'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='gridflex-10'] > [class*='gcol-'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='gridflex-10'] > [class*='gcol_'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='gridflex-11'] > [class~='gcol'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='gridflex-11'] > [class*='gcol-'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='gridflex-11'] > [class*='gcol_'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='gridflex-12'] > [class~='gcol'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='gridflex-12'] > [class*='gcol-'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='gridflex-12'] > [class*='gcol_'] {
	max-width: 8.33%; flex-basis: 8.33%;
}

.mobile-collapse-7 {
	width: 100%;
	padding: 0px 7px;
}
.mb-4 {
	margin-bottom: 1.5rem !important;
}
.item-grid .ld-spin {
	font-size: 200%;
}
.item-grid {
	background: 0px 0px rgb(255, 255, 255); margin: 0px 5px; height: 100%; overflow: hidden; position: relative;
}
.item-grid a {
	color: rgb(63, 63, 63); text-decoration: none; display: block;
}
.item-grid:hover a {
	text-decoration: none;
}
.item-grid a:hover {
	text-decoration: none;
}
.item-hover .item-grid {
	border: 1px solid rgb(238, 238, 238); border-image: none;
}
.item-grid .image {
	text-align: center; overflow: hidden; position: relative;
}
.item-grid .image img {
	transition:0.3s ease-in-out; width: 70%;
}
.item-grid:hover .image img {
	transform: scale(1.1);
}
.item-grid {
	background: 0px 0px rgb(255, 255, 255); margin: 0px 5px; height: 100%; overflow: hidden; position: relative;
}
.item-grid a {
	color: rgb(63, 63, 63); text-decoration: none; display: block;
}
.item-grid:hover a {
	text-decoration: none;
}
.item-grid a:hover {
	text-decoration: none;
}
.item-hover .item-grid {
	border: 1px solid rgb(238, 238, 238); border-image: none;
}
.item-grid .image {
	text-align: center; overflow: hidden; position: relative;
}
.item-grid .image img {
	transition:0.3s ease-in-out; width: 70%;
}
.item-grid:hover .image img {
	transform: scale(1.1);
}
.item-grid .image.in-cart {
	opacity: 0.4; background-color: white; -moz-opacity: 0.4; -khtml-opacity: 0.4;
}
.data-item a.in-cart {
	opacity: 0.4; background-color: white; -moz-opacity: 0.4; -khtml-opacity: 0.4;
}
.over-in-cart {
	background: rgb(255, 255, 102); padding: 7px 10px; top: 25%; text-align: center; line-height: 120%; font-size: 11px; position: absolute; z-index: 999; max-width: 80%;
}
.over-in-cart strong {
	color: rgb(204, 0, 0);
}
.item-grid .data-item {
	padding: 0px; transition:0.3s; text-align: center; position: relative; background-color: rgb(255, 255, 255);
}
.item-grid:hover .data-item {
	
}
.item-grid .data-item .item-action {
	
}
.item-grid .data-item h4 {
	margin: 0px 0px 8px; padding: 0px 8px; height: 32px; color: rgb(63, 63, 63); line-height: 120%; overflow: hidden; font-size: 13px; font-weight: bold;
}
.item-grid .price {
	height: 57px;
}
.item-grid .price span {
	margin: 0px 0px 3px; height: 13px; color: rgb(153, 153, 153); line-height: 13px; font-size: 10px; display: block;
}
.item-grid .price .number {
	margin: 0px; color: rgb(222, 22, 48); line-height: 100%; font-size: 12px; font-weight: normal;
}
.item-grid .price strong {
	color: rgb(51, 102, 153); line-height: 12px; font-size: 12px; margin-top: 5px; display: block;
}
.item-action button {
	background: rgb(255, 255, 255) !important; font-weight: bold; border-top-color: rgb(235, 235, 235) !important; border-top-width: 1px !important; border-top-style: solid !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important;
}
.move-handle {
	background: rgba(0, 0, 0, 0.4); padding: 0px; top: 0px; width: 24px; text-align: center; right: 0px; color: rgb(255, 255, 255); font-size: 90%; position: absolute; z-index: 200; cursor: move;
}
.move-handle i {
	margin: 0px !important;
}
.item-discount {
	padding: 15px 0px 0px; border-radius: 50%; top: 8px; width: 45px; height: 45px; text-align: center; right: 8px; color: rgb(255, 255, 255); line-height: 95%; position: absolute; z-index: 999; background-color: rgb(243, 2, 64);
}
.item-discount > strong {
	font-size: 14px; font-weight: normal;
}
.item-discount > em {
	font-size: 10px;
}
.item-discount > span {
	letter-spacing: 0.5px; font-size: 11px; display: block;
}
.image [class*='label-'] {
	padding: 5px 8px 4px; left: 7px; top: 7px; text-align: center; line-height: 10px; font-size: 10px; font-weight: 600; position: absolute; z-index: 2; min-width: 50px;
}
.image [class*='label-'] + [class*='label-'] {
	top: 31px;
}
.image [class*='label-'] + [class*='label-'] + [class*='label-'] {
	top: 55px;
}
.image [class*='label-'] + [class*='label-'] + [class*='label-'] + [class*='label-'] {
	top: 79px;
}
.image [class*='label-'] + [class*='label-'] + [class*='label-'] + [class*='label-'] + [class*='label-'] {
	top: 103px;
}
.image .label-pre-order {
	color: rgb(255, 255, 255); background-color: rgb(44, 11, 92);
}
.image .label-outstock {
	color: rgb(255, 255, 255); background-color: rgb(214, 107, 0);
}
.image .label-new {
	color: rgb(255, 255, 255); background-color: rgb(25, 143, 127);
}
.image .label-online-price {
	color: rgb(255, 255, 255); background-color: rgb(0, 60, 112);
}
.image .label-new-offer {
	color: rgb(255, 255, 255); background-color: rgb(174, 35, 42);
}
.swipe-item {
	list-style: none; margin: -10px 0px 0px; padding: 10px 0px; overflow: hidden; display: flex; -ms-overflow-x: auto; -ms-overflow-style: -ms-autohiding-scrollbar; justify-content: flex-start; align-items: stretch; -webkit-overflow-scrolling: touch; -webkit-box-align: stretch; -webkit-box-pack: justify;
}
.swipe-item .item-grid {
	margin: 0px !important;
}
.swipe-item .gcol {
	margin: 0px !important; padding: 0px 5px !important; max-width: 20% !important;
}
.wrap-image {
	display: block;
}
.wrap-image .image {
	display: flex; justify-content: center; align-items: center;
}
media all and (max-width:80em)
{
[class*='_lg-1'] > [class~='gcol'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_lg-1'] > [class*='gcol-'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_lg-1'] > [class*='gcol_'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_lg-2'] > [class~='gcol'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_lg-2'] > [class*='gcol-'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_lg-2'] > [class*='gcol_'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_lg-3'] > [class~='gcol'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_lg-3'] > [class*='gcol-'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_lg-3'] > [class*='gcol_'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_lg-4'] > [class~='gcol'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_lg-4'] > [class*='gcol-'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_lg-4'] > [class*='gcol_'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_lg-5'] > [class~='gcol'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_lg-5'] > [class*='gcol-'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_lg-5'] > [class*='gcol_'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_lg-6'] > [class~='gcol'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_lg-6'] > [class*='gcol-'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_lg-6'] > [class*='gcol_'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_lg-7'] > [class~='gcol'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_lg-7'] > [class*='gcol-'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_lg-7'] > [class*='gcol_'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_lg-8'] > [class~='gcol'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_lg-8'] > [class*='gcol-'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_lg-8'] > [class*='gcol_'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_lg-9'] > [class~='gcol'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_lg-9'] > [class*='gcol-'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_lg-9'] > [class*='gcol_'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_lg-10'] > [class~='gcol'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_lg-10'] > [class*='gcol-'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_lg-10'] > [class*='gcol_'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_lg-11'] > [class~='gcol'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_lg-11'] > [class*='gcol-'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_lg-11'] > [class*='gcol_'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_lg-12'] > [class~='gcol'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_lg-12'] > [class*='gcol-'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_lg-12'] > [class*='gcol_'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
}
@media all and (max-width:64em)
{
[class*='_md-1'] > [class~='gcol'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_md-1'] > [class*='gcol-'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_md-1'] > [class*='gcol_'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_md-2'] > [class~='gcol'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_md-2'] > [class*='gcol-'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_md-2'] > [class*='gcol_'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_md-3'] > [class~='gcol'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_md-3'] > [class*='gcol-'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_md-3'] > [class*='gcol_'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_md-4'] > [class~='gcol'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_md-4'] > [class*='gcol-'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_md-4'] > [class*='gcol_'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_md-5'] > [class~='gcol'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_md-5'] > [class*='gcol-'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_md-5'] > [class*='gcol_'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_md-6'] > [class~='gcol'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_md-6'] > [class*='gcol-'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_md-6'] > [class*='gcol_'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_md-7'] > [class~='gcol'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_md-7'] > [class*='gcol-'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_md-7'] > [class*='gcol_'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_md-8'] > [class~='gcol'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_md-8'] > [class*='gcol-'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_md-8'] > [class*='gcol_'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_md-9'] > [class~='gcol'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_md-9'] > [class*='gcol-'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_md-9'] > [class*='gcol_'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_md-10'] > [class~='gcol'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_md-10'] > [class*='gcol-'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_md-10'] > [class*='gcol_'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_md-11'] > [class~='gcol'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_md-11'] > [class*='gcol-'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_md-11'] > [class*='gcol_'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_md-12'] > [class~='gcol'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_md-12'] > [class*='gcol-'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_md-12'] > [class*='gcol_'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
}
@media all and (max-width:48em)
{
[class*='_sm-1'] > [class~='gcol'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_sm-1'] > [class*='gcol-'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_sm-1'] > [class*='gcol_'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_sm-2'] > [class~='gcol'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_sm-2'] > [class*='gcol-'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_sm-2'] > [class*='gcol_'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_sm-3'] > [class~='gcol'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_sm-3'] > [class*='gcol-'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_sm-3'] > [class*='gcol_'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_sm-4'] > [class~='gcol'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_sm-4'] > [class*='gcol-'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_sm-4'] > [class*='gcol_'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_sm-5'] > [class~='gcol'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_sm-5'] > [class*='gcol-'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_sm-5'] > [class*='gcol_'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_sm-6'] > [class~='gcol'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_sm-6'] > [class*='gcol-'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_sm-6'] > [class*='gcol_'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_sm-7'] > [class~='gcol'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_sm-7'] > [class*='gcol-'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_sm-7'] > [class*='gcol_'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_sm-8'] > [class~='gcol'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_sm-8'] > [class*='gcol-'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_sm-8'] > [class*='gcol_'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_sm-9'] > [class~='gcol'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_sm-9'] > [class*='gcol-'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_sm-9'] > [class*='gcol_'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_sm-10'] > [class~='gcol'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_sm-10'] > [class*='gcol-'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_sm-10'] > [class*='gcol_'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_sm-11'] > [class~='gcol'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_sm-11'] > [class*='gcol-'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_sm-11'] > [class*='gcol_'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_sm-12'] > [class~='gcol'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_sm-12'] > [class*='gcol-'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_sm-12'] > [class*='gcol_'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
}
@media all and (max-width:36em)
{
[class*='_xs-1'] > [class~='gcol'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_xs-1'] > [class*='gcol-'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_xs-1'] > [class*='gcol_'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='_xs-2'] > [class~='gcol'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_xs-2'] > [class*='gcol-'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_xs-2'] > [class*='gcol_'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='_xs-3'] > [class~='gcol'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_xs-3'] > [class*='gcol-'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_xs-3'] > [class*='gcol_'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='_xs-4'] > [class~='gcol'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_xs-4'] > [class*='gcol-'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_xs-4'] > [class*='gcol_'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='_xs-5'] > [class~='gcol'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_xs-5'] > [class*='gcol-'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_xs-5'] > [class*='gcol_'] {
	max-width: 20%; flex-basis: 20%;
}
[class*='_xs-6'] > [class~='gcol'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_xs-6'] > [class*='gcol-'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_xs-6'] > [class*='gcol_'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='_xs-7'] > [class~='gcol'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_xs-7'] > [class*='gcol-'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_xs-7'] > [class*='gcol_'] {
	max-width: 14.28%; flex-basis: 14.28%;
}
[class*='_xs-8'] > [class~='gcol'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_xs-8'] > [class*='gcol-'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_xs-8'] > [class*='gcol_'] {
	max-width: 12.5%; flex-basis: 12.5%;
}
[class*='_xs-9'] > [class~='gcol'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_xs-9'] > [class*='gcol-'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_xs-9'] > [class*='gcol_'] {
	max-width: 11.11%; flex-basis: 11.11%;
}
[class*='_xs-10'] > [class~='gcol'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_xs-10'] > [class*='gcol-'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_xs-10'] > [class*='gcol_'] {
	max-width: 10%; flex-basis: 10%;
}
[class*='_xs-11'] > [class~='gcol'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_xs-11'] > [class*='gcol-'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_xs-11'] > [class*='gcol_'] {
	max-width: 9.09%; flex-basis: 9.09%;
}
[class*='_xs-12'] > [class~='gcol'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_xs-12'] > [class*='gcol-'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='_xs-12'] > [class*='gcol_'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
}
[class~='gridflex'] > [class*='gcol-1'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='gridflex-'] > [class*='gcol-1'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class*='gridflex_'] > [class*='gcol-1'] {
	max-width: 8.33%; flex-basis: 8.33%;
}
[class~='gridflex'] > [class*='gcol-2'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='gridflex-'] > [class*='gcol-2'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class*='gridflex_'] > [class*='gcol-2'] {
	max-width: 16.66%; flex-basis: 16.66%;
}
[class~='gridflex'] > [class*='gcol-3'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='gridflex-'] > [class*='gcol-3'] {
	max-width: 25%; flex-basis: 25%;
}
[class*='gridflex_'] > [class*='gcol-3'] {
	max-width: 25%; flex-basis: 25%;
}
[class~='gridflex'] > [class*='gcol-4'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='gridflex-'] > [class*='gcol-4'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class*='gridflex_'] > [class*='gcol-4'] {
	max-width: 33.33%; flex-basis: 33.33%;
}
[class~='gridflex'] > [class*='gcol-5'] {
	max-width: 41.66%; flex-basis: 41.66%;
}
[class*='gridflex-'] > [class*='gcol-5'] {
	max-width: 41.66%; flex-basis: 41.66%;
}
[class*='gridflex_'] > [class*='gcol-5'] {
	max-width: 41.66%; flex-basis: 41.66%;
}
[class~='gridflex'] > [class*='gcol-6'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='gridflex-'] > [class*='gcol-6'] {
	max-width: 50%; flex-basis: 50%;
}
[class*='gridflex_'] > [class*='gcol-6'] {
	max-width: 50%; flex-basis: 50%;
}
[class~='gridflex'] > [class*='gcol-7'] {
	max-width: 58.33%; flex-basis: 58.33%;
}
[class*='gridflex-'] > [class*='gcol-7'] {
	max-width: 58.33%; flex-basis: 58.33%;
}
[class*='gridflex_'] > [class*='gcol-7'] {
	max-width: 58.33%; flex-basis: 58.33%;
}
[class~='gridflex'] > [class*='gcol-8'] {
	max-width: 66.66%; flex-basis: 66.66%;
}
[class*='gridflex-'] > [class*='gcol-8'] {
	max-width: 66.66%; flex-basis: 66.66%;
}
[class*='gridflex_'] > [class*='gcol-8'] {
	max-width: 66.66%; flex-basis: 66.66%;
}
[class~='gridflex'] > [class*='gcol-9'] {
	max-width: 75%; flex-basis: 75%;
}
[class*='gridflex-'] > [class*='gcol-9'] {
	max-width: 75%; flex-basis: 75%;
}
[class*='gridflex_'] > [class*='gcol-9'] {
	max-width: 75%; flex-basis: 75%;
}
[class~='gridflex'] > [class*='gcol-10'] {
	max-width: 83.33%; flex-basis: 83.33%;
}
[class*='gridflex-'] > [class*='gcol-10'] {
	max-width: 83.33%; flex-basis: 83.33%;
}
[class*='gridflex_'] > [class*='gcol-10'] {
	max-width: 83.33%; flex-basis: 83.33%;
}
[class~='gridflex'] > [class*='gcol-11'] {
	max-width: 91.66%; flex-basis: 91.66%;
}
[class*='gridflex-'] > [class*='gcol-11'] {
	max-width: 91.66%; flex-basis: 91.66%;
}
[class*='gridflex_'] > [class*='gcol-11'] {
	max-width: 91.66%; flex-basis: 91.66%;
}
[class~='gridflex'] > [class*='gcol-12'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='gridflex-'] > [class*='gcol-12'] {
	max-width: 100%; flex-basis: 100%;
}
[class*='gridflex_'] > [class*='gcol-12'] {
	max-width: 100%; flex-basis: 100%;
}
.fab {
	font-family: "Font Awesome 5 Brands";
}
.fal {
	font-family: "Font Awesome 5 Pro"; font-weight: 300;
}
.far {
	font-family: "Font Awesome 5 Pro"; font-weight: 400;
}
.fa {
	font-family: "Font Awesome 5 Pro"; font-weight: 900;
}
.fas {
	font-family: "Font Awesome 5 Pro"; font-weight: 900;
}
:root {
}
* {
	box-sizing: border-box;
}
*::before {
	box-sizing: border-box;
}
*::after {
	box-sizing: border-box;
}
.chosen-container {
	font-size: 13px; vertical-align: middle; display: inline-block; position: relative; -ms-user-select: none; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.chosen-container * {
	box-sizing: border-box;
}
.card-product {
	padding-top: 30px; padding-bottom: 50px; display: flex; position: relative; -ms-word-wrap: break-word; min-width: 0px; flex-direction: column; background-clip: border-box;
}

.card-columns .card {
	margin-bottom: 0.75rem;
}
@media all and (min-width:576px)
{
.card-columns {
	orphans: 1; widows: 1; column-count: 3; column-gap: 1.25rem; -moz-column-count: 3; -moz-column-gap: 1.25rem;
}
.card-columns .card {
	width: 100%; display: inline-block;
}
}
.global-wrap {
	background-color: rgb(240, 240, 240);
}
button {
	border-radius: 0px;
}
button:focus {
	outline: dotted 1px;
}
button {
	margin: 0px; line-height: inherit; font-family: inherit; font-size: inherit;
}
button {
	overflow: visible;
}
button {
	text-transform: none;
}
[role='button'] {
	cursor: pointer;
}
button {
	-webkit-appearance: button;
}
[type='button'] {
	-webkit-appearance: button;
}
[type='reset'] {
	-webkit-appearance: button;
}
[type='submit'] {
	-webkit-appearance: button;
}
button:not(:disabled) {
	cursor: pointer;
}
[type='button']:not(:disabled) {
	cursor: pointer;
}
input[type='button'].btn-block {
	width: 100%;
}
.submit-btn {
	padding-top: 10px;
}
input[type='submit'].btn-block {
	width: 100%;
}
.btn {
	border-radius: 2px !important; border: currentColor; border-image: none; font-size: 13px;
}
.btn-icon i.fa {
	margin-right: 5px;
}
.btn-icon i.fas {
	margin-right: 5px;
}
.btn-icon i.far {
	margin-right: 5px;
}
.btn-icon i.fal {
	margin-right: 5px;
}
.fa-shopping-cart::before {
	content: src="\assets\images\iconsc.png";
}
.btn-mt {
	padding: 0px !important; border-radius: 2px !important; border: 0px currentColor !important; border-image: none !important; text-align: center; letter-spacing: 0.5px; font-size: 13px; font-weight: 400; vertical-align: middle; display: inline-block; white-space: nowrap; -ms-user-select: none; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.btn-mt > span {
	padding: 10px 15px; transition:color 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out; display: block;
}
i.far.fa-sync-alt.fa-spin {
	margin-right: 0px !important;
}
.btn-mt {
	padding: 0px !important; border-radius: 2px !important; border: 0px currentColor !important; border-image: none !important; text-align: center; letter-spacing: 0.5px; font-size: 13px; font-weight: 400; vertical-align: middle; display: inline-block; white-space: nowrap; -ms-user-select: none; -webkit-user-select: none; -moz-user-select: none; user-select: none;
}
.btn-mt > span {
	padding: 10px 15px; transition:color 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out; display: block;
}
.item-action .btn-mt > span {
	padding: 10px 5px;
}
.btn-mt:hover > span {
	color: rgb(255, 255, 255); background-color: rgba(0, 0, 0, 0.1);
}
.btn-mt-lg > span {
	padding: 12px 15px; font-size: 14px; display: block;
}
.btn-mt-xlg > span {
	padding: 13px 20px 12px; letter-spacing: 0.5px; font-size: 16px; display: block;
}
.btn-mt-xxlg > span {
	padding: 18px 20px 16px; letter-spacing: 0.5px; font-size: 18px; display: block;
}
.btn-mt.disabled {
	cursor: not-allowed; opacity: 0.65; pointer-events: none; box-shadow: none;
}
[disabled].btn {
	cursor: not-allowed; opacity: 0.65; pointer-events: none; box-shadow: none;
}
.disabled-book {
	background: rgb(235, 235, 235); color: rgb(102, 102, 102); text-transform: uppercase; font-weight: 500; cursor: not-allowed; pointer-events: none; box-shadow: none;
}
.btn-add {
	color: rgb(255, 255, 255); background-color: rgb(36, 157, 61);
}
.btn-book {
	color: rgb(255, 255, 255); background-color: rgb(36, 157, 61);
}
.btn-front {
	background: 0px 0px rgb(226, 24, 55); border: currentColor; border-image: none; color: rgb(255, 255, 255); font-size: 13px;
}
.btn-front:hover {
	color: rgb(255, 255, 255);
}
.modal-user-box i.fas {
	margin-right: 5px;
}
.modal-user-box i.far {
	margin-right: 5px;
}


@media (min-width: 1200px) {

  .container {
    max-width: 1512px;
  }
}
.cid-sIVS6RVnps {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sIVS6RVnps .nav-tabs .nav-item.open .nav-link:focus,
.cid-sIVS6RVnps .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sIVS6RVnps .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #663332;
}
@media (max-width: 767px) {
  .cid-sIVS6RVnps .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-sIVS6RVnps .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-sIVS6RVnps .nav-tabs .nav-link:not(.active) {
  color: #f47e45;
}
.cid-sIVS6RVnps .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-sIVS6RVnps .nav-link,
.cid-sIVS6RVnps .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-sIVS6RVnps .nav-tabs .nav-link.active {
  color: #663332;
  border-bottom: 3px solid #663332;
}
.cid-sIVS6RVnps H4 {
  text-align: center;
}
.cid-sIVS6RVnps H3 {
  text-align: center;
}
.cid-sIVS6RVnps P {
  text-align: left;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}