body {
  font-family: Roboto;
}
.display-1 {
  font-family: 'Cormorant Upright', serif;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -2px;
}
.display-1 > .mbr-iconfont {
  font-size: 4.32rem;
}
.display-2 {
  font-family: 'Cormorant Upright', serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.08rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-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.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1.25rem 2.5rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #de0c08 !important;
}
.bg-success {
  background-color: #ffefbf !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #034d0b !important;
}
.bg-danger {
  background-color: #b539cf !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #de0c08 !important;
  border-color: #de0c08 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #940805 !important;
  border-color: #940805 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #940805 !important;
  border-color: #940805 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #585858 !important;
  border-color: #585858 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffefbf !important;
  border-color: #ffefbf !important;
  color: #bf8f00 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #bf8f00 !important;
  background-color: #ffdc72 !important;
  border-color: #ffdc72 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #bf8f00 !important;
  background-color: #ffdc72 !important;
  border-color: #ffdc72 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #034d0b !important;
  border-color: #034d0b !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000300 !important;
  border-color: #000300 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000300 !important;
  border-color: #000300 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b539cf !important;
  border-color: #b539cf !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #832597 !important;
  border-color: #832597 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #832597 !important;
  border-color: #832597 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #7c0704;
  color: #7c0704;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #de0c08;
  border-color: #de0c08;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #de0c08 !important;
  border-color: #de0c08 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #4b4b4b;
  color: #4b4b4b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #7e7e7e;
  border-color: #7e7e7e;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7e7e7e !important;
  border-color: #7e7e7e !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #ffd659;
  color: #ffd659;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #bf8f00;
  background-color: #ffefbf;
  border-color: #ffefbf;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #bf8f00 !important;
  background-color: #ffefbf !important;
  border-color: #ffefbf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #034d0b;
  border-color: #034d0b;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #034d0b !important;
  border-color: #034d0b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #712082;
  color: #712082;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b539cf;
  border-color: #b539cf;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b539cf !important;
  border-color: #b539cf !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #de0c08 !important;
}
.text-secondary {
  color: #7e7e7e !important;
}
.text-success {
  color: #ffefbf !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #034d0b !important;
}
.text-danger {
  color: #b539cf !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #101010 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #7c0704 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #4b4b4b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #ffd659 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #b539cf !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #034d0b;
}
.alert-danger {
  background-color: #b539cf;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #de0c08;
  border-color: #de0c08;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #de0c08;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcb7b6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #3ef752;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f2ddf7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #de0c08;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #de0c08;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #de0c08;
  border-bottom-color: #de0c08;
}
.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: #de0c08 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #7e7e7e !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='%23de0c08' %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;
}
hr {
  border: none;
  background-color: #b539cf;
  height: 3px;
  width: 72px;
  position: absolute;
  top: -3.5rem;
  display: inline-block;
}
.line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.line-title-big {
  width: 72px;
  height: 3px;
  background-color: #b539cf;
  margin-bottom: 2rem;
  display: inline-block;
}
.vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.mbr-section-btn .btn-danger,
.btn-warning,
.btn-white,
.btn-black,
.btn-secondary,
.btn-primary,
.btn-info,
.btn-success {
  position: relative;
  background-color: #ffffff;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.mbr-section-btn .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 50% 0;
  transition-property: transform;
  transition: 0.6s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0, 1.01);
  transform-origin: 0% 50%;
}
.btn-white {
  color: #b539cf !important;
}
.btn-danger:hover {
  color: #b539cf !important;
}
.btn-warning:hover {
  color: #034d0b !important;
}
.btn-success:hover {
  color: #ffefbf !important;
}
.btn-info:hover {
  color: #82786e !important;
}
.btn-black:hover {
  color: #000000 !important;
}
.btn-white:hover {
  color: #000000 !important;
}
.btn-secondary:hover {
  color: #7e7e7e !important;
}
.btn-primary:hover {
  color: #de0c08 !important;
}
.btn:hover::before {
  background-color: #ffffff;
  transform: scaleX(1);
}
.btn-white {
  color: #b539cf !important;
}
.mbr-section-btn .btn-danger-outline {
  border-color: #b539cf;
}
.mbr-section-btn .btn-danger-outline,
.btn-warning-outline,
.btn-white-outline,
.btn-black-outline,
.btn-secondary-outline,
.btn-primary-outline,
.btn-info-outline,
.btn-success-outline {
  position: relative;
  background-color: transparent !important;
  transform: perspective(1px) translateZ(0);
  transition: all 0.3s ease-in-out !important;
}
.btn-danger-outline {
  color: #ffffff !important;
}
.btn-secondary-outline:hover::before {
  background-color: #7e7e7e !important;
}
.btn-success-outline:hover::before {
  background-color: #ffefbf !important;
}
.btn-info-outline:hover::before {
  background-color: #82786e !important;
}
.btn-primary-outline:hover::before {
  background-color: #de0c08 !important;
}
.btn-white-outline:hover::before {
  background-color: #ffffff !important;
}
.btn-black-outline:hover::before {
  background-color: #000000 !important;
}
.btn-black-outline:hover::before {
  background-color: #034d0b !important;
}
.btn-danger-outline:hover::before {
  background-color: #b539cf !important;
}
.cid-tlHxNVtHw5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlHxNVtHw5 nav.navbar {
  position: fixed;
}
.cid-tlHxNVtHw5 .btn {
  line-height: 1.2;
}
.cid-tlHxNVtHw5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlHxNVtHw5 .nav-link {
  position: relative;
}
.cid-tlHxNVtHw5 .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlHxNVtHw5 .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlHxNVtHw5 .nav-link:hover:before {
  width: 100%;
}
.cid-tlHxNVtHw5 .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-tlHxNVtHw5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlHxNVtHw5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlHxNVtHw5 .dropdown-item:hover,
.cid-tlHxNVtHw5 .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlHxNVtHw5 .dropdown-item:hover span {
  color: white;
}
.cid-tlHxNVtHw5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlHxNVtHw5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlHxNVtHw5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlHxNVtHw5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlHxNVtHw5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlHxNVtHw5 .container {
    flex-wrap: nowrap;
  }
}
.cid-tlHxNVtHw5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlHxNVtHw5 .navbar-nav {
  margin: auto;
}
.cid-tlHxNVtHw5 .dropdown-menu,
.cid-tlHxNVtHw5 .navbar.opened {
  background: #549d0b !important;
}
.cid-tlHxNVtHw5 .nav-item:focus,
.cid-tlHxNVtHw5 .nav-link:focus {
  outline: none;
}
.cid-tlHxNVtHw5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlHxNVtHw5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlHxNVtHw5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlHxNVtHw5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlHxNVtHw5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlHxNVtHw5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlHxNVtHw5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlHxNVtHw5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tlHxNVtHw5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlHxNVtHw5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tlHxNVtHw5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlHxNVtHw5 .navbar.collapsed {
  justify-content: center;
}
.cid-tlHxNVtHw5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlHxNVtHw5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlHxNVtHw5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlHxNVtHw5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlHxNVtHw5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlHxNVtHw5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlHxNVtHw5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlHxNVtHw5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlHxNVtHw5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlHxNVtHw5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlHxNVtHw5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlHxNVtHw5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlHxNVtHw5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlHxNVtHw5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlHxNVtHw5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlHxNVtHw5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlHxNVtHw5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlHxNVtHw5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlHxNVtHw5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlHxNVtHw5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlHxNVtHw5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlHxNVtHw5 .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlHxNVtHw5 .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlHxNVtHw5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlHxNVtHw5 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlHxNVtHw5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlHxNVtHw5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlHxNVtHw5 .dropdown-item.active,
.cid-tlHxNVtHw5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tlHxNVtHw5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlHxNVtHw5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlHxNVtHw5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlHxNVtHw5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlHxNVtHw5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlHxNVtHw5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlHxNVtHw5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlHxNVtHw5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlHxNVtHw5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlHxNVtHw5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlHxNVtHw5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlHxNVtHw5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlHxNVtHw5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlHxNVtHw5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlHxNVtHw5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlHxNVtHw5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlHxNVtHw5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlHxNVtHw5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlHxNVtHw5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlHxNVtHw5 .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-tlHxNVtHw5 .navbar {
    height: 70px;
  }
  .cid-tlHxNVtHw5 .navbar.opened {
    height: auto;
  }
  .cid-tlHxNVtHw5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlGIIO2LOX {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-1600x1067.jpg");
}
.cid-tlGIIO2LOX .mbr-section-title {
  margin-bottom: 1.8rem;
}
.cid-tlGIIO2LOX .mbr-text {
  margin-bottom: 2.7rem;
}
@media (max-width: 767px) {
  .cid-tlGIIO2LOX .align-center {
    text-align: center;
  }
}
.cid-tlQuHiDMff {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tlQuHiDMff h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tlQuHiDMff .container {
    position: relative;
  }
  .cid-tlQuHiDMff .row {
    margin: 0;
  }
  .cid-tlQuHiDMff h2 {
    margin: 0;
  }
}
.cid-tlQuHiDMff .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tlQuHiDMff .mbr-text {
  margin-top: 1.4rem;
  color: #08833e;
}
.cid-tlQuHiDMff h2 {
  color: #02602b;
}
.cid-tlKTw9iOOF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tlKTw9iOOF .mbr-text,
.cid-tlKTw9iOOF .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-tlKTw9iOOF H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-tWugWRro35 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #76cc20;
}
.cid-tWugWRro35 H2 {
  color: #d58f76;
  text-align: center;
}
.cid-tWugWRro35 H1 {
  text-align: left;
}
.cid-tlSaT06ytv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tlSaT06ytv .mbr-text,
.cid-tlSaT06ytv .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-tlSaT06ytv H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-tlHFTKuMZc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlHFTKuMZc .content {
    text-align: center;
  }
  .cid-tlHFTKuMZc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlHFTKuMZc .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlHFTKuMZc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlHFTKuMZc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlHFTKuMZc .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlHFTKuMZc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlHFTKuMZc .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlHFTKuMZc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlHFTKuMZc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlHFTKuMZc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlHFTKuMZc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlHFTKuMZc .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlHFTKuMZc .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlHFTKuMZc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlHFTKuMZc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlHFTKuMZc .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlNOT2xYHB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlNOT2xYHB nav.navbar {
  position: fixed;
}
.cid-tlNOT2xYHB .btn {
  line-height: 1.2;
}
.cid-tlNOT2xYHB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlNOT2xYHB .nav-link {
  position: relative;
}
.cid-tlNOT2xYHB .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlNOT2xYHB .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlNOT2xYHB .nav-link:hover:before {
  width: 100%;
}
.cid-tlNOT2xYHB .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-tlNOT2xYHB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlNOT2xYHB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlNOT2xYHB .dropdown-item:hover,
.cid-tlNOT2xYHB .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlNOT2xYHB .dropdown-item:hover span {
  color: white;
}
.cid-tlNOT2xYHB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlNOT2xYHB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlNOT2xYHB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlNOT2xYHB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlNOT2xYHB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlNOT2xYHB .container {
    flex-wrap: nowrap;
  }
}
.cid-tlNOT2xYHB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlNOT2xYHB .navbar-nav {
  margin: auto;
}
.cid-tlNOT2xYHB .dropdown-menu,
.cid-tlNOT2xYHB .navbar.opened {
  background: #549d0b !important;
}
.cid-tlNOT2xYHB .nav-item:focus,
.cid-tlNOT2xYHB .nav-link:focus {
  outline: none;
}
.cid-tlNOT2xYHB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlNOT2xYHB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlNOT2xYHB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlNOT2xYHB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlNOT2xYHB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlNOT2xYHB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlNOT2xYHB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlNOT2xYHB .navbar.opened {
  transition: all 0.3s;
}
.cid-tlNOT2xYHB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlNOT2xYHB .navbar .navbar-logo img {
  width: auto;
}
.cid-tlNOT2xYHB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlNOT2xYHB .navbar.collapsed {
  justify-content: center;
}
.cid-tlNOT2xYHB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlNOT2xYHB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlNOT2xYHB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlNOT2xYHB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlNOT2xYHB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlNOT2xYHB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlNOT2xYHB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlNOT2xYHB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlNOT2xYHB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlNOT2xYHB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlNOT2xYHB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlNOT2xYHB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlNOT2xYHB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlNOT2xYHB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlNOT2xYHB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlNOT2xYHB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlNOT2xYHB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlNOT2xYHB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlNOT2xYHB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlNOT2xYHB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlNOT2xYHB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlNOT2xYHB .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlNOT2xYHB .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlNOT2xYHB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlNOT2xYHB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlNOT2xYHB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlNOT2xYHB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlNOT2xYHB .dropdown-item.active,
.cid-tlNOT2xYHB .dropdown-item:active {
  background-color: transparent;
}
.cid-tlNOT2xYHB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlNOT2xYHB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlNOT2xYHB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlNOT2xYHB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlNOT2xYHB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlNOT2xYHB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlNOT2xYHB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlNOT2xYHB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlNOT2xYHB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlNOT2xYHB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlNOT2xYHB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlNOT2xYHB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlNOT2xYHB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlNOT2xYHB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlNOT2xYHB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlNOT2xYHB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlNOT2xYHB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlNOT2xYHB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlNOT2xYHB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlNOT2xYHB .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-tlNOT2xYHB .navbar {
    height: 70px;
  }
  .cid-tlNOT2xYHB .navbar.opened {
    height: auto;
  }
  .cid-tlNOT2xYHB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlXr8xzLOH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme26-1800x500.jpg");
}
.cid-tlXr8xzLOH .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  background: linear-gradient(-120deg, rgba(202, 151, 210, 0.94), rgba(94, 94, 255, 0.94) 46%, #5cc3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: ;
  text-align: left;
}
.cid-tlXr8xzLOH .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #f3f3f3;
  text-align: left;
}
.cid-tlXr8xzLOH .mbr-section-btn {
  margin-top: 20px;
}
.cid-tlNOT3T1Ec {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tlNOT3T1Ec h2,
.cid-tlNOT3T1Ec h3,
.cid-tlNOT3T1Ec h4,
.cid-tlNOT3T1Ec h5 {
  margin: 1;
}
.cid-tlNOT3T1Ec .mbr-section-title {
  color: #0b8440;
}
.cid-tlNOT3T1Ec .mbr-card-title {
  text-align: left;
  color: #1d4b20;
}
.cid-tlNOT3T1Ec .mbr-card-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tlNOT3T1Ec .image-container {
  min-height: 738px;
  padding-top: 40px;
  display: grid;
  grid-template-columns: minmax(346px, 704px) minmax(153px, 332px) minmax(153px, 332px) minmax(153px, 332px);
  grid-template-rows: 1fr 1fr;
  grid-gap: 40px;
  grid-template-areas: "img1 img2 img4 img5" "img1 img3 img4 img6";
}
@media (min-width: 681px) and (max-width: 1024px) {
  .cid-tlNOT3T1Ec .image-container {
    grid-template-columns: minmax(290px, 442px) minmax(290px, 442px);
    grid-template-rows: 924px 442px 442px 442px;
    grid-gap: 40px;
    grid-template-areas: "img1 img1" "img2 img4" "img3 img4" "img6 img5";
  }
}
@media (max-width: 680px) {
  .cid-tlNOT3T1Ec .image-container {
    grid-template-columns: minmax(260px, 620px);
    grid-template-rows: 697px 329px 697px 329px 329px 329px;
    grid-gap: 40px;
    grid-template-areas: "img1" "img2" "img4" "img3" "img5" "img6";
  }
}
.cid-tlNOT3T1Ec #img1 {
  grid-area: img1;
  background-image: url("../../../assets/images/phytoterapie-600x814.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec #img2 {
  grid-area: img2;
  background-image: url("../../../assets/images/homeopathie-600x814.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec #img3 {
  grid-area: img3;
  background-image: url("../../../assets/images/oligotherapie-600x814.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec #img4 {
  grid-area: img4;
  background-image: url("../../../assets/images/aromateraphie-3-600x1200.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec #img5 {
  grid-area: img5;
  background-image: url("../../../assets/images/naturophate-2-600x800.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec #img6 {
  grid-area: img6;
  background-image: url("../../../assets/images/fleurs-de-bach-2-600x800.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cid-tlNOT3T1Ec .top-left,
.cid-tlNOT3T1Ec .bottom-right {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
}
.cid-tlNOT3T1Ec .top-left::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-tlNOT3T1Ec .top-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #ab0025;
  top: 0;
  left: 0;
  transition: all 1s ease-out;
}
.cid-tlNOT3T1Ec .bottom-right::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 0;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-tlNOT3T1Ec .bottom-right::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: #ab0025;
  bottom: 0;
  right: 0;
  transition: all 1s ease-out;
}
.cid-tlNOT3T1Ec .text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background: #ffffff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 1s ease-out;
}
.cid-tlNOT3T1Ec .image-wrap:hover .text-wrap {
  opacity: 2;
}
.cid-tlNOT3T1Ec .image-wrap:hover .top-left::before {
  height: 100%;
}
.cid-tlNOT3T1Ec .image-wrap:hover .top-left::after {
  width: 100%;
}
.cid-tlNOT3T1Ec .image-wrap:hover .bottom-right::before {
  height: 100%;
}
.cid-tlNOT3T1Ec .image-wrap:hover .bottom-right::after {
  width: 100%;
}
.cid-tlNOT3T1Ec .mbr-card-title DIV {
  text-align: left;
}
.cid-tlNOT4cODn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-produits-de-bain2-1800x1800.jpg");
}
.cid-tlNOT4cODn .mbr-section-title {
  margin-left: 80px;
  margin-right: 80px;
  color: #056f11;
}
.cid-tlNOT4cODn .card {
  margin: 48px 80px;
  padding-bottom: 48px;
  border-radius: 0;
}
.cid-tlNOT4cODn .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.cid-tlNOT4cODn .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tlNOT4cODn .panel-body p {
  margin: 20px 10% 0 0;
}
.cid-tlNOT4cODn .sign {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 922px) {
  .cid-tlNOT4cODn .card {
    margin: 20px 0;
  }
  .cid-tlNOT4cODn .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .cid-tlNOT4cODn .card {
    margin: 10px 0 40px;
  }
}
@media (max-width: 125px) {
  .cid-tlNOT4cODn .sign {
    margin-left: 7px;
  }
}
.cid-tlNOT4cODn .panel-text {
  color: #000000;
}
.cid-tlNOT4cODn .panel-title-edit {
  color: #056f11;
}
.cid-tlNOT4vd8l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-006jpg-1800x1800.jpg");
}
.cid-tlNOT4vd8l .mbr-section-title {
  margin-left: 80px;
  margin-right: 80px;
  color: #056f11;
}
.cid-tlNOT4vd8l .card {
  margin: 48px 80px;
  padding-bottom: 48px;
  border-radius: 0;
}
.cid-tlNOT4vd8l .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.cid-tlNOT4vd8l .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tlNOT4vd8l .panel-body p {
  margin: 20px 10% 0 0;
}
.cid-tlNOT4vd8l .sign {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 922px) {
  .cid-tlNOT4vd8l .card {
    margin: 20px 0;
  }
  .cid-tlNOT4vd8l .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .cid-tlNOT4vd8l .card {
    margin: 10px 0 40px;
  }
}
@media (max-width: 125px) {
  .cid-tlNOT4vd8l .sign {
    margin-left: 7px;
  }
}
.cid-tlNOT4vd8l .panel-text {
  color: #000000;
}
.cid-tlNOT4vd8l .panel-title-edit {
  color: #056f11;
}
.cid-tlNOT4PxEB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-006jpg-1800x1800.jpg");
}
.cid-tlNOT4PxEB .mbr-section-title {
  margin-left: 80px;
  margin-right: 80px;
  color: #056f11;
}
.cid-tlNOT4PxEB .card {
  margin: 48px 80px;
  padding-bottom: 48px;
  border-radius: 0;
}
.cid-tlNOT4PxEB .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.cid-tlNOT4PxEB .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tlNOT4PxEB .panel-body p {
  margin: 20px 10% 0 0;
}
.cid-tlNOT4PxEB .sign {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 922px) {
  .cid-tlNOT4PxEB .card {
    margin: 20px 0;
  }
  .cid-tlNOT4PxEB .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .cid-tlNOT4PxEB .card {
    margin: 10px 0 40px;
  }
}
@media (max-width: 125px) {
  .cid-tlNOT4PxEB .sign {
    margin-left: 7px;
  }
}
.cid-tlNOT4PxEB .panel-text {
  color: #000000;
}
.cid-tlNOT4PxEB .panel-title-edit {
  color: #056f11;
}
.cid-tlNPvrk7pY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-006jpg-1800x1800.jpg");
}
.cid-tlNPvrk7pY .mbr-section-title {
  margin-left: 80px;
  margin-right: 80px;
  color: #056f11;
}
.cid-tlNPvrk7pY .card {
  margin: 48px 80px;
  padding-bottom: 48px;
  border-radius: 0;
}
.cid-tlNPvrk7pY .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.cid-tlNPvrk7pY .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tlNPvrk7pY .panel-body p {
  margin: 20px 10% 0 0;
}
.cid-tlNPvrk7pY .sign {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 922px) {
  .cid-tlNPvrk7pY .card {
    margin: 20px 0;
  }
  .cid-tlNPvrk7pY .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .cid-tlNPvrk7pY .card {
    margin: 10px 0 40px;
  }
}
@media (max-width: 125px) {
  .cid-tlNPvrk7pY .sign {
    margin-left: 7px;
  }
}
.cid-tlNPvrk7pY .panel-text {
  color: #000000;
}
.cid-tlNPvrk7pY .panel-title-edit {
  color: #056f11;
}
.cid-tlNQTWtx1f {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-006jpg-1800x1800.jpg");
}
.cid-tlNQTWtx1f .mbr-section-title {
  margin-left: 80px;
  margin-right: 80px;
  color: #056f11;
}
.cid-tlNQTWtx1f .card {
  margin: 48px 80px;
  padding-bottom: 48px;
  border-radius: 0;
}
.cid-tlNQTWtx1f .card-header {
  padding: 0;
  background-color: transparent;
  border-bottom: none;
}
.cid-tlNQTWtx1f .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-tlNQTWtx1f .panel-body p {
  margin: 20px 10% 0 0;
}
.cid-tlNQTWtx1f .sign {
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 922px) {
  .cid-tlNQTWtx1f .card {
    margin: 20px 0;
  }
  .cid-tlNQTWtx1f .mbr-section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .cid-tlNQTWtx1f .card {
    margin: 10px 0 40px;
  }
}
@media (max-width: 125px) {
  .cid-tlNQTWtx1f .sign {
    margin-left: 7px;
  }
}
.cid-tlNQTWtx1f .panel-text {
  color: #000000;
}
.cid-tlNQTWtx1f .panel-title-edit {
  color: #056f11;
}
.cid-tm3d0Jfk7M.popup-builder {
  background-color: #ffffff;
}
.cid-tm3d0Jfk7M.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tm3d0Jfk7M.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tm3d0Jfk7M .modal-content,
.cid-tm3d0Jfk7M .modal-dialog {
  height: auto;
}
.cid-tm3d0Jfk7M .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tm3d0Jfk7M .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tm3d0Jfk7M .form-wrapper .mbr-form .form-group,
  .cid-tm3d0Jfk7M .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tm3d0Jfk7M .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tm3d0Jfk7M .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm3d0Jfk7M .mbr-text {
  text-align: center;
  color: #f82222;
}
.cid-tm3d0Jfk7M .pt-0 {
  padding-top: 0 !important;
}
.cid-tm3d0Jfk7M .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tm3d0Jfk7M .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tm3d0Jfk7M .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tm3d0Jfk7M .modal-open {
  overflow: hidden;
}
.cid-tm3d0Jfk7M .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tm3d0Jfk7M .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tm3d0Jfk7M .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tm3d0Jfk7M .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tm3d0Jfk7M .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tm3d0Jfk7M .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tm3d0Jfk7M .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tm3d0Jfk7M .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tm3d0Jfk7M .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tm3d0Jfk7M .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tm3d0Jfk7M .modal-backdrop.fade {
  opacity: 0;
}
.cid-tm3d0Jfk7M .modal-backdrop.show {
  opacity: .5;
}
.cid-tm3d0Jfk7M .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tm3d0Jfk7M .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d0Jfk7M .modal-header {
    padding: 1rem;
  }
}
.cid-tm3d0Jfk7M .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tm3d0Jfk7M .modal-header .close svg {
  fill: #353535;
}
.cid-tm3d0Jfk7M .modal-header .close:hover {
  opacity: 1;
}
.cid-tm3d0Jfk7M .modal-header .close:focus {
  outline: none;
}
.cid-tm3d0Jfk7M .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e1201d;
}
.cid-tm3d0Jfk7M .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tm3d0Jfk7M .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d0Jfk7M .modal-body {
    padding: 1rem;
  }
}
.cid-tm3d0Jfk7M .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm3d0Jfk7M .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d0Jfk7M .modal-footer {
    padding: 1rem;
  }
}
.cid-tm3d0Jfk7M .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tm3d0Jfk7M .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tm3d0Jfk7M .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tm3d0Jfk7M .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tm3d0Jfk7M .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tm3d0Jfk7M .modal-lg,
  .cid-tm3d0Jfk7M .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tm3d0Jfk7M .modal-xl {
    max-width: 1140px;
  }
}
.cid-tm3d0Jfk7M .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tm3d0Jfk7M .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tm3d0Jfk7M .form-group {
  margin-bottom: 1rem;
}
.cid-tm3d0Jfk7M .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tm3d0Jfk7M .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tm3d0Jfk7M .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tm3d0Jfk7M .mbr-section-btn {
  margin: 0;
}
.cid-tm3d0Jfk7M .mbr-section-btn .btn {
  margin: 0;
}
.cid-tlNOT59UPX {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlNOT59UPX .content {
    text-align: center;
  }
  .cid-tlNOT59UPX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlNOT59UPX .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlNOT59UPX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlNOT59UPX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlNOT59UPX .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlNOT59UPX .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlNOT59UPX .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlNOT59UPX .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlNOT59UPX .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlNOT59UPX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlNOT59UPX .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlNOT59UPX .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlNOT59UPX .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlNOT59UPX .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlNOT59UPX .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlNOT59UPX .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlNUFYykSS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlNUFYykSS nav.navbar {
  position: fixed;
}
.cid-tlNUFYykSS .btn {
  line-height: 1.2;
}
.cid-tlNUFYykSS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlNUFYykSS .nav-link {
  position: relative;
}
.cid-tlNUFYykSS .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlNUFYykSS .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlNUFYykSS .nav-link:hover:before {
  width: 100%;
}
.cid-tlNUFYykSS .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-tlNUFYykSS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlNUFYykSS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlNUFYykSS .dropdown-item:hover,
.cid-tlNUFYykSS .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlNUFYykSS .dropdown-item:hover span {
  color: white;
}
.cid-tlNUFYykSS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlNUFYykSS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlNUFYykSS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlNUFYykSS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlNUFYykSS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlNUFYykSS .container {
    flex-wrap: nowrap;
  }
}
.cid-tlNUFYykSS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlNUFYykSS .navbar-nav {
  margin: auto;
}
.cid-tlNUFYykSS .dropdown-menu,
.cid-tlNUFYykSS .navbar.opened {
  background: #549d0b !important;
}
.cid-tlNUFYykSS .nav-item:focus,
.cid-tlNUFYykSS .nav-link:focus {
  outline: none;
}
.cid-tlNUFYykSS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlNUFYykSS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlNUFYykSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlNUFYykSS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlNUFYykSS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlNUFYykSS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlNUFYykSS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlNUFYykSS .navbar.opened {
  transition: all 0.3s;
}
.cid-tlNUFYykSS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlNUFYykSS .navbar .navbar-logo img {
  width: auto;
}
.cid-tlNUFYykSS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlNUFYykSS .navbar.collapsed {
  justify-content: center;
}
.cid-tlNUFYykSS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlNUFYykSS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlNUFYykSS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlNUFYykSS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlNUFYykSS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlNUFYykSS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlNUFYykSS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlNUFYykSS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlNUFYykSS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlNUFYykSS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlNUFYykSS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlNUFYykSS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlNUFYykSS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlNUFYykSS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlNUFYykSS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlNUFYykSS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlNUFYykSS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlNUFYykSS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlNUFYykSS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlNUFYykSS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlNUFYykSS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlNUFYykSS .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlNUFYykSS .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlNUFYykSS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlNUFYykSS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlNUFYykSS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlNUFYykSS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlNUFYykSS .dropdown-item.active,
.cid-tlNUFYykSS .dropdown-item:active {
  background-color: transparent;
}
.cid-tlNUFYykSS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlNUFYykSS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlNUFYykSS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlNUFYykSS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlNUFYykSS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlNUFYykSS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlNUFYykSS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlNUFYykSS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlNUFYykSS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlNUFYykSS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlNUFYykSS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlNUFYykSS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlNUFYykSS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlNUFYykSS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlNUFYykSS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlNUFYykSS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlNUFYykSS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlNUFYykSS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlNUFYykSS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlNUFYykSS .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-tlNUFYykSS .navbar {
    height: 70px;
  }
  .cid-tlNUFYykSS .navbar.opened {
    height: auto;
  }
  .cid-tlNUFYykSS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlU4faNcmi {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tlU4faNcmi h1 {
  margin-bottom: 0.2rem;
}
.cid-tlU4faNcmi .container-fluid {
  padding: 0;
}
.cid-tlU4faNcmi img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-tlU4faNcmi .mbr-figure {
  height: 100%;
}
.cid-tlU4faNcmi .col-lg-6 {
  padding: 0;
}
.cid-tlU4faNcmi .mbr-text {
  color: #747474;
}
.cid-tlU4faNcmi hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-tlU4faNcmi .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-tlU4faNcmi .mbr-section-subtitle-1 {
  color: #e9204f;
}
.cid-tlU4faNcmi .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-tlU4faNcmi .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tlU4faNcmi .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-tlU4faNcmi .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-tlU4faNcmi .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-tlU4faNcmi .left-block {
    margin-top: 4.5rem;
  }
}
.cid-tlU4faNcmi .btn {
  color: #101010 !important;
}
.cid-tlU4faNcmi .btn:hover {
  color: #ffffff !important;
}
.cid-tlU4faNcmi .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-tlU4faNcmi .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-tlU4faNcmi .mbr-text,
.cid-tlU4faNcmi .mbr-section-btn {
  color: #0f3403;
}
.cid-tlNUG173wF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlNUG173wF .content {
    text-align: center;
  }
  .cid-tlNUG173wF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlNUG173wF .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlNUG173wF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlNUG173wF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlNUG173wF .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlNUG173wF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlNUG173wF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlNUG173wF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlNUG173wF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlNUG173wF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlNUG173wF .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlNUG173wF .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlNUG173wF .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlNUG173wF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlNUG173wF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlNUG173wF .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlQyy3ZqgM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlQyy3ZqgM nav.navbar {
  position: fixed;
}
.cid-tlQyy3ZqgM .btn {
  line-height: 1.2;
}
.cid-tlQyy3ZqgM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlQyy3ZqgM .nav-link {
  position: relative;
}
.cid-tlQyy3ZqgM .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlQyy3ZqgM .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlQyy3ZqgM .nav-link:hover:before {
  width: 100%;
}
.cid-tlQyy3ZqgM .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-tlQyy3ZqgM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlQyy3ZqgM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlQyy3ZqgM .dropdown-item:hover,
.cid-tlQyy3ZqgM .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlQyy3ZqgM .dropdown-item:hover span {
  color: white;
}
.cid-tlQyy3ZqgM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlQyy3ZqgM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlQyy3ZqgM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlQyy3ZqgM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlQyy3ZqgM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlQyy3ZqgM .container {
    flex-wrap: nowrap;
  }
}
.cid-tlQyy3ZqgM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlQyy3ZqgM .navbar-nav {
  margin: auto;
}
.cid-tlQyy3ZqgM .dropdown-menu,
.cid-tlQyy3ZqgM .navbar.opened {
  background: #549d0b !important;
}
.cid-tlQyy3ZqgM .nav-item:focus,
.cid-tlQyy3ZqgM .nav-link:focus {
  outline: none;
}
.cid-tlQyy3ZqgM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlQyy3ZqgM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlQyy3ZqgM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlQyy3ZqgM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlQyy3ZqgM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlQyy3ZqgM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlQyy3ZqgM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlQyy3ZqgM .navbar.opened {
  transition: all 0.3s;
}
.cid-tlQyy3ZqgM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlQyy3ZqgM .navbar .navbar-logo img {
  width: auto;
}
.cid-tlQyy3ZqgM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlQyy3ZqgM .navbar.collapsed {
  justify-content: center;
}
.cid-tlQyy3ZqgM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlQyy3ZqgM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlQyy3ZqgM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlQyy3ZqgM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlQyy3ZqgM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlQyy3ZqgM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlQyy3ZqgM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlQyy3ZqgM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlQyy3ZqgM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlQyy3ZqgM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlQyy3ZqgM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlQyy3ZqgM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlQyy3ZqgM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlQyy3ZqgM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlQyy3ZqgM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlQyy3ZqgM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlQyy3ZqgM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlQyy3ZqgM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlQyy3ZqgM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlQyy3ZqgM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlQyy3ZqgM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlQyy3ZqgM .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlQyy3ZqgM .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlQyy3ZqgM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlQyy3ZqgM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlQyy3ZqgM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlQyy3ZqgM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlQyy3ZqgM .dropdown-item.active,
.cid-tlQyy3ZqgM .dropdown-item:active {
  background-color: transparent;
}
.cid-tlQyy3ZqgM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlQyy3ZqgM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlQyy3ZqgM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlQyy3ZqgM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlQyy3ZqgM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlQyy3ZqgM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlQyy3ZqgM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlQyy3ZqgM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlQyy3ZqgM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlQyy3ZqgM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlQyy3ZqgM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlQyy3ZqgM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlQyy3ZqgM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlQyy3ZqgM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlQyy3ZqgM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlQyy3ZqgM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlQyy3ZqgM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlQyy3ZqgM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlQyy3ZqgM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlQyy3ZqgM .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-tlQyy3ZqgM .navbar {
    height: 70px;
  }
  .cid-tlQyy3ZqgM .navbar.opened {
    height: auto;
  }
  .cid-tlQyy3ZqgM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlQyy57SRj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme17-1800x400.jpg");
}
.cid-tlQyy57SRj .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-tlQyy57SRj .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #f3f3f3;
  text-align: left;
}
.cid-tlQyy57SRj .mbr-section-btn {
  margin-top: 20px;
}
.cid-tm2P3DuhqL.popup-builder {
  background-color: #ffffff;
}
.cid-tm2P3DuhqL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tm2P3DuhqL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tm2P3DuhqL .modal-content,
.cid-tm2P3DuhqL .modal-dialog {
  height: auto;
}
.cid-tm2P3DuhqL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tm2P3DuhqL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tm2P3DuhqL .form-wrapper .mbr-form .form-group,
  .cid-tm2P3DuhqL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tm2P3DuhqL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tm2P3DuhqL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm2P3DuhqL .mbr-text {
  text-align: center;
  color: #f82222;
}
.cid-tm2P3DuhqL .pt-0 {
  padding-top: 0 !important;
}
.cid-tm2P3DuhqL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tm2P3DuhqL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tm2P3DuhqL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tm2P3DuhqL .modal-open {
  overflow: hidden;
}
.cid-tm2P3DuhqL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tm2P3DuhqL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tm2P3DuhqL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tm2P3DuhqL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tm2P3DuhqL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tm2P3DuhqL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tm2P3DuhqL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tm2P3DuhqL .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tm2P3DuhqL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tm2P3DuhqL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tm2P3DuhqL .modal-backdrop.fade {
  opacity: 0;
}
.cid-tm2P3DuhqL .modal-backdrop.show {
  opacity: .5;
}
.cid-tm2P3DuhqL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tm2P3DuhqL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tm2P3DuhqL .modal-header {
    padding: 1rem;
  }
}
.cid-tm2P3DuhqL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tm2P3DuhqL .modal-header .close svg {
  fill: #353535;
}
.cid-tm2P3DuhqL .modal-header .close:hover {
  opacity: 1;
}
.cid-tm2P3DuhqL .modal-header .close:focus {
  outline: none;
}
.cid-tm2P3DuhqL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e1201d;
}
.cid-tm2P3DuhqL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tm2P3DuhqL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm2P3DuhqL .modal-body {
    padding: 1rem;
  }
}
.cid-tm2P3DuhqL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm2P3DuhqL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm2P3DuhqL .modal-footer {
    padding: 1rem;
  }
}
.cid-tm2P3DuhqL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tm2P3DuhqL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tm2P3DuhqL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tm2P3DuhqL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tm2P3DuhqL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tm2P3DuhqL .modal-lg,
  .cid-tm2P3DuhqL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tm2P3DuhqL .modal-xl {
    max-width: 1140px;
  }
}
.cid-tm2P3DuhqL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tm2P3DuhqL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tm2P3DuhqL .form-group {
  margin-bottom: 1rem;
}
.cid-tm2P3DuhqL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tm2P3DuhqL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tm2P3DuhqL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tm2P3DuhqL .mbr-section-btn {
  margin: 0;
}
.cid-tm2P3DuhqL .mbr-section-btn .btn {
  margin: 0;
}
.cid-tlQyy5lAHL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tlQyy5lAHL .mbr-text,
.cid-tlQyy5lAHL .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-tlQyy5lAHL H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-tlYhLWVeuZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme-1020x588.jpg");
}
.cid-tlYhLWVeuZ .wrapper {
  padding: 20px 90px;
  background: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
@media (max-width: 768px) {
  .cid-tlYhLWVeuZ .wrapper {
    padding: 20px;
  }
}
.cid-tlYhLWVeuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlYhLWVeuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlYhLWVeuZ .mbr-text.text1 {
  color: #ffffff;
}
.cid-tlYhLWVeuZ .mbr-text.text2 {
  color: #ffffff;
}
.cid-tlYjhu0GCN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tlYjhu0GCN .mbr-text,
.cid-tlYjhu0GCN .mbr-section-btn {
  text-align: left;
  color: #02602b;
}
.cid-tlYjhu0GCN H1 {
  text-align: left;
  color: #02602b;
}
.cid-tlQBzuX3A0 {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tlQBzuX3A0 .image-block {
  margin: auto;
  height: 500px;
  overflow: hidden;
}
.cid-tlQBzuX3A0 .image-block:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 2;
}
.cid-tlQBzuX3A0 .image-block:hover:before {
  opacity: 0.4;
}
.cid-tlQBzuX3A0 .image-block:hover .wrap {
  opacity: 1;
}
.cid-tlQBzuX3A0 .image-block:hover img {
  transform: scale(1.05);
}
.cid-tlQBzuX3A0 h4 {
  letter-spacing: 2px;
}
.cid-tlQBzuX3A0 figcaption {
  position: relative;
}
.cid-tlQBzuX3A0 figcaption .wrap {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tlQBzuX3A0 img {
  width: 100%;
  height: 100%;
  transition: all 3s;
  object-fit: cover;
}
.cid-tlQBzuX3A0 .col-lg-4 {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tlQBzuX3A0 .image-block {
    height: 400px;
  }
}
.cid-tlQyy5zPOC {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlQyy5zPOC .content {
    text-align: center;
  }
  .cid-tlQyy5zPOC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlQyy5zPOC .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlQyy5zPOC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlQyy5zPOC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlQyy5zPOC .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlQyy5zPOC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlQyy5zPOC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlQyy5zPOC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlQyy5zPOC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlQyy5zPOC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlQyy5zPOC .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlQyy5zPOC .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlQyy5zPOC .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlQyy5zPOC .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlQyy5zPOC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlQyy5zPOC .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlUeTkCagB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlUeTkCagB nav.navbar {
  position: fixed;
}
.cid-tlUeTkCagB .btn {
  line-height: 1.2;
}
.cid-tlUeTkCagB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlUeTkCagB .nav-link {
  position: relative;
}
.cid-tlUeTkCagB .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlUeTkCagB .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlUeTkCagB .nav-link:hover:before {
  width: 100%;
}
.cid-tlUeTkCagB .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-tlUeTkCagB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlUeTkCagB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlUeTkCagB .dropdown-item:hover,
.cid-tlUeTkCagB .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlUeTkCagB .dropdown-item:hover span {
  color: white;
}
.cid-tlUeTkCagB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlUeTkCagB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlUeTkCagB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlUeTkCagB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlUeTkCagB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlUeTkCagB .container {
    flex-wrap: nowrap;
  }
}
.cid-tlUeTkCagB .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlUeTkCagB .navbar-nav {
  margin: auto;
}
.cid-tlUeTkCagB .dropdown-menu,
.cid-tlUeTkCagB .navbar.opened {
  background: #549d0b !important;
}
.cid-tlUeTkCagB .nav-item:focus,
.cid-tlUeTkCagB .nav-link:focus {
  outline: none;
}
.cid-tlUeTkCagB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlUeTkCagB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlUeTkCagB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlUeTkCagB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlUeTkCagB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlUeTkCagB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlUeTkCagB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlUeTkCagB .navbar.opened {
  transition: all 0.3s;
}
.cid-tlUeTkCagB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlUeTkCagB .navbar .navbar-logo img {
  width: auto;
}
.cid-tlUeTkCagB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlUeTkCagB .navbar.collapsed {
  justify-content: center;
}
.cid-tlUeTkCagB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlUeTkCagB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlUeTkCagB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlUeTkCagB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlUeTkCagB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlUeTkCagB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlUeTkCagB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlUeTkCagB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlUeTkCagB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlUeTkCagB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlUeTkCagB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlUeTkCagB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlUeTkCagB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlUeTkCagB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlUeTkCagB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlUeTkCagB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlUeTkCagB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlUeTkCagB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlUeTkCagB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlUeTkCagB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlUeTkCagB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlUeTkCagB .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlUeTkCagB .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlUeTkCagB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlUeTkCagB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlUeTkCagB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlUeTkCagB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlUeTkCagB .dropdown-item.active,
.cid-tlUeTkCagB .dropdown-item:active {
  background-color: transparent;
}
.cid-tlUeTkCagB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlUeTkCagB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlUeTkCagB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlUeTkCagB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlUeTkCagB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlUeTkCagB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlUeTkCagB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlUeTkCagB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlUeTkCagB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlUeTkCagB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlUeTkCagB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlUeTkCagB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlUeTkCagB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlUeTkCagB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlUeTkCagB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlUeTkCagB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlUeTkCagB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlUeTkCagB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlUeTkCagB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlUeTkCagB .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-tlUeTkCagB .navbar {
    height: 70px;
  }
  .cid-tlUeTkCagB .navbar.opened {
    height: auto;
  }
  .cid-tlUeTkCagB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlUeTl6rT0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme24-1800x500.jpg");
}
.cid-tlUeTl6rT0 .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: left;
}
.cid-tlUeTl6rT0 .mbr-section-subtitle {
  margin-top: 32px;
  margin-bottom: 0;
  color: #f3f3f3;
  text-align: left;
}
.cid-tlUeTl6rT0 .mbr-section-btn {
  margin-top: 20px;
}
.cid-u2c5HSa4x3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2c5HSa4x3 .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-u2c5HSa4x3 .mbr-text {
  line-height: 1.15;
}
.cid-u2c5HSa4x3 .bottom_box {
  margin-top: 4rem;
}
.cid-u2c5HSa4x3 .title {
  position: relative;
  z-index: 1;
}
.cid-u2c5HSa4x3 .name {
  margin-bottom: 1rem;
  text-align: left;
  color: #000000;
}
.cid-u2c5HSa4x3 b,
.cid-u2c5HSa4x3 strong {
  font-weight: 500;
  color: #7e7e7e;
}
.cid-u2c5HSa4x3 .linkBtn {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u2c5HSa4x3 .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-u2c5HSa4x3 .bottom_box {
    margin-top: 2rem;
    text-align: left;
  }
  .cid-u2c5HSa4x3 .linkBtn {
    margin-top: 1.5rem;
  }
  .cid-u2c5HSa4x3 .name {
    margin-bottom: .5rem;
  }
}
.cid-u2c5HSa4x3 .mbr-text,
.cid-u2c5HSa4x3 .linkBtn {
  color: #091210;
}
.cid-u2c5HSa4x3 .prof {
  text-align: left;
}
.cid-tm3cw2841t.popup-builder {
  background-color: #ffffff;
}
.cid-tm3cw2841t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tm3cw2841t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tm3cw2841t .modal-content,
.cid-tm3cw2841t .modal-dialog {
  height: auto;
}
.cid-tm3cw2841t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tm3cw2841t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tm3cw2841t .form-wrapper .mbr-form .form-group,
  .cid-tm3cw2841t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tm3cw2841t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tm3cw2841t .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm3cw2841t .mbr-text {
  text-align: center;
  color: #f82222;
}
.cid-tm3cw2841t .pt-0 {
  padding-top: 0 !important;
}
.cid-tm3cw2841t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tm3cw2841t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tm3cw2841t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tm3cw2841t .modal-open {
  overflow: hidden;
}
.cid-tm3cw2841t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tm3cw2841t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tm3cw2841t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tm3cw2841t .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tm3cw2841t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tm3cw2841t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tm3cw2841t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tm3cw2841t .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tm3cw2841t .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tm3cw2841t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tm3cw2841t .modal-backdrop.fade {
  opacity: 0;
}
.cid-tm3cw2841t .modal-backdrop.show {
  opacity: .5;
}
.cid-tm3cw2841t .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tm3cw2841t .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3cw2841t .modal-header {
    padding: 1rem;
  }
}
.cid-tm3cw2841t .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tm3cw2841t .modal-header .close svg {
  fill: #353535;
}
.cid-tm3cw2841t .modal-header .close:hover {
  opacity: 1;
}
.cid-tm3cw2841t .modal-header .close:focus {
  outline: none;
}
.cid-tm3cw2841t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e1201d;
}
.cid-tm3cw2841t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tm3cw2841t .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3cw2841t .modal-body {
    padding: 1rem;
  }
}
.cid-tm3cw2841t .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm3cw2841t .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3cw2841t .modal-footer {
    padding: 1rem;
  }
}
.cid-tm3cw2841t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tm3cw2841t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tm3cw2841t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tm3cw2841t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tm3cw2841t .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tm3cw2841t .modal-lg,
  .cid-tm3cw2841t .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tm3cw2841t .modal-xl {
    max-width: 1140px;
  }
}
.cid-tm3cw2841t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tm3cw2841t .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tm3cw2841t .form-group {
  margin-bottom: 1rem;
}
.cid-tm3cw2841t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tm3cw2841t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tm3cw2841t .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tm3cw2841t .mbr-section-btn {
  margin: 0;
}
.cid-tm3cw2841t .mbr-section-btn .btn {
  margin: 0;
}
.cid-tm0xtRARB8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tm0xtRARB8 .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-tm0xtRARB8 .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-tm0xtRARB8 .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-tm0xtRARB8 .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-tm0xtRARB8 .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-tm0xtRARB8 .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-tm0xtRARB8 .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-tm0xtRARB8 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-tm0xtRARB8 .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-tm0xtRARB8 [class^="socicon-"]:before,
.cid-tm0xtRARB8 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tm0xtRARB8 .mbr-section-title,
.cid-tm0xtRARB8 .mbr-social-likes {
  color: #ffffff;
}
.cid-tlUeTlPHdG {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlUeTlPHdG .content {
    text-align: center;
  }
  .cid-tlUeTlPHdG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlUeTlPHdG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlUeTlPHdG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlUeTlPHdG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlUeTlPHdG .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlUeTlPHdG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlUeTlPHdG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlUeTlPHdG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlUeTlPHdG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlUeTlPHdG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlUeTlPHdG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlUeTlPHdG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlUeTlPHdG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlUeTlPHdG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlUeTlPHdG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlUeTlPHdG .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlLmXd5uMj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlLmXd5uMj nav.navbar {
  position: fixed;
}
.cid-tlLmXd5uMj .btn {
  line-height: 1.2;
}
.cid-tlLmXd5uMj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlLmXd5uMj .nav-link {
  position: relative;
}
.cid-tlLmXd5uMj .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlLmXd5uMj .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlLmXd5uMj .nav-link:hover:before {
  width: 100%;
}
.cid-tlLmXd5uMj .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-tlLmXd5uMj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLmXd5uMj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlLmXd5uMj .dropdown-item:hover,
.cid-tlLmXd5uMj .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlLmXd5uMj .dropdown-item:hover span {
  color: white;
}
.cid-tlLmXd5uMj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlLmXd5uMj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlLmXd5uMj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlLmXd5uMj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlLmXd5uMj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlLmXd5uMj .container {
    flex-wrap: nowrap;
  }
}
.cid-tlLmXd5uMj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlLmXd5uMj .navbar-nav {
  margin: auto;
}
.cid-tlLmXd5uMj .dropdown-menu,
.cid-tlLmXd5uMj .navbar.opened {
  background: #549d0b !important;
}
.cid-tlLmXd5uMj .nav-item:focus,
.cid-tlLmXd5uMj .nav-link:focus {
  outline: none;
}
.cid-tlLmXd5uMj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlLmXd5uMj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlLmXd5uMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlLmXd5uMj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlLmXd5uMj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlLmXd5uMj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlLmXd5uMj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlLmXd5uMj .navbar.opened {
  transition: all 0.3s;
}
.cid-tlLmXd5uMj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlLmXd5uMj .navbar .navbar-logo img {
  width: auto;
}
.cid-tlLmXd5uMj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlLmXd5uMj .navbar.collapsed {
  justify-content: center;
}
.cid-tlLmXd5uMj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlLmXd5uMj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlLmXd5uMj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlLmXd5uMj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlLmXd5uMj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlLmXd5uMj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlLmXd5uMj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlLmXd5uMj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlLmXd5uMj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlLmXd5uMj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlLmXd5uMj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlLmXd5uMj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlLmXd5uMj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlLmXd5uMj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlLmXd5uMj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlLmXd5uMj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlLmXd5uMj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlLmXd5uMj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlLmXd5uMj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlLmXd5uMj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlLmXd5uMj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlLmXd5uMj .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLmXd5uMj .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlLmXd5uMj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlLmXd5uMj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlLmXd5uMj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlLmXd5uMj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlLmXd5uMj .dropdown-item.active,
.cid-tlLmXd5uMj .dropdown-item:active {
  background-color: transparent;
}
.cid-tlLmXd5uMj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlLmXd5uMj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlLmXd5uMj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlLmXd5uMj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlLmXd5uMj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlLmXd5uMj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlLmXd5uMj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlLmXd5uMj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlLmXd5uMj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlLmXd5uMj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlLmXd5uMj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLmXd5uMj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLmXd5uMj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlLmXd5uMj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLmXd5uMj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlLmXd5uMj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlLmXd5uMj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLmXd5uMj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlLmXd5uMj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlLmXd5uMj .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-tlLmXd5uMj .navbar {
    height: 70px;
  }
  .cid-tlLmXd5uMj .navbar.opened {
    height: auto;
  }
  .cid-tlLmXd5uMj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlLnBdjhkG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/office-3.jpg");
}
.cid-tlLnBdjhkG .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tlLnBdjhkG .align-center {
    text-align: center;
  }
}
.cid-tlLnel4qHl {
  background-color: #ffffff;
}
.cid-tlLnel4qHl .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlLnel4qHl .carousel-item > div {
  width: 100%;
}
.cid-tlLnel4qHl h4 {
  margin-top: 1rem;
  margin-bottom: 1.3rem;
  font-weight: 900;
}
.cid-tlLnel4qHl .carousel-item.active,
.cid-tlLnel4qHl .carousel-item-next,
.cid-tlLnel4qHl .carousel-item-prev {
  display: flex;
}
.cid-tlLnel4qHl .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-tlLnel4qHl .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-tlLnel4qHl .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-tlLnel4qHl .carousel-controls a {
    width: 5%;
  }
}
.cid-tlLnel4qHl .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-tlLnel4qHl .img-block {
  display: flex;
  flex-direction: column;
}
.cid-tlLnel4qHl img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-tlLnel4qHl .mbr-text {
  position: relative;
}
.cid-tlLnel4qHl li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.cid-tlLnel4qHl li.active {
  background-color: #ffffff;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-tlLnel4qHl .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
  align-items: center;
}
.cid-tlLnel4qHl ol {
  margin-bottom: 0;
}
.cid-tlLnel4qHl .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-tlLnel4qHl .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-tlLnel4qHl {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (min-width: 767px) {
  .cid-tlLnel4qHl {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .cid-tlLnel4qHl .row {
    margin: 0;
  }
}
.cid-tlLnel4qHl .title-block {
  margin-top: 1.3rem;
  bottom: -1rem;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tlLnel4qHl .desk {
  transition: 0.3s;
  font-weight: 500;
}
.cid-tlLnel4qHl .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  transform: scale(1.1);
}
.cid-tlLnel4qHl .img-block:hover .link {
  border-bottom: 1px solid currentColor;
}
.cid-tlLnel4qHl .img-block:hover .desk {
  color: #101010;
}
.cid-tlLnel4qHl .wrapper-img {
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tlLnel4qHl .img-card {
    margin-top: 2rem;
  }
}
.cid-tlLnel4qHl .link {
  border-bottom: 1px solid #e0e0e0;
  display: inline;
  padding-bottom: 3px;
  transition: all 0.3s;
}
.cid-tlLnel4qHl .mbr-text,
.cid-tlLnel4qHl .subtitle-link {
  color: #000000;
}
.cid-tlLnel4qHl .subtitle-link {
  color: #e1201d;
}
.cid-tm3d4QGMcJ.popup-builder {
  background-color: #ffffff;
}
.cid-tm3d4QGMcJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tm3d4QGMcJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tm3d4QGMcJ .modal-content,
.cid-tm3d4QGMcJ .modal-dialog {
  height: auto;
}
.cid-tm3d4QGMcJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tm3d4QGMcJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tm3d4QGMcJ .form-wrapper .mbr-form .form-group,
  .cid-tm3d4QGMcJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tm3d4QGMcJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tm3d4QGMcJ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm3d4QGMcJ .mbr-text {
  text-align: center;
  color: #f82222;
}
.cid-tm3d4QGMcJ .pt-0 {
  padding-top: 0 !important;
}
.cid-tm3d4QGMcJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tm3d4QGMcJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tm3d4QGMcJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tm3d4QGMcJ .modal-open {
  overflow: hidden;
}
.cid-tm3d4QGMcJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tm3d4QGMcJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tm3d4QGMcJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tm3d4QGMcJ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tm3d4QGMcJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tm3d4QGMcJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tm3d4QGMcJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tm3d4QGMcJ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tm3d4QGMcJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tm3d4QGMcJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tm3d4QGMcJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tm3d4QGMcJ .modal-backdrop.show {
  opacity: .5;
}
.cid-tm3d4QGMcJ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tm3d4QGMcJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d4QGMcJ .modal-header {
    padding: 1rem;
  }
}
.cid-tm3d4QGMcJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tm3d4QGMcJ .modal-header .close svg {
  fill: #353535;
}
.cid-tm3d4QGMcJ .modal-header .close:hover {
  opacity: 1;
}
.cid-tm3d4QGMcJ .modal-header .close:focus {
  outline: none;
}
.cid-tm3d4QGMcJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #e1201d;
}
.cid-tm3d4QGMcJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tm3d4QGMcJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d4QGMcJ .modal-body {
    padding: 1rem;
  }
}
.cid-tm3d4QGMcJ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tm3d4QGMcJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tm3d4QGMcJ .modal-footer {
    padding: 1rem;
  }
}
.cid-tm3d4QGMcJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tm3d4QGMcJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tm3d4QGMcJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tm3d4QGMcJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tm3d4QGMcJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tm3d4QGMcJ .modal-lg,
  .cid-tm3d4QGMcJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tm3d4QGMcJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-tm3d4QGMcJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tm3d4QGMcJ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tm3d4QGMcJ .form-group {
  margin-bottom: 1rem;
}
.cid-tm3d4QGMcJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tm3d4QGMcJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tm3d4QGMcJ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tm3d4QGMcJ .mbr-section-btn {
  margin: 0;
}
.cid-tm3d4QGMcJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-tlLmXe9EGz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlLmXe9EGz .content {
    text-align: center;
  }
  .cid-tlLmXe9EGz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlLmXe9EGz .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlLmXe9EGz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlLmXe9EGz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlLmXe9EGz .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlLmXe9EGz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlLmXe9EGz .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlLmXe9EGz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlLmXe9EGz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlLmXe9EGz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlLmXe9EGz .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlLmXe9EGz .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlLmXe9EGz .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlLmXe9EGz .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlLmXe9EGz .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlLmXe9EGz .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlMwZXV68g {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlMwZXV68g nav.navbar {
  position: fixed;
}
.cid-tlMwZXV68g .btn {
  line-height: 1.2;
}
.cid-tlMwZXV68g .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlMwZXV68g .nav-link {
  position: relative;
}
.cid-tlMwZXV68g .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlMwZXV68g .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlMwZXV68g .nav-link:hover:before {
  width: 100%;
}
.cid-tlMwZXV68g .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-tlMwZXV68g .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlMwZXV68g .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlMwZXV68g .dropdown-item:hover,
.cid-tlMwZXV68g .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlMwZXV68g .dropdown-item:hover span {
  color: white;
}
.cid-tlMwZXV68g .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlMwZXV68g .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlMwZXV68g .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlMwZXV68g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlMwZXV68g .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlMwZXV68g .container {
    flex-wrap: nowrap;
  }
}
.cid-tlMwZXV68g .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlMwZXV68g .navbar-nav {
  margin: auto;
}
.cid-tlMwZXV68g .dropdown-menu,
.cid-tlMwZXV68g .navbar.opened {
  background: #549d0b !important;
}
.cid-tlMwZXV68g .nav-item:focus,
.cid-tlMwZXV68g .nav-link:focus {
  outline: none;
}
.cid-tlMwZXV68g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlMwZXV68g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlMwZXV68g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlMwZXV68g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlMwZXV68g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlMwZXV68g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlMwZXV68g .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlMwZXV68g .navbar.opened {
  transition: all 0.3s;
}
.cid-tlMwZXV68g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlMwZXV68g .navbar .navbar-logo img {
  width: auto;
}
.cid-tlMwZXV68g .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlMwZXV68g .navbar.collapsed {
  justify-content: center;
}
.cid-tlMwZXV68g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlMwZXV68g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlMwZXV68g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlMwZXV68g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlMwZXV68g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlMwZXV68g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlMwZXV68g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlMwZXV68g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlMwZXV68g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlMwZXV68g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlMwZXV68g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlMwZXV68g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlMwZXV68g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlMwZXV68g .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlMwZXV68g .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlMwZXV68g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlMwZXV68g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlMwZXV68g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlMwZXV68g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlMwZXV68g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlMwZXV68g .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlMwZXV68g .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlMwZXV68g .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlMwZXV68g .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlMwZXV68g .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlMwZXV68g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlMwZXV68g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlMwZXV68g .dropdown-item.active,
.cid-tlMwZXV68g .dropdown-item:active {
  background-color: transparent;
}
.cid-tlMwZXV68g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlMwZXV68g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlMwZXV68g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlMwZXV68g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlMwZXV68g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlMwZXV68g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlMwZXV68g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlMwZXV68g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlMwZXV68g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlMwZXV68g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlMwZXV68g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlMwZXV68g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlMwZXV68g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlMwZXV68g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlMwZXV68g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlMwZXV68g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlMwZXV68g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlMwZXV68g .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlMwZXV68g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlMwZXV68g .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-tlMwZXV68g .navbar {
    height: 70px;
  }
  .cid-tlMwZXV68g .navbar.opened {
    height: auto;
  }
  .cid-tlMwZXV68g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlMwZYwfB3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-003jpg-1800x500.jpg");
}
.cid-tlMwZYwfB3 .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tlMwZYwfB3 .align-center {
    text-align: center;
  }
}
.cid-tlMyCvnXsL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tlMyCvnXsL .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tlMyCvnXsL h2,
.cid-tlMyCvnXsL h3,
.cid-tlMyCvnXsL h4,
.cid-tlMyCvnXsL h5 {
  margin: 0;
}
.cid-tlMyCvnXsL .mbr-section-head {
  margin-bottom: 40px;
}
.cid-tlMyCvnXsL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-tlMyCvnXsL .mbr-section-subtitle {
  text-align: center;
}
.cid-tlMyCvnXsL .mbr-card-title {
  color: #000000;
  margin-bottom: 24px;
}
.cid-tlMyCvnXsL .mbr-card-subtitle {
  color: #6b6b6b;
  margin-top: 28px;
  margin-bottom: -7px;
}
.cid-tlMyCvnXsL .image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.cid-tlMyCvnXsL .image-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 680px) {
  .cid-tlMyCvnXsL .image-wrap {
    width: 100%;
  }
}
.cid-tlMyCvnXsL img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tlMyCvnXsL .text-wrap {
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 270px;
  min-height: 92px;
  padding-left: 28px;
  background: #ffffff;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.7s cubic-bezier(0.16, 0.09, 0, 1.02) 0s;
}
@media (max-width: 400px) {
  .cid-tlMyCvnXsL .text-wrap {
    bottom: 20px;
  }
}
.cid-tlMyCvnXsL .image-wrap:hover .text-wrap {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.cid-tlMwZZfk9r {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlMwZZfk9r .content {
    text-align: center;
  }
  .cid-tlMwZZfk9r .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlMwZZfk9r .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlMwZZfk9r .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlMwZZfk9r .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlMwZZfk9r .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlMwZZfk9r .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlMwZZfk9r .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlMwZZfk9r .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlMwZZfk9r .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlMwZZfk9r .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlMwZZfk9r .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlMwZZfk9r .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlMwZZfk9r .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlMwZZfk9r .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlMwZZfk9r .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlMwZZfk9r .list {
  list-style-type: none;
  padding: 0;
}
.cid-tm3htEBeiH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tm3htEBeiH nav.navbar {
  position: fixed;
}
.cid-tm3htEBeiH .btn {
  line-height: 1.2;
}
.cid-tm3htEBeiH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tm3htEBeiH .nav-link {
  position: relative;
}
.cid-tm3htEBeiH .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tm3htEBeiH .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tm3htEBeiH .nav-link:hover:before {
  width: 100%;
}
.cid-tm3htEBeiH .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-tm3htEBeiH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tm3htEBeiH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tm3htEBeiH .dropdown-item:hover,
.cid-tm3htEBeiH .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tm3htEBeiH .dropdown-item:hover span {
  color: white;
}
.cid-tm3htEBeiH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tm3htEBeiH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tm3htEBeiH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tm3htEBeiH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tm3htEBeiH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tm3htEBeiH .container {
    flex-wrap: nowrap;
  }
}
.cid-tm3htEBeiH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tm3htEBeiH .navbar-nav {
  margin: auto;
}
.cid-tm3htEBeiH .dropdown-menu,
.cid-tm3htEBeiH .navbar.opened {
  background: #549d0b !important;
}
.cid-tm3htEBeiH .nav-item:focus,
.cid-tm3htEBeiH .nav-link:focus {
  outline: none;
}
.cid-tm3htEBeiH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tm3htEBeiH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm3htEBeiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tm3htEBeiH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tm3htEBeiH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tm3htEBeiH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tm3htEBeiH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tm3htEBeiH .navbar.opened {
  transition: all 0.3s;
}
.cid-tm3htEBeiH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tm3htEBeiH .navbar .navbar-logo img {
  width: auto;
}
.cid-tm3htEBeiH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tm3htEBeiH .navbar.collapsed {
  justify-content: center;
}
.cid-tm3htEBeiH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tm3htEBeiH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tm3htEBeiH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tm3htEBeiH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tm3htEBeiH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tm3htEBeiH .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tm3htEBeiH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tm3htEBeiH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tm3htEBeiH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tm3htEBeiH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tm3htEBeiH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tm3htEBeiH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tm3htEBeiH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tm3htEBeiH .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tm3htEBeiH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tm3htEBeiH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tm3htEBeiH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tm3htEBeiH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tm3htEBeiH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tm3htEBeiH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tm3htEBeiH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tm3htEBeiH .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tm3htEBeiH .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tm3htEBeiH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tm3htEBeiH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tm3htEBeiH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tm3htEBeiH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tm3htEBeiH .dropdown-item.active,
.cid-tm3htEBeiH .dropdown-item:active {
  background-color: transparent;
}
.cid-tm3htEBeiH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tm3htEBeiH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tm3htEBeiH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tm3htEBeiH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tm3htEBeiH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tm3htEBeiH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm3htEBeiH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tm3htEBeiH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tm3htEBeiH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tm3htEBeiH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tm3htEBeiH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm3htEBeiH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm3htEBeiH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tm3htEBeiH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm3htEBeiH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tm3htEBeiH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tm3htEBeiH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm3htEBeiH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tm3htEBeiH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tm3htEBeiH .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-tm3htEBeiH .navbar {
    height: 70px;
  }
  .cid-tm3htEBeiH .navbar.opened {
    height: auto;
  }
  .cid-tm3htEBeiH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tm3htF5BSp {
  background-image: url("../../../assets/images/le-garde-manger-saguenay-batisse-6-1920x1000.jpg");
}
.cid-tm3htF5BSp .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tm3htF5BSp .align-center {
    text-align: center;
  }
}
.cid-tAwvYyRyAd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tAwvYyRyAd nav.navbar {
  position: fixed;
}
.cid-tAwvYyRyAd .btn {
  line-height: 1.2;
}
.cid-tAwvYyRyAd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tAwvYyRyAd .nav-link {
  position: relative;
}
.cid-tAwvYyRyAd .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tAwvYyRyAd .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tAwvYyRyAd .nav-link:hover:before {
  width: 100%;
}
.cid-tAwvYyRyAd .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-tAwvYyRyAd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAwvYyRyAd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tAwvYyRyAd .dropdown-item:hover,
.cid-tAwvYyRyAd .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tAwvYyRyAd .dropdown-item:hover span {
  color: white;
}
.cid-tAwvYyRyAd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tAwvYyRyAd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tAwvYyRyAd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tAwvYyRyAd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tAwvYyRyAd .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tAwvYyRyAd .container {
    flex-wrap: nowrap;
  }
}
.cid-tAwvYyRyAd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tAwvYyRyAd .navbar-nav {
  margin: auto;
}
.cid-tAwvYyRyAd .dropdown-menu,
.cid-tAwvYyRyAd .navbar.opened {
  background: #549d0b !important;
}
.cid-tAwvYyRyAd .nav-item:focus,
.cid-tAwvYyRyAd .nav-link:focus {
  outline: none;
}
.cid-tAwvYyRyAd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tAwvYyRyAd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAwvYyRyAd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tAwvYyRyAd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tAwvYyRyAd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tAwvYyRyAd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tAwvYyRyAd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tAwvYyRyAd .navbar.opened {
  transition: all 0.3s;
}
.cid-tAwvYyRyAd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tAwvYyRyAd .navbar .navbar-logo img {
  width: auto;
}
.cid-tAwvYyRyAd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tAwvYyRyAd .navbar.collapsed {
  justify-content: center;
}
.cid-tAwvYyRyAd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tAwvYyRyAd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tAwvYyRyAd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tAwvYyRyAd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tAwvYyRyAd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tAwvYyRyAd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tAwvYyRyAd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tAwvYyRyAd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tAwvYyRyAd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tAwvYyRyAd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tAwvYyRyAd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tAwvYyRyAd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tAwvYyRyAd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tAwvYyRyAd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tAwvYyRyAd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tAwvYyRyAd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tAwvYyRyAd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tAwvYyRyAd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tAwvYyRyAd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tAwvYyRyAd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tAwvYyRyAd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tAwvYyRyAd .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tAwvYyRyAd .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tAwvYyRyAd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tAwvYyRyAd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tAwvYyRyAd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tAwvYyRyAd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tAwvYyRyAd .dropdown-item.active,
.cid-tAwvYyRyAd .dropdown-item:active {
  background-color: transparent;
}
.cid-tAwvYyRyAd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tAwvYyRyAd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tAwvYyRyAd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tAwvYyRyAd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tAwvYyRyAd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tAwvYyRyAd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAwvYyRyAd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tAwvYyRyAd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tAwvYyRyAd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tAwvYyRyAd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tAwvYyRyAd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAwvYyRyAd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tAwvYyRyAd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tAwvYyRyAd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAwvYyRyAd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tAwvYyRyAd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tAwvYyRyAd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tAwvYyRyAd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tAwvYyRyAd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tAwvYyRyAd .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-tAwvYyRyAd .navbar {
    height: 70px;
  }
  .cid-tAwvYyRyAd .navbar.opened {
    height: auto;
  }
  .cid-tAwvYyRyAd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tAwvYAzADt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tAwvYAzADt h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tAwvYAzADt .container {
    position: relative;
  }
  .cid-tAwvYAzADt .row {
    margin: 0;
  }
  .cid-tAwvYAzADt h2 {
    margin: 0;
  }
}
.cid-tAwvYAzADt .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tAwvYAzADt .mbr-text {
  margin-top: 1.4rem;
  color: #02602b;
}
.cid-tAwvYAzADt h2 {
  color: #02602b;
}
.cid-tAwvYAOLXs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-005jpg-1800x700.jpg");
}
.cid-tAwvYAOLXs .text {
  display: flex;
  align-items: center;
}
.cid-tAwvYAOLXs .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-tAwvYAOLXs .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-tAwvYAOLXs .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-tAwvYAOLXs .btn:hover {
  box-shadow: none;
}
.cid-tAwvYAOLXs .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tAwvYAOLXs .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tAwvYAOLXs .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tAwvYAOLXs .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tAwvYAOLXs .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-tAwvYAOLXs .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tAwvYAOLXs .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tAwvYAOLXs .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-tAwvYAOLXs .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-tAwvYAOLXs .row:hover img {
  transform: rotate(0deg);
}
.cid-tAwvYAOLXs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAwvYAOLXs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAwvYB3iku {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tAwvYB3iku .mbr-text,
.cid-tAwvYB3iku .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-tAwvYB3iku H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-tAwvYBiicA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tAwvYBiicA .content {
    text-align: center;
  }
  .cid-tAwvYBiicA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tAwvYBiicA .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tAwvYBiicA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tAwvYBiicA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tAwvYBiicA .google-map {
  height: 25rem;
  position: relative;
}
.cid-tAwvYBiicA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tAwvYBiicA .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tAwvYBiicA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tAwvYBiicA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tAwvYBiicA .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tAwvYBiicA .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tAwvYBiicA .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tAwvYBiicA .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tAwvYBiicA .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tAwvYBiicA .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tAwvYBiicA .list {
  list-style-type: none;
  padding: 0;
}
.cid-tm3dja4JxR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tm3dja4JxR nav.navbar {
  position: fixed;
}
.cid-tm3dja4JxR .btn {
  line-height: 1.2;
}
.cid-tm3dja4JxR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tm3dja4JxR .nav-link {
  position: relative;
}
.cid-tm3dja4JxR .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tm3dja4JxR .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tm3dja4JxR .nav-link:hover:before {
  width: 100%;
}
.cid-tm3dja4JxR .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-tm3dja4JxR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tm3dja4JxR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tm3dja4JxR .dropdown-item:hover,
.cid-tm3dja4JxR .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tm3dja4JxR .dropdown-item:hover span {
  color: white;
}
.cid-tm3dja4JxR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tm3dja4JxR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tm3dja4JxR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tm3dja4JxR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tm3dja4JxR .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tm3dja4JxR .container {
    flex-wrap: nowrap;
  }
}
.cid-tm3dja4JxR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tm3dja4JxR .navbar-nav {
  margin: auto;
}
.cid-tm3dja4JxR .dropdown-menu,
.cid-tm3dja4JxR .navbar.opened {
  background: #549d0b !important;
}
.cid-tm3dja4JxR .nav-item:focus,
.cid-tm3dja4JxR .nav-link:focus {
  outline: none;
}
.cid-tm3dja4JxR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tm3dja4JxR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm3dja4JxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tm3dja4JxR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tm3dja4JxR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tm3dja4JxR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tm3dja4JxR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tm3dja4JxR .navbar.opened {
  transition: all 0.3s;
}
.cid-tm3dja4JxR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tm3dja4JxR .navbar .navbar-logo img {
  width: auto;
}
.cid-tm3dja4JxR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tm3dja4JxR .navbar.collapsed {
  justify-content: center;
}
.cid-tm3dja4JxR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tm3dja4JxR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tm3dja4JxR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tm3dja4JxR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tm3dja4JxR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tm3dja4JxR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tm3dja4JxR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tm3dja4JxR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tm3dja4JxR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tm3dja4JxR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tm3dja4JxR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tm3dja4JxR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tm3dja4JxR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tm3dja4JxR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tm3dja4JxR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tm3dja4JxR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tm3dja4JxR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tm3dja4JxR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tm3dja4JxR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tm3dja4JxR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tm3dja4JxR .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tm3dja4JxR .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tm3dja4JxR .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tm3dja4JxR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tm3dja4JxR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tm3dja4JxR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tm3dja4JxR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tm3dja4JxR .dropdown-item.active,
.cid-tm3dja4JxR .dropdown-item:active {
  background-color: transparent;
}
.cid-tm3dja4JxR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tm3dja4JxR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tm3dja4JxR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tm3dja4JxR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tm3dja4JxR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tm3dja4JxR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm3dja4JxR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tm3dja4JxR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tm3dja4JxR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tm3dja4JxR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tm3dja4JxR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm3dja4JxR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tm3dja4JxR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tm3dja4JxR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm3dja4JxR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tm3dja4JxR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tm3dja4JxR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tm3dja4JxR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tm3dja4JxR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tm3dja4JxR .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-tm3dja4JxR .navbar {
    height: 70px;
  }
  .cid-tm3dja4JxR .navbar.opened {
    height: auto;
  }
  .cid-tm3dja4JxR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tm3djaD5RK {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tm3djaD5RK .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tm3djaD5RK .align-center {
    text-align: center;
  }
}
.cid-tm3djaD5RK H1 {
  color: #013607;
}
.cid-tm3dE8Cj4B {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tm3dE8Cj4B .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tm3dE8Cj4B .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tm3dE8Cj4B .container-fluid {
    padding: 0.5rem;
  }
}
@media (min-width: 767px) {
  .cid-tm3dE8Cj4B .container-fluid {
    padding: 0 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tm3dE8Cj4B .container-fluid {
    padding: 0 1.7rem;
  }
}
.cid-tm3dE8Cj4B .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div:hover:before {
  z-index: 5;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div:hover .icon-focus {
  opacity: 0.8 !important;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
.cid-tm3dE8Cj4B .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-tm3dE8Cj4B .icon-focus {
  font-family: 'Moririse2' !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 6px;
}
.cid-tm3dE8Cj4B .icon-focus:before {
  content: '\e970';
  font-size: 1.2rem;
  color: black;
}
.cid-tm3dE8Cj4B .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div {
  overflow: hidden;
}
.cid-tm3dE8Cj4B .mbr-gallery-item img {
  transition: all 2s !important;
}
.cid-tm3dE8Cj4B .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tm3dE8Cj4B .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 5;
}
.cid-tm3dE8Cj4B .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.4;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tm3djbEVL5 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tm3djbEVL5 .content {
    text-align: center;
  }
  .cid-tm3djbEVL5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tm3djbEVL5 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tm3djbEVL5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tm3djbEVL5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tm3djbEVL5 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tm3djbEVL5 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tm3djbEVL5 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tm3djbEVL5 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tm3djbEVL5 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tm3djbEVL5 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tm3djbEVL5 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tm3djbEVL5 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tm3djbEVL5 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tm3djbEVL5 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tm3djbEVL5 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tm3djbEVL5 .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlLuS2BUiT {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlLuS2BUiT nav.navbar {
  position: fixed;
}
.cid-tlLuS2BUiT .btn {
  line-height: 1.2;
}
.cid-tlLuS2BUiT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlLuS2BUiT .nav-link {
  position: relative;
}
.cid-tlLuS2BUiT .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlLuS2BUiT .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlLuS2BUiT .nav-link:hover:before {
  width: 100%;
}
.cid-tlLuS2BUiT .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-tlLuS2BUiT .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLuS2BUiT .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlLuS2BUiT .dropdown-item:hover,
.cid-tlLuS2BUiT .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlLuS2BUiT .dropdown-item:hover span {
  color: white;
}
.cid-tlLuS2BUiT .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlLuS2BUiT .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlLuS2BUiT .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlLuS2BUiT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlLuS2BUiT .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlLuS2BUiT .container {
    flex-wrap: nowrap;
  }
}
.cid-tlLuS2BUiT .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlLuS2BUiT .navbar-nav {
  margin: auto;
}
.cid-tlLuS2BUiT .dropdown-menu,
.cid-tlLuS2BUiT .navbar.opened {
  background: #549d0b !important;
}
.cid-tlLuS2BUiT .nav-item:focus,
.cid-tlLuS2BUiT .nav-link:focus {
  outline: none;
}
.cid-tlLuS2BUiT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlLuS2BUiT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlLuS2BUiT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlLuS2BUiT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlLuS2BUiT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlLuS2BUiT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlLuS2BUiT .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlLuS2BUiT .navbar.opened {
  transition: all 0.3s;
}
.cid-tlLuS2BUiT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlLuS2BUiT .navbar .navbar-logo img {
  width: auto;
}
.cid-tlLuS2BUiT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlLuS2BUiT .navbar.collapsed {
  justify-content: center;
}
.cid-tlLuS2BUiT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlLuS2BUiT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlLuS2BUiT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlLuS2BUiT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlLuS2BUiT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlLuS2BUiT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlLuS2BUiT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlLuS2BUiT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlLuS2BUiT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlLuS2BUiT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlLuS2BUiT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlLuS2BUiT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlLuS2BUiT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlLuS2BUiT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlLuS2BUiT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlLuS2BUiT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlLuS2BUiT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlLuS2BUiT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlLuS2BUiT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlLuS2BUiT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlLuS2BUiT .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlLuS2BUiT .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLuS2BUiT .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlLuS2BUiT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlLuS2BUiT .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlLuS2BUiT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlLuS2BUiT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlLuS2BUiT .dropdown-item.active,
.cid-tlLuS2BUiT .dropdown-item:active {
  background-color: transparent;
}
.cid-tlLuS2BUiT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlLuS2BUiT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlLuS2BUiT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlLuS2BUiT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlLuS2BUiT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlLuS2BUiT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlLuS2BUiT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlLuS2BUiT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlLuS2BUiT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlLuS2BUiT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlLuS2BUiT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLuS2BUiT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLuS2BUiT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlLuS2BUiT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLuS2BUiT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlLuS2BUiT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlLuS2BUiT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLuS2BUiT .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlLuS2BUiT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlLuS2BUiT .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-tlLuS2BUiT .navbar {
    height: 70px;
  }
  .cid-tlLuS2BUiT .navbar.opened {
    height: auto;
  }
  .cid-tlLuS2BUiT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlLwDCblGx {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme24-1800x500.jpg");
}
.cid-tlLwDCblGx .btn {
  margin: 0.2rem !important;
}
.cid-tlLwDCblGx .row {
  justify-content: flex-end;
}
.cid-tlLwDCblGx .mbr-text,
.cid-tlLwDCblGx .mbr-section-btn {
  color: #ffffff;
}
.cid-tlLwDCblGx H3 {
  color: #cccccc;
}
.cid-tlRN3yG8Kf {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tlRN3yG8Kf .mbr-section-title {
  color: #02602b;
}
.cid-tlRN3yG8Kf .mbr-section-subtitle {
  color: #02602b;
}
.cid-tlRN3yG8Kf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlRN3yG8Kf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlRTQRRQE0 {
  background-color: #ffffff;
}
.cid-tlRTQRRQE0 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlRTQRRQE0 .carousel-item > div {
  width: 100%;
}
.cid-tlRTQRRQE0 h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-tlRTQRRQE0 .carousel-item.active,
.cid-tlRTQRRQE0 .carousel-item-next,
.cid-tlRTQRRQE0 .carousel-item-prev {
  display: flex;
}
.cid-tlRTQRRQE0 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-tlRTQRRQE0 .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-tlRTQRRQE0 .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-tlRTQRRQE0 .carousel-controls a {
    width: 5%;
  }
}
.cid-tlRTQRRQE0 .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-tlRTQRRQE0 .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-tlRTQRRQE0 .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-tlRTQRRQE0 img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-tlRTQRRQE0 li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-tlRTQRRQE0 li.active {
  background-color: #ffffff;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-tlRTQRRQE0 .carousel-indicators {
  position: absolute;
  bottom: -2.3rem;
  align-items: center;
}
.cid-tlRTQRRQE0 .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-tlRTQRRQE0 .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-tlRTQRRQE0 {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-tlRTQRRQE0 .col-md-3 {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-tlRTQRRQE0 {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
.cid-tlRTQRRQE0 a {
  color: #fff;
  line-height: 1.5;
}
.cid-tlRTQRRQE0 .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tlRTQRRQE0 .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-tlRTQRRQE0 .desk {
  color: #fff;
}
.cid-tlRTQRRQE0 .signature {
  color: #fff;
}
.cid-tlRTQRRQE0 .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-tlRTQRRQE0 .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-tlRTQRRQE0 .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-tlRTQRRQE0 .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-tlRTQRRQE0 .img-card {
    margin-top: 2rem;
  }
}
.cid-tlNekJnaGg {
  padding-top: 60px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tlNekJnaGg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tlNekJnaGg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tlNekJnaGg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tlNekJnaGg .mbr-slider .modal-body .close {
  background: #035846;
}
.cid-tlNekJnaGg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-tlNekJnaGg .icon-focus {
  display: none;
}
.cid-tlNekJnaGg .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tlNekJnaGg ul {
  font-size: 0;
}
.cid-tlNekJnaGg .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tlNekJnaGg .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tlNekJnaGg .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #de0c08, #7e7e7e);
}
.cid-tlNekJnaGg .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tlNekJnaGg .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tlNekJnaGg .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tlNekJnaGg .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tlNekJnaGg .btn:hover {
  background: transparent !important;
}
.cid-tlNekJnaGg .btn:hover:before {
  background: transparent !important;
}
.cid-tlNekJnaGg .btn:before {
  background-color: transparent !important;
}
.cid-tlNekJnaGg .btn:focus {
  box-shadow: none;
}
.cid-tlNekJnaGg .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.cid-tlMO0YBnri {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tlMO0YBnri h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tlMO0YBnri .container {
    position: relative;
  }
  .cid-tlMO0YBnri .row {
    margin: 0;
  }
  .cid-tlMO0YBnri h2 {
    margin: 0;
  }
}
.cid-tlMO0YBnri .mbr-section-subtitle {
  color: #e9204f;
}
.cid-tlMO0YBnri .mbr-text {
  margin-top: 1.4rem;
  color: #02602b;
}
.cid-tlMO0YBnri h2 {
  color: #02602b;
}
.cid-tlMFfVce9x {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-005jpg-1800x700.jpg");
}
.cid-tlMFfVce9x .text {
  display: flex;
  align-items: center;
}
.cid-tlMFfVce9x .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-tlMFfVce9x .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-tlMFfVce9x .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-tlMFfVce9x .btn:hover {
  box-shadow: none;
}
.cid-tlMFfVce9x .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tlMFfVce9x .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-tlMFfVce9x .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tlMFfVce9x .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tlMFfVce9x .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-tlMFfVce9x .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tlMFfVce9x .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-tlMFfVce9x .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-tlMFfVce9x .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-tlMFfVce9x .row:hover img {
  transform: rotate(0deg);
}
.cid-tlMFfVce9x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlMFfVce9x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlMKxvpIJh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tlMKxvpIJh .mbr-text,
.cid-tlMKxvpIJh .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-tlMKxvpIJh H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-tlLuS5anIZ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-tlLuS5anIZ .content {
    text-align: center;
  }
  .cid-tlLuS5anIZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tlLuS5anIZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-tlLuS5anIZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tlLuS5anIZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-tlLuS5anIZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-tlLuS5anIZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlLuS5anIZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlLuS5anIZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlLuS5anIZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tlLuS5anIZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tlLuS5anIZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tlLuS5anIZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-tlLuS5anIZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-tlLuS5anIZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlLuS5anIZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlLuS5anIZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-tlLp1iW9fU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlLp1iW9fU nav.navbar {
  position: fixed;
}
.cid-tlLp1iW9fU .btn {
  line-height: 1.2;
}
.cid-tlLp1iW9fU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlLp1iW9fU .nav-link {
  position: relative;
}
.cid-tlLp1iW9fU .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-tlLp1iW9fU .nav-link:hover {
  color: #ffefbf !important;
}
.cid-tlLp1iW9fU .nav-link:hover:before {
  width: 100%;
}
.cid-tlLp1iW9fU .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-tlLp1iW9fU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLp1iW9fU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlLp1iW9fU .dropdown-item:hover,
.cid-tlLp1iW9fU .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-tlLp1iW9fU .dropdown-item:hover span {
  color: white;
}
.cid-tlLp1iW9fU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlLp1iW9fU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlLp1iW9fU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlLp1iW9fU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-tlLp1iW9fU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlLp1iW9fU .container {
    flex-wrap: nowrap;
  }
}
.cid-tlLp1iW9fU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlLp1iW9fU .navbar-nav {
  margin: auto;
}
.cid-tlLp1iW9fU .dropdown-menu,
.cid-tlLp1iW9fU .navbar.opened {
  background: #549d0b !important;
}
.cid-tlLp1iW9fU .nav-item:focus,
.cid-tlLp1iW9fU .nav-link:focus {
  outline: none;
}
.cid-tlLp1iW9fU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlLp1iW9fU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlLp1iW9fU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlLp1iW9fU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlLp1iW9fU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlLp1iW9fU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlLp1iW9fU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-tlLp1iW9fU .navbar.opened {
  transition: all 0.3s;
}
.cid-tlLp1iW9fU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlLp1iW9fU .navbar .navbar-logo img {
  width: auto;
}
.cid-tlLp1iW9fU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tlLp1iW9fU .navbar.collapsed {
  justify-content: center;
}
.cid-tlLp1iW9fU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlLp1iW9fU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tlLp1iW9fU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tlLp1iW9fU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlLp1iW9fU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlLp1iW9fU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tlLp1iW9fU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlLp1iW9fU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlLp1iW9fU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlLp1iW9fU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlLp1iW9fU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlLp1iW9fU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlLp1iW9fU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlLp1iW9fU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tlLp1iW9fU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlLp1iW9fU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlLp1iW9fU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlLp1iW9fU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlLp1iW9fU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlLp1iW9fU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlLp1iW9fU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlLp1iW9fU .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlLp1iW9fU .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-tlLp1iW9fU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlLp1iW9fU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlLp1iW9fU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlLp1iW9fU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlLp1iW9fU .dropdown-item.active,
.cid-tlLp1iW9fU .dropdown-item:active {
  background-color: transparent;
}
.cid-tlLp1iW9fU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlLp1iW9fU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlLp1iW9fU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlLp1iW9fU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-tlLp1iW9fU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlLp1iW9fU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlLp1iW9fU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlLp1iW9fU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlLp1iW9fU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlLp1iW9fU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlLp1iW9fU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLp1iW9fU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlLp1iW9fU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlLp1iW9fU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLp1iW9fU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlLp1iW9fU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlLp1iW9fU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlLp1iW9fU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlLp1iW9fU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlLp1iW9fU .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-tlLp1iW9fU .navbar {
    height: 70px;
  }
  .cid-tlLp1iW9fU .navbar.opened {
    height: auto;
  }
  .cid-tlLp1iW9fU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlLp1jCW7t {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme15-1440x800.jpg");
}
.cid-tlLp1jCW7t .mbr-text {
  margin-bottom: 3.2rem;
}
@media (max-width: 767px) {
  .cid-tlLp1jCW7t .align-center {
    text-align: center;
  }
}
.cid-tlLp1jCW7t H1 {
  color: #034d0b;
}
.cid-tlPzDTAiVz {
  padding-top: 15px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme16-1440x800.jpg");
}
.cid-tlPzDTAiVz .mbr-overlay {
  background-color: #627864;
  opacity: 0.8;
}
.cid-tlPzDTAiVz input,
.cid-tlPzDTAiVz textarea {
  font-size: 16px;
}
.cid-tlPzDTAiVz input {
  padding: 1.5rem 1.8rem !important;
  border-radius: 50px;
}
.cid-tlPzDTAiVz textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  min-height: 160px !important;
}
.cid-tlPzDTAiVz .form-group {
  margin-bottom: 1.3rem;
}
.cid-tlPzDTAiVz .block-title {
  margin-bottom: 0.7rem;
}
.cid-tlPzDTAiVz .form-control:hover,
.cid-tlPzDTAiVz .form-control:focus {
  color: #808080 !important;
}
.cid-tlPzDTAiVz .mbr-section-subtitle {
  font-weight: 700;
}
.cid-tlPzDTAiVz img {
  width: 90%;
  border-radius: 8px;
}
.cid-tlPzDTAiVz .btn {
  border-radius: 30px;
}
.cid-tlPzDTAiVz .form-control,
.cid-tlPzDTAiVz .field-input {
  padding: 0.5rem;
  background-color: #f3f3f3;
  border-color: #272727;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlPzDTAiVz .form-control:hover,
.cid-tlPzDTAiVz .field-input:hover {
  background-color: #ffffff;
  border-color: #f3f3f3 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlPzDTAiVz .form-control:focus,
.cid-tlPzDTAiVz .field-input:focus {
  background-color: #ffffff;
  border-color: #f3f3f3 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlPzDTAiVz input::-webkit-input-placeholder,
.cid-tlPzDTAiVz textarea::-webkit-input-placeholder {
  color: #808080;
}
.cid-tlPzDTAiVz input:-moz-placeholder,
.cid-tlPzDTAiVz textarea:-moz-placeholder {
  color: #808080;
}
.cid-tlPzDTAiVz .jq-selectbox li,
.cid-tlPzDTAiVz .jq-selectbox li {
  background-color: #f3f3f3;
  color: #000000;
}
.cid-tlPzDTAiVz .jq-selectbox li:hover,
.cid-tlPzDTAiVz .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tlPzDTAiVz .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f3f3f3;
}
.cid-tlPzDTAiVz .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tlPzDTAiVz img {
    width: 100%;
  }
  .cid-tlPzDTAiVz .google-map {
    margin-bottom: 2rem;
  }
}
.cid-tlPzDTAiVz .google-map {
  height: 100%;
  min-height: 30rem;
  position: relative;
  filter: grayscale(1);
  padding-right: 0.5rem;
}
.cid-tlPzDTAiVz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tlPzDTAiVz .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tlPzDTAiVz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tlPzDTAiVz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 576px) {
  .cid-tlPzDTAiVz .col-auto {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tlPzDTAiVz .mbr-form {
    margin-top: 2rem;
  }
  .cid-tlPzDTAiVz .btn {
    width: 100%;
  }
}
@media (min-width: 776px) and (max-width: 992px) {
  .cid-tlPzDTAiVz .mbr-form {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tlPzDTAiVz .form-row > [class*="col-"] {
    padding: 0 1rem;
  }
}
.cid-tlPzDTAiVz H5 {
  color: #003a2e;
}
.cid-tlPzDTAiVz H6 {
  color: #013607;
}
.cid-tlSgKy2Y6B {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tlSgKy2Y6B .title_block {
  margin-bottom: 30px;
}
.cid-tlSgKy2Y6B .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #02602b;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-tlSgKy2Y6B .mbr-section-title {
  color: #02602b;
}
.cid-tlSgKy2Y6B .item-wrapper {
  margin: 50px auto 0px;
  overflow: visible;
}
.cid-tlSgKy2Y6B .item-wrapper:hover .item-img {
  transform: translateY(-16px);
  box-shadow: 0px 0px 0px 0px rgba(251, 186, 77, 0);
}
.cid-tlSgKy2Y6B .item-wrapper:hover .item-img img {
  opacity: 9.9;
}
.cid-tlSgKy2Y6B .item-wrapper:hover .social_block .iconfont-wrapper {
  opacity: 0;
  visibility: visible;
  transform: translateY(0px);
}
.cid-tlSgKy2Y6B .item-wrapper:hover .social_block .iconfont-wrapper:nth-child(1) {
  transition-delay: 0.05s;
}
.cid-tlSgKy2Y6B .item-wrapper:hover .social_block .iconfont-wrapper:nth-child(2) {
  transition-delay: 0.1s;
}
.cid-tlSgKy2Y6B .item-wrapper:hover .social_block .iconfont-wrapper:nth-child(3) {
  transition-delay: 0.2s;
}
.cid-tlSgKy2Y6B .item-wrapper:hover .social_block .iconfont-wrapper:nth-child(4) {
  transition-delay: 0.3s;
}
.cid-tlSgKy2Y6B .item-img {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.cid-tlSgKy2Y6B img,
.cid-tlSgKy2Y6B .item-img {
  width: 100%;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-image: linear-gradient(90deg, #fbba4d, #02602b);
}
.cid-tlSgKy2Y6B .item:focus,
.cid-tlSgKy2Y6B span:focus {
  outline: none;
}
.cid-tlSgKy2Y6B .social_block {
  margin: 0 auto;
  top: 80%;
  left: 0px;
  right: 0px;
  z-index: 1;
  position: absolute;
  transform: translateY(100%);
}
.cid-tlSgKy2Y6B .social_block .iconfont-wrapper {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  margin-right: 13px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.cid-tlSgKy2Y6B .social_block .mbr-iconfont {
  font-size: 16px;
  line-height: 30px;
  color: contrast(true);
}
.cid-tlSgKy2Y6B .card-title {
  margin-bottom: 5px;
  color: #02602b;
}
.cid-tlSgKy2Y6B .card-text {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tlSgKy2Y6B .title_block {
    margin-bottom: 0;
  }
  .cid-tlSgKy2Y6B .item-wrapper {
    max-width: 255px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-tlSgKy2Y6B .item-wrapper:hover .item-img {
    transform: translateY(0);
  }
  .cid-tlSgKy2Y6B .item-wrapper .item-img {
    box-shadow: 0px 0px 0px 0px rgba(251, 186, 77, 0);
  }
  .cid-tlSgKy2Y6B .item-wrapper .item-img img {
    opacity: .1;
    background-image: linear-gradient(90deg, #fbba4d, #02602b);
  }
  .cid-tlSgKy2Y6B .item-wrapper .social_block .iconfont-wrapper {
    opacity: 0;
    visibility: visible;
    transform: translateY(0px);
  }
  .cid-tlSgKy2Y6B .social_block {
    top: auto;
    bottom: 10%;
    transform: translateY(0);
  }
}
.cid-tlSgKy2Y6B .card-text,
.cid-tlSgKy2Y6B .btn_link {
  color: #02602b;
}
.cid-tlSikPlFzK {
  background-color: #76cc20;
}
.cid-tlSikPlFzK .content {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.cid-tlSikPlFzK .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-tlSikPlFzK .content p {
  margin: 0;
}
.cid-tlSikPlFzK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-u2cJq9vCUU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cJq9vCUU nav.navbar {
  position: fixed;
}
.cid-u2cJq9vCUU .btn {
  line-height: 1.2;
}
.cid-u2cJq9vCUU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cJq9vCUU .nav-link {
  position: relative;
}
.cid-u2cJq9vCUU .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-u2cJq9vCUU .nav-link:hover {
  color: #ffefbf !important;
}
.cid-u2cJq9vCUU .nav-link:hover:before {
  width: 100%;
}
.cid-u2cJq9vCUU .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-u2cJq9vCUU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cJq9vCUU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cJq9vCUU .dropdown-item:hover,
.cid-u2cJq9vCUU .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-u2cJq9vCUU .dropdown-item:hover span {
  color: white;
}
.cid-u2cJq9vCUU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cJq9vCUU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cJq9vCUU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cJq9vCUU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-u2cJq9vCUU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2cJq9vCUU .container {
    flex-wrap: nowrap;
  }
}
.cid-u2cJq9vCUU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cJq9vCUU .navbar-nav {
  margin: auto;
}
.cid-u2cJq9vCUU .dropdown-menu,
.cid-u2cJq9vCUU .navbar.opened {
  background: #549d0b !important;
}
.cid-u2cJq9vCUU .nav-item:focus,
.cid-u2cJq9vCUU .nav-link:focus {
  outline: none;
}
.cid-u2cJq9vCUU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cJq9vCUU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cJq9vCUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cJq9vCUU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cJq9vCUU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cJq9vCUU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cJq9vCUU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-u2cJq9vCUU .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cJq9vCUU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cJq9vCUU .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cJq9vCUU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cJq9vCUU .navbar.collapsed {
  justify-content: center;
}
.cid-u2cJq9vCUU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cJq9vCUU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cJq9vCUU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u2cJq9vCUU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cJq9vCUU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cJq9vCUU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2cJq9vCUU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cJq9vCUU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cJq9vCUU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cJq9vCUU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cJq9vCUU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cJq9vCUU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cJq9vCUU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cJq9vCUU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2cJq9vCUU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cJq9vCUU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cJq9vCUU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cJq9vCUU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cJq9vCUU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cJq9vCUU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cJq9vCUU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cJq9vCUU .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cJq9vCUU .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-u2cJq9vCUU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cJq9vCUU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2cJq9vCUU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cJq9vCUU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cJq9vCUU .dropdown-item.active,
.cid-u2cJq9vCUU .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cJq9vCUU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cJq9vCUU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cJq9vCUU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cJq9vCUU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-u2cJq9vCUU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cJq9vCUU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cJq9vCUU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cJq9vCUU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cJq9vCUU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2cJq9vCUU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cJq9vCUU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cJq9vCUU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cJq9vCUU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cJq9vCUU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cJq9vCUU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cJq9vCUU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cJq9vCUU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cJq9vCUU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cJq9vCUU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cJq9vCUU .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-u2cJq9vCUU .navbar {
    height: 70px;
  }
  .cid-u2cJq9vCUU .navbar.opened {
    height: auto;
  }
  .cid-u2cJq9vCUU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2cJq9X4fs {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme24-1800x500.jpg");
}
.cid-u2cJq9X4fs .btn {
  margin: 0.2rem !important;
}
.cid-u2cJq9X4fs .row {
  justify-content: flex-end;
}
.cid-u2cJq9X4fs .mbr-text,
.cid-u2cJq9X4fs .mbr-section-btn {
  color: #ffffff;
}
.cid-u2cJq9X4fs H3 {
  color: #cccccc;
}
.cid-u2cJqa9fkb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2cJqa9fkb .mbr-section-title {
  color: #02602b;
}
.cid-u2cJqa9fkb .mbr-section-subtitle {
  color: #02602b;
}
.cid-u2cJqa9fkb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2cJqa9fkb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2cJqapx0j {
  background-color: #ffffff;
}
.cid-u2cJqapx0j .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u2cJqapx0j .carousel-item > div {
  width: 100%;
}
.cid-u2cJqapx0j h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-u2cJqapx0j .carousel-item.active,
.cid-u2cJqapx0j .carousel-item-next,
.cid-u2cJqapx0j .carousel-item-prev {
  display: flex;
}
.cid-u2cJqapx0j .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-u2cJqapx0j .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-u2cJqapx0j .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-u2cJqapx0j .carousel-controls a {
    width: 5%;
  }
}
.cid-u2cJqapx0j .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-u2cJqapx0j .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-u2cJqapx0j .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-u2cJqapx0j img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-u2cJqapx0j li {
  background-color: transparent;
  width: 11px !important;
  height: 11px !important;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-u2cJqapx0j li.active {
  background-color: #ffffff;
  width: 14px !important;
  height: 14px !important;
  border: none !important;
}
.cid-u2cJqapx0j .carousel-indicators {
  position: absolute;
  bottom: -2.3rem;
  align-items: center;
}
.cid-u2cJqapx0j .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-u2cJqapx0j .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-u2cJqapx0j {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-u2cJqapx0j .col-md-3 {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-u2cJqapx0j {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
.cid-u2cJqapx0j a {
  color: #fff;
  line-height: 1.5;
}
.cid-u2cJqapx0j .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u2cJqapx0j .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-u2cJqapx0j .desk {
  color: #fff;
}
.cid-u2cJqapx0j .signature {
  color: #fff;
}
.cid-u2cJqapx0j .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-u2cJqapx0j .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-u2cJqapx0j .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-u2cJqapx0j .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-u2cJqapx0j .img-card {
    margin-top: 2rem;
  }
}
.cid-u2cJqaKdE1 {
  padding-top: 60px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-u2cJqaKdE1 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u2cJqaKdE1 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u2cJqaKdE1 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u2cJqaKdE1 .mbr-slider .modal-body .close {
  background: #035846;
}
.cid-u2cJqaKdE1 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #f9e2af);
}
.cid-u2cJqaKdE1 .icon-focus {
  display: none;
}
.cid-u2cJqaKdE1 .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u2cJqaKdE1 ul {
  font-size: 0;
}
.cid-u2cJqaKdE1 .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-u2cJqaKdE1 .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-u2cJqaKdE1 .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #de0c08, #7e7e7e);
}
.cid-u2cJqaKdE1 .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-u2cJqaKdE1 .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-u2cJqaKdE1 .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u2cJqaKdE1 .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-u2cJqaKdE1 .btn:hover {
  background: transparent !important;
}
.cid-u2cJqaKdE1 .btn:hover:before {
  background: transparent !important;
}
.cid-u2cJqaKdE1 .btn:before {
  background-color: transparent !important;
}
.cid-u2cJqaKdE1 .btn:focus {
  box-shadow: none;
}
.cid-u2cJqaKdE1 .mbr-section-title {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.cid-u2cJqbjleg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u2cJqbjleg h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u2cJqbjleg .container {
    position: relative;
  }
  .cid-u2cJqbjleg .row {
    margin: 0;
  }
  .cid-u2cJqbjleg h2 {
    margin: 0;
  }
}
.cid-u2cJqbjleg .mbr-section-subtitle {
  color: #e9204f;
}
.cid-u2cJqbjleg .mbr-text {
  margin-top: 1.4rem;
  color: #02602b;
}
.cid-u2cJqbjleg h2 {
  color: #02602b;
}
.cid-u2cJqbxfmP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-005jpg-1800x700.jpg");
}
.cid-u2cJqbxfmP .text {
  display: flex;
  align-items: center;
}
.cid-u2cJqbxfmP .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-u2cJqbxfmP .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-u2cJqbxfmP .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-u2cJqbxfmP .btn:hover {
  box-shadow: none;
}
.cid-u2cJqbxfmP .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u2cJqbxfmP .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-u2cJqbxfmP .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-u2cJqbxfmP .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-u2cJqbxfmP .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-u2cJqbxfmP .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-u2cJqbxfmP .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-u2cJqbxfmP .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-u2cJqbxfmP .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-u2cJqbxfmP .row:hover img {
  transform: rotate(0deg);
}
.cid-u2cJqbxfmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2cJqbxfmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2cJqbP8HV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u2cJqbP8HV .mbr-text,
.cid-u2cJqbP8HV .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-u2cJqbP8HV H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-u2cJqc5g73 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-u2cJqc5g73 .content {
    text-align: center;
  }
  .cid-u2cJqc5g73 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2cJqc5g73 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2cJqc5g73 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2cJqc5g73 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2cJqc5g73 .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2cJqc5g73 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2cJqc5g73 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2cJqc5g73 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2cJqc5g73 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2cJqc5g73 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2cJqc5g73 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2cJqc5g73 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2cJqc5g73 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2cJqc5g73 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2cJqc5g73 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2cJqc5g73 .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2cJDf5R8t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cJDf5R8t nav.navbar {
  position: fixed;
}
.cid-u2cJDf5R8t .btn {
  line-height: 1.2;
}
.cid-u2cJDf5R8t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cJDf5R8t .nav-link {
  position: relative;
}
.cid-u2cJDf5R8t .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-u2cJDf5R8t .nav-link:hover {
  color: #ffefbf !important;
}
.cid-u2cJDf5R8t .nav-link:hover:before {
  width: 100%;
}
.cid-u2cJDf5R8t .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-u2cJDf5R8t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cJDf5R8t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cJDf5R8t .dropdown-item:hover,
.cid-u2cJDf5R8t .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-u2cJDf5R8t .dropdown-item:hover span {
  color: white;
}
.cid-u2cJDf5R8t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cJDf5R8t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cJDf5R8t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cJDf5R8t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-u2cJDf5R8t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2cJDf5R8t .container {
    flex-wrap: nowrap;
  }
}
.cid-u2cJDf5R8t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cJDf5R8t .navbar-nav {
  margin: auto;
}
.cid-u2cJDf5R8t .dropdown-menu,
.cid-u2cJDf5R8t .navbar.opened {
  background: #549d0b !important;
}
.cid-u2cJDf5R8t .nav-item:focus,
.cid-u2cJDf5R8t .nav-link:focus {
  outline: none;
}
.cid-u2cJDf5R8t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cJDf5R8t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cJDf5R8t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cJDf5R8t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cJDf5R8t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cJDf5R8t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cJDf5R8t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-u2cJDf5R8t .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cJDf5R8t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cJDf5R8t .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cJDf5R8t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cJDf5R8t .navbar.collapsed {
  justify-content: center;
}
.cid-u2cJDf5R8t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cJDf5R8t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cJDf5R8t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u2cJDf5R8t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cJDf5R8t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cJDf5R8t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2cJDf5R8t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cJDf5R8t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cJDf5R8t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cJDf5R8t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cJDf5R8t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cJDf5R8t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cJDf5R8t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cJDf5R8t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2cJDf5R8t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cJDf5R8t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cJDf5R8t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cJDf5R8t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cJDf5R8t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cJDf5R8t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cJDf5R8t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cJDf5R8t .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cJDf5R8t .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-u2cJDf5R8t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cJDf5R8t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2cJDf5R8t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cJDf5R8t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cJDf5R8t .dropdown-item.active,
.cid-u2cJDf5R8t .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cJDf5R8t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cJDf5R8t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cJDf5R8t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cJDf5R8t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-u2cJDf5R8t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cJDf5R8t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cJDf5R8t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cJDf5R8t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cJDf5R8t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2cJDf5R8t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cJDf5R8t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cJDf5R8t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cJDf5R8t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cJDf5R8t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cJDf5R8t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cJDf5R8t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cJDf5R8t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cJDf5R8t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cJDf5R8t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cJDf5R8t .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-u2cJDf5R8t .navbar {
    height: 70px;
  }
  .cid-u2cJDf5R8t .navbar.opened {
    height: auto;
  }
  .cid-u2cJDf5R8t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2cJDfuHCj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-u2cJDfuHCj h2 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-u2cJDfuHCj .container {
    position: relative;
  }
  .cid-u2cJDfuHCj .row {
    margin: 0;
  }
  .cid-u2cJDfuHCj h2 {
    margin: 0;
  }
}
.cid-u2cJDfuHCj .mbr-section-subtitle {
  color: #e9204f;
}
.cid-u2cJDfuHCj .mbr-text {
  margin-top: 1.4rem;
  color: #02602b;
}
.cid-u2cJDfuHCj h2 {
  color: #02602b;
}
.cid-u2cJDfHMHm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-005jpg-1800x700.jpg");
}
.cid-u2cJDfHMHm .text {
  display: flex;
  align-items: center;
}
.cid-u2cJDfHMHm .mbr-section-subtitle {
  margin: 0 0 22px 0;
  letter-spacing: .13em;
  color: #ffffff;
}
.cid-u2cJDfHMHm .mbr-section-title {
  margin: 0 0 33px 0;
  color: #ffffff;
}
.cid-u2cJDfHMHm .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
}
.cid-u2cJDfHMHm .btn:hover {
  box-shadow: none;
}
.cid-u2cJDfHMHm .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u2cJDfHMHm .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-u2cJDfHMHm .image-wrapper img {
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-u2cJDfHMHm .image-wrapper img {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-u2cJDfHMHm .image-wrapper img {
    width: 240px;
    height: 275px;
  }
}
.cid-u2cJDfHMHm .image-wrapper .image-absolute {
  position: absolute;
  top: 20px;
  right: 23%;
  width: 372px;
  height: 427px;
  object-fit: cover;
  transform: rotate(5deg);
  transition: all .4s ease;
  border: 8px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-u2cJDfHMHm .image-wrapper .image-absolute {
    transform: none;
  }
}
@media (max-width: 768px) {
  .cid-u2cJDfHMHm .image-wrapper .image-absolute {
    width: 240px;
    height: 275px;
  }
}
@media (max-width: 425px) {
  .cid-u2cJDfHMHm .image-wrapper .image-absolute {
    display: none;
  }
}
.cid-u2cJDfHMHm .row:hover img {
  transform: rotate(0deg);
}
.cid-u2cJDfHMHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2cJDfHMHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2cJDfXZB8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u2cJDfXZB8 .mbr-text,
.cid-u2cJDfXZB8 .mbr-section-btn {
  text-align: left;
  color: #101428;
}
.cid-u2cJDfXZB8 H1 {
  text-align: left;
  color: #b50e0e;
}
.cid-u2cJDgaYSF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-u2cJDgaYSF .content {
    text-align: center;
  }
  .cid-u2cJDgaYSF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2cJDgaYSF .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2cJDgaYSF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2cJDgaYSF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2cJDgaYSF .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2cJDgaYSF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2cJDgaYSF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2cJDgaYSF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2cJDgaYSF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2cJDgaYSF .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2cJDgaYSF .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2cJDgaYSF .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2cJDgaYSF .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2cJDgaYSF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2cJDgaYSF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2cJDgaYSF .list {
  list-style-type: none;
  padding: 0;
}
.cid-u2cKxD0Pqn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u2cKxD0Pqn nav.navbar {
  position: fixed;
}
.cid-u2cKxD0Pqn .btn {
  line-height: 1.2;
}
.cid-u2cKxD0Pqn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u2cKxD0Pqn .nav-link {
  position: relative;
}
.cid-u2cKxD0Pqn .nav-link:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #ffefbf;
}
.cid-u2cKxD0Pqn .nav-link:hover {
  color: #ffefbf !important;
}
.cid-u2cKxD0Pqn .nav-link:hover:before {
  width: 100%;
}
.cid-u2cKxD0Pqn .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-u2cKxD0Pqn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cKxD0Pqn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u2cKxD0Pqn .dropdown-item:hover,
.cid-u2cKxD0Pqn .dropdown-item:focus {
  background: #de0c08 !important;
  color: white !important;
}
.cid-u2cKxD0Pqn .dropdown-item:hover span {
  color: white;
}
.cid-u2cKxD0Pqn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u2cKxD0Pqn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u2cKxD0Pqn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u2cKxD0Pqn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.1rem;
}
.cid-u2cKxD0Pqn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u2cKxD0Pqn .container {
    flex-wrap: nowrap;
  }
}
.cid-u2cKxD0Pqn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u2cKxD0Pqn .navbar-nav {
  margin: auto;
}
.cid-u2cKxD0Pqn .dropdown-menu,
.cid-u2cKxD0Pqn .navbar.opened {
  background: #549d0b !important;
}
.cid-u2cKxD0Pqn .nav-item:focus,
.cid-u2cKxD0Pqn .nav-link:focus {
  outline: none;
}
.cid-u2cKxD0Pqn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u2cKxD0Pqn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u2cKxD0Pqn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u2cKxD0Pqn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u2cKxD0Pqn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u2cKxD0Pqn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u2cKxD0Pqn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #549d0b;
}
.cid-u2cKxD0Pqn .navbar.opened {
  transition: all 0.3s;
}
.cid-u2cKxD0Pqn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u2cKxD0Pqn .navbar .navbar-logo img {
  width: auto;
}
.cid-u2cKxD0Pqn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u2cKxD0Pqn .navbar.collapsed {
  justify-content: center;
}
.cid-u2cKxD0Pqn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u2cKxD0Pqn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u2cKxD0Pqn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u2cKxD0Pqn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u2cKxD0Pqn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u2cKxD0Pqn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u2cKxD0Pqn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u2cKxD0Pqn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u2cKxD0Pqn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u2cKxD0Pqn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u2cKxD0Pqn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u2cKxD0Pqn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u2cKxD0Pqn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u2cKxD0Pqn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u2cKxD0Pqn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u2cKxD0Pqn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u2cKxD0Pqn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u2cKxD0Pqn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u2cKxD0Pqn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u2cKxD0Pqn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u2cKxD0Pqn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u2cKxD0Pqn .navbar.navbar-short {
  min-height: 60px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u2cKxD0Pqn .navbar.navbar-short .navbar-logo img {
  height: 5rem !important;
}
.cid-u2cKxD0Pqn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u2cKxD0Pqn .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u2cKxD0Pqn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u2cKxD0Pqn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u2cKxD0Pqn .dropdown-item.active,
.cid-u2cKxD0Pqn .dropdown-item:active {
  background-color: transparent;
}
.cid-u2cKxD0Pqn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u2cKxD0Pqn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u2cKxD0Pqn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u2cKxD0Pqn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #549d0b;
}
.cid-u2cKxD0Pqn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u2cKxD0Pqn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u2cKxD0Pqn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u2cKxD0Pqn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u2cKxD0Pqn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u2cKxD0Pqn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u2cKxD0Pqn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cKxD0Pqn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u2cKxD0Pqn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u2cKxD0Pqn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cKxD0Pqn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u2cKxD0Pqn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u2cKxD0Pqn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u2cKxD0Pqn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u2cKxD0Pqn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u2cKxD0Pqn .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-u2cKxD0Pqn .navbar {
    height: 70px;
  }
  .cid-u2cKxD0Pqn .navbar.opened {
    height: auto;
  }
  .cid-u2cKxD0Pqn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2cKxDoohT {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u2cKxDoohT h1 {
  margin-bottom: 0.2rem;
}
.cid-u2cKxDoohT .container-fluid {
  padding: 0;
}
.cid-u2cKxDoohT img {
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 10;
}
.cid-u2cKxDoohT .mbr-figure {
  height: 100%;
}
.cid-u2cKxDoohT .col-lg-6 {
  padding: 0;
}
.cid-u2cKxDoohT .mbr-text {
  color: #747474;
}
.cid-u2cKxDoohT hr {
  width: 40px;
  height: 2px;
  top: -1rem;
}
.cid-u2cKxDoohT .mbr-section-subtitle {
  margin-bottom: 3.5rem;
}
.cid-u2cKxDoohT .mbr-section-subtitle-1 {
  color: #e9204f;
}
.cid-u2cKxDoohT .mbr-section-subtitle-2 {
  margin-top: 4.2rem;
}
.cid-u2cKxDoohT .mbr-figure::after {
  content: '';
  background-color: #b539cf;
  height: 100px;
  width: 100px;
  position: absolute;
  bottom: -20px;
  right: -5px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-u2cKxDoohT .mbr-figure::after {
    bottom: -15px;
    right: 0px;
  }
}
@media (min-width: 767px) {
  .cid-u2cKxDoohT .row {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .cid-u2cKxDoohT .media-content {
    padding-left: 2.2rem;
  }
}
@media (max-width: 992px) {
  .cid-u2cKxDoohT .left-block {
    margin-top: 4.5rem;
  }
}
.cid-u2cKxDoohT .btn {
  color: #101010 !important;
}
.cid-u2cKxDoohT .btn:hover {
  color: #ffffff !important;
}
.cid-u2cKxDoohT .line-title {
  width: 40px;
  height: 2px;
  background-color: #b539cf;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-u2cKxDoohT .vertical-line:before {
  content: '';
  background-color: #b539cf;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-u2cKxDoohT .mbr-text,
.cid-u2cKxDoohT .mbr-section-btn {
  color: #0f3403;
}
.cid-u2cKxDEMfn {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/le-garde-manger-saguenay-produits-esoterisme27-1440x800.jpg");
}
@media (max-width: 767px) {
  .cid-u2cKxDEMfn .content {
    text-align: center;
  }
  .cid-u2cKxDEMfn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u2cKxDEMfn .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-u2cKxDEMfn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u2cKxDEMfn .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-u2cKxDEMfn .google-map {
  height: 25rem;
  position: relative;
}
.cid-u2cKxDEMfn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2cKxDEMfn .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2cKxDEMfn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2cKxDEMfn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u2cKxDEMfn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2cKxDEMfn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u2cKxDEMfn .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-u2cKxDEMfn .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-u2cKxDEMfn .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u2cKxDEMfn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u2cKxDEMfn .list {
  list-style-type: none;
  padding: 0;
}
