body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #b2be90 !important;
}
.bg-success {
  background-color: #dac6b9 !important;
}
.bg-info {
  background-color: #a1876c !important;
}
.bg-warning {
  background-color: #a25f45 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #91a260;
  border-color: #91a260;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #b2be90 !important;
  border-color: #b2be90 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #91a260 !important;
  border-color: #91a260 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #91a260 !important;
  border-color: #91a260 !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #232713;
  border-color: #232713;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #515a2c !important;
  border-color: #515a2c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #232713 !important;
  border-color: #232713 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #232713 !important;
  border-color: #232713 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #75614b;
  border-color: #75614b;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #a1876c !important;
  border-color: #a1876c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #75614b !important;
  border-color: #75614b !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #75614b !important;
  border-color: #75614b !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #c09d87;
  border-color: #c09d87;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #dac6b9 !important;
  border-color: #dac6b9 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #c09d87 !important;
  border-color: #c09d87 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c09d87 !important;
  border-color: #c09d87 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6c402e;
  border-color: #6c402e;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #a25f45 !important;
  border-color: #a25f45 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #6c402e !important;
  border-color: #6c402e !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #6c402e !important;
  border-color: #6c402e !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2be90;
  border-color: #b2be90;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #839256;
  color: #839256 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #b2be90;
  border-color: #b2be90;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b2be90 !important;
  border-color: #b2be90 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #515a2c;
  border-color: #515a2c;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #13150b;
  color: #13150b !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #515a2c;
  border-color: #515a2c;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #515a2c !important;
  border-color: #515a2c !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a1876c;
  border-color: #a1876c;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #665441;
  color: #665441 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #a1876c;
  border-color: #a1876c;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a1876c !important;
  border-color: #a1876c !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #dac6b9;
  border-color: #dac6b9;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #b79076;
  color: #b79076 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #dac6b9;
  border-color: #dac6b9;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #dac6b9 !important;
  border-color: #dac6b9 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a25f45;
  border-color: #a25f45;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #5a3527;
  color: #5a3527 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #a25f45;
  border-color: #a25f45;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #a25f45 !important;
  border-color: #a25f45 !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #b2be90 !important;
}
.text-secondary {
  color: #515a2c !important;
}
.text-success {
  color: #dac6b9 !important;
}
.text-info {
  color: #a1876c !important;
}
.text-warning {
  color: #a25f45 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #839256 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #13150b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b79076 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #665441 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #5a3527 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #dac6b9;
}
.alert-info {
  background-color: #a1876c;
}
.alert-warning {
  background-color: #a25f45;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.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 {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  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: #b2be90;
  border-color: #b2be90;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b2be90;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eaede0;
}
.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: #d3c6ba;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d2a695;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #b2be90;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 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 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #b2be90;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #b2be90;
  border-bottom-color: #b2be90;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #b2be90 !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: #515a2c !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%;
}
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='%23b2be90' %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;
}
.cid-unKrObUepP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unKrObUepP .nav-item:focus,
.cid-unKrObUepP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unKrObUepP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unKrObUepP .nav-item .nav-link {
    position: relative;
  }
  .cid-unKrObUepP .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unKrObUepP .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unKrObUepP .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unKrObUepP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unKrObUepP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unKrObUepP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unKrObUepP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unKrObUepP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unKrObUepP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unKrObUepP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unKrObUepP .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unKrObUepP .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unKrObUepP .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unKrObUepP .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unKrObUepP .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unKrObUepP .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unKrObUepP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unKrObUepP .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unKrObUepP .navbar.collapsed .navbar-collapse.show,
.cid-unKrObUepP .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unKrObUepP .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unKrObUepP .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unKrObUepP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unKrObUepP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unKrObUepP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unKrObUepP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unKrObUepP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unKrObUepP .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unKrObUepP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unKrObUepP .navbar.collapsed .right-menu,
.cid-unKrObUepP .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unKrObUepP .navbar .navbar-collapse.show,
  .cid-unKrObUepP .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unKrObUepP .navbar .navbar-collapse.show .brand-container,
  .cid-unKrObUepP .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unKrObUepP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unKrObUepP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unKrObUepP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unKrObUepP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unKrObUepP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unKrObUepP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unKrObUepP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unKrObUepP .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unKrObUepP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unKrObUepP .navbar .right-menu,
  .cid-unKrObUepP .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unKrObUepP .navbar.navbar-short {
  min-height: 60px;
}
.cid-unKrObUepP .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unKrObUepP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unKrObUepP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unKrObUepP .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unKrObUepP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unKrObUepP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unKrObUepP .dropdown-item.active,
.cid-unKrObUepP .dropdown-item:active {
  background-color: transparent;
}
.cid-unKrObUepP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unKrObUepP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unKrObUepP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unKrObUepP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unKrObUepP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unKrObUepP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unKrObUepP ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unKrObUepP ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unKrObUepP .navbar-buttons {
  margin-left: auto;
}
.cid-unKrObUepP button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unKrObUepP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unKrObUepP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unKrObUepP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unKrObUepP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unKrObUepP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unKrObUepP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unKrObUepP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unKrObUepP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unKrObUepP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unKrObUepP .navbar-dropdown {
  position: fixed;
}
.cid-unKrObUepP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unKrObUepP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unKrObUepP .right-menu,
.cid-unKrObUepP .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unKrObUepP .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unKrObUepP .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unKrObUepP .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unKrObUepP .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unKrObUepP .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unKrObUepP .card-wrapper {
  z-index: 3;
}
.cid-unKrObUepP .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unKrObUepP .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unKrObUepP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unKwspO78T {
  padding-top: 225px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-2.jpg");
}
.cid-unKwspO78T h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-unKwspO78T h1 span {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-unKwspO78T .icons-wrap {
  background: #515a2c;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-unKwspO78T .mbr-iconfont {
  font-size: 1.8rem;
  color: #b2be90 !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-unKwspO78T .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-unKwspO78T h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-unKwspO78T .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-unKwspO78T h1 {
    margin-bottom: 8rem;
  }
}
.cid-unKwspO78T .icon-text {
  color: #ffffff;
}
.cid-unKQm9dKkH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-unKQm9dKkH H2 {
  color: #515a2c;
}
.cid-unKs6Mssf1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-3.jpg");
}
.cid-unKs6Mssf1 .container-fluid {
  padding: 0 3rem;
}
.cid-unKs6Mssf1 .card {
  display: block;
}
.cid-unKs6Mssf1 .card .card-wrapper {
  height: 1%;
}
.cid-unKs6Mssf1 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-unKs6Mssf1 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unKs6Mssf1 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unKs6Mssf1 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-unKs6Mssf1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unKs6Mssf1 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unKs6Mssf1 H2 {
  color: #ffffff;
}
.cid-unKs6Mssf1 .mbr-section-subtitle,
.cid-unKs6Mssf1 .title-btn {
  color: #efefef;
}
.cid-unKs6Mssf1 .mbr-text,
.cid-unKs6Mssf1 .card-btn {
  color: #efefef;
}
.cid-unKsqCaOu9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unKsqCaOu9 .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unKsqCaOu9 H2 {
  color: #ffffff;
}
.cid-unKs7bcX6V {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unKs7bcX6V .container-fluid {
  padding: 0 3rem;
}
.cid-unKs7bcX6V .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unKs7bcX6V .card {
  display: block;
}
.cid-unKs7bcX6V .card .card-wrapper {
  height: 1%;
}
.cid-unKs7bcX6V .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unKs7bcX6V .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unKs7bcX6V .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unKs7bcX6V .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unKs7bcX6V .prices {
  color: #ffffff;
}
.cid-unKs7bcX6V .oldPrice {
  text-decoration: line-through;
}
.cid-unKs7bcX6V .oldPrice,
.cid-unKs7bcX6V .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unKs7bcX6V .container-fluid {
    padding: 0 1rem;
  }
  .cid-unKs7bcX6V .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unKss5X4f1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unKss5X4f1 .container-fluid {
  padding: 0 3rem;
}
.cid-unKss5X4f1 .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unKss5X4f1 .btn {
  margin-top: 0;
}
.cid-unKss5X4f1 .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unKss5X4f1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unKss5X4f1 .btn {
    margin-top: 0.4rem;
  }
  .cid-unKss5X4f1 .mbr-section-btn {
    margin: 0;
  }
}
.cid-unKss5X4f1 .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unKszKNxvb {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unKszKNxvb .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unKszKNxvb .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unKszKNxvb .form-control {
  padding: 1.7rem 2rem;
}
.cid-unKszKNxvb .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unKszKNxvb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unKszKNxvb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unKszKNxvb .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unKszKNxvb .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unKszKNxvb {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unKszKNxvb .social-media {
    padding: 0;
    display: block;
  }
  .cid-unKszKNxvb .subtext-1,
  .cid-unKszKNxvb .subtext-2 {
    text-align: center !important;
  }
  .cid-unKszKNxvb .form-text {
    text-align: center !important;
  }
  .cid-unKszKNxvb .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unKszKNxvb .input-group-btn {
    position: static;
  }
  .cid-unKszKNxvb .input-group-btn .btn {
    display: block;
  }
}
.cid-unKszKNxvb .mbr-title,
.cid-unKszKNxvb .underline {
  color: #515a2c;
}
.cid-unMUJqd1fz {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMUJqd1fz ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMUJqd1fz ul li {
  padding: 1rem 0;
}
.cid-unMUJqd1fz ul li:hover {
  color: #b2be90;
}
.cid-unMUJqd1fz .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMUJqd1fz .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMUJqd1fz .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMUJqd1fz .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMUJqd1fz .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMUJqd1fz .map {
    height: auto;
  }
}
.cid-unMUJqd1fz .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMUJqd1fz .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMUJqd1fz .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMUJqd1fz .social-list a:hover {
  opacity: 1;
}
.cid-unMUJqd1fz .row-element,
.cid-unMUJqd1fz .image-element {
  padding: 0;
}
.cid-unMUJqd1fz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMUJqd1fz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMUJqd1fz .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMUJqd1fz .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMUJqd1fz .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMUJqd1fz .underline .line {
    height: 2px;
  }
  .cid-unMUJqd1fz .mbr-title,
  .cid-unMUJqd1fz .underline,
  .cid-unMUJqd1fz .mbr-text,
  .cid-unMUJqd1fz .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMUJqd1fz .mbr-title,
.cid-unMUJqd1fz .underline {
  color: #a1876c;
}
.cid-unMUJqd1fz .mbr-text,
.cid-unMUJqd1fz .mbr-section-btn {
  color: #ffffff;
}
.cid-unMUJqd1fz mbr-list LI {
  color: #ffffff;
}
.cid-unMUJqd1fz mbr-list {
  text-align: center;
}
.cid-unMUJqd1fz .mbr-list,
.cid-unMUJqd1fz .social-list mbr-list {
  color: #ffffff;
}
.cid-unKsJo0q3t {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unKsJo0q3t [class^="socicon-"]:before,
.cid-unKsJo0q3t [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unKsJo0q3t .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unKsJo0q3t .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unKsJo0q3t .socicon {
  color: #515a2c;
}
.cid-unKsJo0q3t .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unKsJo0q3t .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unKsJo0q3t .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unKsJo0q3t .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unKsJo0q3t .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unKsJo0q3t .btn {
    font-size: 20px !important;
  }
  .cid-unKsJo0q3t .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMUMJnCyQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMUMJnCyQ .container-fluid {
  padding: 0 3rem;
}
.cid-unMUMJnCyQ ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMUMJnCyQ ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMUMJnCyQ ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMUMJnCyQ ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMUMJnCyQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMUMJnCyQ .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMUMJnCyQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMUMJnCyQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMUMJnCyQ .mbr-section-title,
.cid-unMUMJnCyQ .underline {
  color: #515a2c;
}
.cid-unKsZPeNLE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unKsZPeNLE .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unKsZPeNLE .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unKsZPeNLE .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unKsZPeNLE .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unKsZPeNLE .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unKsZPeNLE .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unKsZPeNLE .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unKsZPeNLE .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unKsZPeNLE .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unKsZPeNLE .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLhd874HA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhd874HA .nav-item:focus,
.cid-unLhd874HA .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLhd874HA .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLhd874HA .nav-item .nav-link {
    position: relative;
  }
  .cid-unLhd874HA .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLhd874HA .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLhd874HA .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLhd874HA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhd874HA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLhd874HA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLhd874HA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLhd874HA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhd874HA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLhd874HA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLhd874HA .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLhd874HA .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLhd874HA .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLhd874HA .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLhd874HA .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLhd874HA .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLhd874HA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLhd874HA .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLhd874HA .navbar.collapsed .navbar-collapse.show,
.cid-unLhd874HA .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLhd874HA .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLhd874HA .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLhd874HA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLhd874HA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLhd874HA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLhd874HA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLhd874HA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLhd874HA .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLhd874HA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLhd874HA .navbar.collapsed .right-menu,
.cid-unLhd874HA .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLhd874HA .navbar .navbar-collapse.show,
  .cid-unLhd874HA .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLhd874HA .navbar .navbar-collapse.show .brand-container,
  .cid-unLhd874HA .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLhd874HA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLhd874HA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLhd874HA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLhd874HA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLhd874HA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLhd874HA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLhd874HA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLhd874HA .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLhd874HA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLhd874HA .navbar .right-menu,
  .cid-unLhd874HA .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLhd874HA .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLhd874HA .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLhd874HA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLhd874HA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLhd874HA .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLhd874HA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLhd874HA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLhd874HA .dropdown-item.active,
.cid-unLhd874HA .dropdown-item:active {
  background-color: transparent;
}
.cid-unLhd874HA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLhd874HA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLhd874HA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLhd874HA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLhd874HA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLhd874HA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLhd874HA ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLhd874HA ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLhd874HA .navbar-buttons {
  margin-left: auto;
}
.cid-unLhd874HA button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLhd874HA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLhd874HA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLhd874HA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLhd874HA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLhd874HA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLhd874HA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLhd874HA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLhd874HA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLhd874HA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLhd874HA .navbar-dropdown {
  position: fixed;
}
.cid-unLhd874HA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLhd874HA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLhd874HA .right-menu,
.cid-unLhd874HA .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLhd874HA .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLhd874HA .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLhd874HA .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLhd874HA .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLhd874HA .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLhd874HA .card-wrapper {
  z-index: 3;
}
.cid-unLhd874HA .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLhd874HA .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLhd874HA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLhd8Pikj {
  padding-top: 225px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-2.jpg");
}
.cid-unLhd8Pikj h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-unLhd8Pikj h1 span {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-unLhd8Pikj .icons-wrap {
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-unLhd8Pikj .mbr-iconfont {
  font-size: 1.8rem;
  color: #515a2c !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-unLhd8Pikj .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-unLhd8Pikj h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-unLhd8Pikj .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-unLhd8Pikj h1 {
    margin-bottom: 8rem;
  }
}
.cid-unLhd8Pikj .icon-text {
  color: #232323;
}
.cid-unLhd9GrWF {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-unLhd9GrWF H2 {
  color: #515a2c;
}
.cid-unLhdado4w {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-3.jpg");
}
.cid-unLhdado4w .container-fluid {
  padding: 0 3rem;
}
.cid-unLhdado4w .card {
  display: block;
}
.cid-unLhdado4w .card .card-wrapper {
  height: 1%;
}
.cid-unLhdado4w .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.cid-unLhdado4w .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unLhdado4w .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unLhdado4w .text-row {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-unLhdado4w .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLhdado4w .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unLhdado4w H2 {
  color: #ffffff;
}
.cid-unLhdado4w .mbr-section-subtitle,
.cid-unLhdado4w .title-btn {
  color: #efefef;
}
.cid-unLhdado4w .mbr-text,
.cid-unLhdado4w .card-btn {
  color: #efefef;
}
.cid-unLhdb7Raz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unLhdb7Raz .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unLhdb7Raz H2 {
  color: #ffffff;
}
.cid-unLhdbODsE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unLhdbODsE .container-fluid {
  padding: 0 3rem;
}
.cid-unLhdbODsE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhdbODsE .card {
  display: block;
}
.cid-unLhdbODsE .card .card-wrapper {
  height: 1%;
}
.cid-unLhdbODsE .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unLhdbODsE .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unLhdbODsE .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unLhdbODsE .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLhdbODsE .prices {
  color: #ffffff;
}
.cid-unLhdbODsE .oldPrice {
  text-decoration: line-through;
}
.cid-unLhdbODsE .oldPrice,
.cid-unLhdbODsE .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unLhdbODsE .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLhdbODsE .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unLhdcECZu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unLhdcECZu .container-fluid {
  padding: 0 3rem;
}
.cid-unLhdcECZu .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unLhdcECZu .btn {
  margin-top: 0;
}
.cid-unLhdcECZu .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unLhdcECZu .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLhdcECZu .btn {
    margin-top: 0.4rem;
  }
  .cid-unLhdcECZu .mbr-section-btn {
    margin: 0;
  }
}
.cid-unLhdcECZu .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLhddbHa6 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLhddbHa6 .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLhddbHa6 .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLhddbHa6 .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLhddbHa6 .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLhddbHa6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhddbHa6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhddbHa6 .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLhddbHa6 .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLhddbHa6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLhddbHa6 .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLhddbHa6 .subtext-1,
  .cid-unLhddbHa6 .subtext-2 {
    text-align: center !important;
  }
  .cid-unLhddbHa6 .form-text {
    text-align: center !important;
  }
  .cid-unLhddbHa6 .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLhddbHa6 .input-group-btn {
    position: static;
  }
  .cid-unLhddbHa6 .input-group-btn .btn {
    display: block;
  }
}
.cid-unLhddbHa6 .mbr-title,
.cid-unLhddbHa6 .underline {
  color: #515a2c;
}
.cid-unLhddHj1V {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #b2be90;
}
.cid-unLhddHj1V ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unLhddHj1V ul li {
  padding: 1rem 0;
}
.cid-unLhddHj1V ul li:hover {
  color: #b2be90;
}
.cid-unLhddHj1V .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unLhddHj1V .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unLhddHj1V .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unLhddHj1V .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLhddHj1V .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unLhddHj1V .map {
    height: auto;
  }
}
.cid-unLhddHj1V .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unLhddHj1V .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unLhddHj1V .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unLhddHj1V .social-list a:hover {
  opacity: 1;
}
.cid-unLhddHj1V .row-element,
.cid-unLhddHj1V .image-element {
  padding: 0;
}
.cid-unLhddHj1V .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhddHj1V .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unLhddHj1V .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unLhddHj1V .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unLhddHj1V .text-content {
    padding: 2rem 1rem;
  }
  .cid-unLhddHj1V .underline .line {
    height: 2px;
  }
  .cid-unLhddHj1V .mbr-title,
  .cid-unLhddHj1V .underline,
  .cid-unLhddHj1V .mbr-text,
  .cid-unLhddHj1V .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unLhddHj1V .mbr-title,
.cid-unLhddHj1V .underline {
  color: #a1876c;
}
.cid-unLhddHj1V .mbr-text,
.cid-unLhddHj1V .mbr-section-btn {
  color: #ffffff;
}
.cid-unLhddHj1V mbr-list LI {
  color: #ffffff;
}
.cid-unLhddHj1V mbr-list {
  text-align: center;
}
.cid-unLhddHj1V .mbr-list,
.cid-unLhddHj1V .social-list mbr-list {
  color: #ffffff;
}
.cid-unLhdfaCHD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLhdfaCHD [class^="socicon-"]:before,
.cid-unLhdfaCHD [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLhdfaCHD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhdfaCHD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhdfaCHD .socicon {
  color: #515a2c;
}
.cid-unLhdfaCHD .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLhdfaCHD .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLhdfaCHD .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLhdfaCHD .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLhdfaCHD .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLhdfaCHD .btn {
    font-size: 20px !important;
  }
  .cid-unLhdfaCHD .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unLhdgbIgY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLhdgbIgY .container-fluid {
  padding: 0 3rem;
}
.cid-unLhdgbIgY ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLhdgbIgY ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unLhdgbIgY ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unLhdgbIgY ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unLhdgbIgY .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLhdgbIgY .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unLhdgbIgY .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhdgbIgY .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhdgbIgY .mbr-section-title,
.cid-unLhdgbIgY .underline {
  color: #515a2c;
}
.cid-unLhdj30yE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLhdj30yE .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLhdj30yE .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLhdj30yE .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLhdj30yE .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLhdj30yE .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLhdj30yE .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLhdj30yE .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLhdj30yE .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLhdj30yE .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLhdj30yE .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLhoXxLCb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhoXxLCb .nav-item:focus,
.cid-unLhoXxLCb .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLhoXxLCb .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLhoXxLCb .nav-item .nav-link {
    position: relative;
  }
  .cid-unLhoXxLCb .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLhoXxLCb .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLhoXxLCb .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLhoXxLCb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhoXxLCb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLhoXxLCb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLhoXxLCb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLhoXxLCb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLhoXxLCb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLhoXxLCb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLhoXxLCb .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLhoXxLCb .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLhoXxLCb .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLhoXxLCb .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLhoXxLCb .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLhoXxLCb .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLhoXxLCb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLhoXxLCb .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLhoXxLCb .navbar.collapsed .navbar-collapse.show,
.cid-unLhoXxLCb .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLhoXxLCb .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLhoXxLCb .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLhoXxLCb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLhoXxLCb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLhoXxLCb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLhoXxLCb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLhoXxLCb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLhoXxLCb .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLhoXxLCb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLhoXxLCb .navbar.collapsed .right-menu,
.cid-unLhoXxLCb .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLhoXxLCb .navbar .navbar-collapse.show,
  .cid-unLhoXxLCb .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLhoXxLCb .navbar .navbar-collapse.show .brand-container,
  .cid-unLhoXxLCb .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLhoXxLCb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLhoXxLCb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLhoXxLCb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLhoXxLCb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLhoXxLCb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLhoXxLCb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLhoXxLCb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLhoXxLCb .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLhoXxLCb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLhoXxLCb .navbar .right-menu,
  .cid-unLhoXxLCb .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLhoXxLCb .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLhoXxLCb .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLhoXxLCb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLhoXxLCb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLhoXxLCb .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLhoXxLCb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLhoXxLCb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLhoXxLCb .dropdown-item.active,
.cid-unLhoXxLCb .dropdown-item:active {
  background-color: transparent;
}
.cid-unLhoXxLCb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLhoXxLCb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLhoXxLCb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLhoXxLCb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLhoXxLCb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLhoXxLCb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLhoXxLCb ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLhoXxLCb ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLhoXxLCb .navbar-buttons {
  margin-left: auto;
}
.cid-unLhoXxLCb button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLhoXxLCb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLhoXxLCb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLhoXxLCb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLhoXxLCb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLhoXxLCb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLhoXxLCb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLhoXxLCb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLhoXxLCb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLhoXxLCb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLhoXxLCb .navbar-dropdown {
  position: fixed;
}
.cid-unLhoXxLCb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLhoXxLCb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLhoXxLCb .right-menu,
.cid-unLhoXxLCb .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLhoXxLCb .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLhoXxLCb .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLhoXxLCb .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLhoXxLCb .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLhoXxLCb .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLhoXxLCb .card-wrapper {
  z-index: 3;
}
.cid-unLhoXxLCb .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLhoXxLCb .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLhoXxLCb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLhBhjcTb {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLhBhjcTb h3 {
  position: relative;
}
.cid-unLhBhjcTb h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLhBhjcTb svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLhBhjcTb g rect {
  fill: #ffffff;
}
.cid-unLhBhjcTb H1 {
  color: #ffffff;
}
.cid-unLlnV6B72 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLlnV6B72 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLlnV6B72 .mbr-shop .row {
  margin: 0;
}
.cid-unLlnV6B72 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLlnV6B72 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLlnV6B72 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLlnV6B72 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLlnV6B72 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLlnV6B72 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLlnV6B72 .mbr-shop .hide-modal {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLlnV6B72 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLlnV6B72 .mbr-shop .filter-by-pu,
.cid-unLlnV6B72 .mbr-shop .filter-by-pd,
.cid-unLlnV6B72 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLlnV6B72 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLlnV6B72 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem h4,
.cid-unLlnV6B72 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem h5,
.cid-unLlnV6B72 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem p,
.cid-unLlnV6B72 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLlnV6B72 .mbr-shop .item-button {
  text-align: center;
}
.cid-unLlnV6B72 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLlnV6B72 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLlnV6B72 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLlnV6B72 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLlnV6B72 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLlnV6B72 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLlnV6B72 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLlnV6B72 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLlnV6B72 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLlnV6B72 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLlnV6B72 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLlnV6B72 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLlnV6B72 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLlnV6B72 .mbr-shop .range-controls {
  position: relative;
}
.cid-unLlnV6B72 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLlnV6B72 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLlnV6B72 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLlnV6B72 .mbr-shop .toggle:hover,
.cid-unLlnV6B72 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLlnV6B72 .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLlnV6B72 .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLlnV6B72 .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLlnV6B72 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLlnV6B72 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLlnV6B72 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLlnV6B72 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLlnV6B72 .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLlnV6B72 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLlnV6B72 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLlnV6B72 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLlnV6B72 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLlnV6B72 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLlnV6B72 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLlnV6B72 .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLlnV6B72 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLlnV6B72 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLlnV6B72 .mbr-shop .shop-items .onsale,
.cid-unLlnV6B72 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLlnV6B72 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLlnV6B72 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLlnV6B72 .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLlnV6B72 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLlnV6B72 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLlnV6B72 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLlnV6B72 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLlnV6B72 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLlnV6B72 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLlnV6B72 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLlnV6B72 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLlnV6B72 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLlnV6B72 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLlnV6B72 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLlnV6B72 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLlnV6B72 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLlnV6B72 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLlnV6B72 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLlnV6B72 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLlnV6B72 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLlnV6B72 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLlnV6B72 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLlnV6B72 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLlnV6B72 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLlnV6B72 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLlnV6B72 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLlnV6B72 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLlnV6B72 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLlnV6B72 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLlnV6B72 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLlnV6B72 .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLlnV6B72 .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLlnV6B72 .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLlnV6B72 .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLlnV6B72 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMVpCyLzT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMVpCyLzT .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMVpCyLzT H2 {
  color: #ffffff;
}
.cid-unMVrW3TM2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMVrW3TM2 .container-fluid {
  padding: 0 3rem;
}
.cid-unMVrW3TM2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMVrW3TM2 .card {
  display: block;
}
.cid-unMVrW3TM2 .card .card-wrapper {
  height: 1%;
}
.cid-unMVrW3TM2 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMVrW3TM2 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMVrW3TM2 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMVrW3TM2 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMVrW3TM2 .prices {
  color: #ffffff;
}
.cid-unMVrW3TM2 .oldPrice {
  text-decoration: line-through;
}
.cid-unMVrW3TM2 .oldPrice,
.cid-unMVrW3TM2 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMVrW3TM2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVrW3TM2 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMVO9KxZu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMVO9KxZu .container-fluid {
  padding: 0 3rem;
}
.cid-unMVO9KxZu .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMVO9KxZu .btn {
  margin-top: 0;
}
.cid-unMVO9KxZu .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMVO9KxZu .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVO9KxZu .btn {
    margin-top: 0.4rem;
  }
  .cid-unMVO9KxZu .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMVO9KxZu .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLhp1qLe5 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLhp1qLe5 .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLhp1qLe5 .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLhp1qLe5 .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLhp1qLe5 .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLhp1qLe5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhp1qLe5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhp1qLe5 .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLhp1qLe5 .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLhp1qLe5 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLhp1qLe5 .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLhp1qLe5 .subtext-1,
  .cid-unLhp1qLe5 .subtext-2 {
    text-align: center !important;
  }
  .cid-unLhp1qLe5 .form-text {
    text-align: center !important;
  }
  .cid-unLhp1qLe5 .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLhp1qLe5 .input-group-btn {
    position: static;
  }
  .cid-unLhp1qLe5 .input-group-btn .btn {
    display: block;
  }
}
.cid-unLhp1qLe5 .mbr-title,
.cid-unLhp1qLe5 .underline {
  color: #515a2c;
}
.cid-unMVAUXuk2 {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMVAUXuk2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVAUXuk2 ul li {
  padding: 1rem 0;
}
.cid-unMVAUXuk2 ul li:hover {
  color: #b2be90;
}
.cid-unMVAUXuk2 .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMVAUXuk2 .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMVAUXuk2 .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMVAUXuk2 .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMVAUXuk2 .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMVAUXuk2 .map {
    height: auto;
  }
}
.cid-unMVAUXuk2 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMVAUXuk2 .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMVAUXuk2 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMVAUXuk2 .social-list a:hover {
  opacity: 1;
}
.cid-unMVAUXuk2 .row-element,
.cid-unMVAUXuk2 .image-element {
  padding: 0;
}
.cid-unMVAUXuk2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMVAUXuk2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMVAUXuk2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMVAUXuk2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMVAUXuk2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMVAUXuk2 .underline .line {
    height: 2px;
  }
  .cid-unMVAUXuk2 .mbr-title,
  .cid-unMVAUXuk2 .underline,
  .cid-unMVAUXuk2 .mbr-text,
  .cid-unMVAUXuk2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMVAUXuk2 .mbr-title,
.cid-unMVAUXuk2 .underline {
  color: #a1876c;
}
.cid-unMVAUXuk2 .mbr-text,
.cid-unMVAUXuk2 .mbr-section-btn {
  color: #ffffff;
}
.cid-unMVAUXuk2 mbr-list LI {
  color: #ffffff;
}
.cid-unMVAUXuk2 mbr-list {
  text-align: center;
}
.cid-unMVAUXuk2 .mbr-list,
.cid-unMVAUXuk2 .social-list mbr-list {
  color: #ffffff;
}
.cid-unLhp36V6r {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLhp36V6r [class^="socicon-"]:before,
.cid-unLhp36V6r [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLhp36V6r .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhp36V6r .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhp36V6r .socicon {
  color: #515a2c;
}
.cid-unLhp36V6r .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLhp36V6r .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLhp36V6r .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLhp36V6r .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLhp36V6r .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLhp36V6r .btn {
    font-size: 20px !important;
  }
  .cid-unLhp36V6r .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unLhp3BEzW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLhp3BEzW .container-fluid {
  padding: 0 3rem;
}
.cid-unLhp3BEzW ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLhp3BEzW ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unLhp3BEzW ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unLhp3BEzW ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unLhp3BEzW .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLhp3BEzW .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unLhp3BEzW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLhp3BEzW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLhp3BEzW .mbr-section-title,
.cid-unLhp3BEzW .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLhp56TSp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLhp56TSp .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLhp56TSp .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLhp56TSp .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLhp56TSp .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLhp56TSp .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLhp56TSp .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLhp56TSp .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLhp56TSp .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLhp56TSp .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLhp56TSp .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLs6vpJod .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLs6vpJod .nav-item:focus,
.cid-unLs6vpJod .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLs6vpJod .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLs6vpJod .nav-item .nav-link {
    position: relative;
  }
  .cid-unLs6vpJod .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLs6vpJod .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLs6vpJod .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLs6vpJod .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLs6vpJod .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLs6vpJod .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLs6vpJod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLs6vpJod .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLs6vpJod .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLs6vpJod .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLs6vpJod .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLs6vpJod .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLs6vpJod .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLs6vpJod .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLs6vpJod .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLs6vpJod .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLs6vpJod .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLs6vpJod .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLs6vpJod .navbar.collapsed .navbar-collapse.show,
.cid-unLs6vpJod .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLs6vpJod .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLs6vpJod .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLs6vpJod .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLs6vpJod .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLs6vpJod .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLs6vpJod .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLs6vpJod .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLs6vpJod .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLs6vpJod .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLs6vpJod .navbar.collapsed .right-menu,
.cid-unLs6vpJod .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLs6vpJod .navbar .navbar-collapse.show,
  .cid-unLs6vpJod .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLs6vpJod .navbar .navbar-collapse.show .brand-container,
  .cid-unLs6vpJod .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLs6vpJod .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLs6vpJod .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLs6vpJod .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLs6vpJod .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLs6vpJod .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLs6vpJod .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLs6vpJod .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLs6vpJod .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLs6vpJod .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLs6vpJod .navbar .right-menu,
  .cid-unLs6vpJod .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLs6vpJod .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLs6vpJod .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLs6vpJod .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLs6vpJod .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLs6vpJod .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLs6vpJod .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLs6vpJod .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLs6vpJod .dropdown-item.active,
.cid-unLs6vpJod .dropdown-item:active {
  background-color: transparent;
}
.cid-unLs6vpJod .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLs6vpJod .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLs6vpJod .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLs6vpJod .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLs6vpJod .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLs6vpJod .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLs6vpJod ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLs6vpJod ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLs6vpJod .navbar-buttons {
  margin-left: auto;
}
.cid-unLs6vpJod button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLs6vpJod button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLs6vpJod button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLs6vpJod button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLs6vpJod button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLs6vpJod button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLs6vpJod nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLs6vpJod nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLs6vpJod nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLs6vpJod nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLs6vpJod .navbar-dropdown {
  position: fixed;
}
.cid-unLs6vpJod a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLs6vpJod .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLs6vpJod .right-menu,
.cid-unLs6vpJod .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLs6vpJod .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLs6vpJod .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLs6vpJod .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLs6vpJod .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLs6vpJod .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLs6vpJod .card-wrapper {
  z-index: 3;
}
.cid-unLs6vpJod .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLs6vpJod .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLs6vpJod .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLs6w5yaD {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLs6w5yaD h3 {
  position: relative;
}
.cid-unLs6w5yaD h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLs6w5yaD svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLs6w5yaD g rect {
  fill: #ffffff;
}
.cid-unLs6w5yaD H1 {
  color: #ffffff;
}
.cid-unLs6wNqac {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLs6wNqac .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLs6wNqac .mbr-shop .row {
  margin: 0;
}
.cid-unLs6wNqac .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLs6wNqac .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLs6wNqac .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLs6wNqac .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLs6wNqac .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLs6wNqac .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLs6wNqac .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLs6wNqac .mbr-shop .hide-modal {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLs6wNqac .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLs6wNqac .mbr-shop .filter-by-pu,
.cid-unLs6wNqac .mbr-shop .filter-by-pd,
.cid-unLs6wNqac .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLs6wNqac .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLs6wNqac .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLs6wNqac .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLs6wNqac .mbr-shop .galleryItem h4,
.cid-unLs6wNqac .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLs6wNqac .mbr-shop .galleryItem h5,
.cid-unLs6wNqac .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLs6wNqac .mbr-shop .galleryItem p,
.cid-unLs6wNqac .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLs6wNqac .mbr-shop .item-button {
  text-align: center;
}
.cid-unLs6wNqac .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLs6wNqac .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLs6wNqac .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLs6wNqac .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLs6wNqac .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLs6wNqac .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLs6wNqac .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLs6wNqac .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLs6wNqac .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLs6wNqac .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLs6wNqac .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLs6wNqac .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLs6wNqac .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLs6wNqac .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLs6wNqac .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLs6wNqac .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLs6wNqac .mbr-shop .range-controls {
  position: relative;
}
.cid-unLs6wNqac .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLs6wNqac .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLs6wNqac .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLs6wNqac .mbr-shop .toggle:hover,
.cid-unLs6wNqac .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLs6wNqac .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLs6wNqac .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLs6wNqac .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLs6wNqac .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLs6wNqac .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLs6wNqac .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLs6wNqac .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLs6wNqac .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLs6wNqac .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLs6wNqac .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLs6wNqac .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLs6wNqac .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLs6wNqac .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLs6wNqac .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLs6wNqac .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLs6wNqac .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLs6wNqac .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLs6wNqac .mbr-shop .shop-items .onsale,
.cid-unLs6wNqac .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLs6wNqac .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLs6wNqac .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLs6wNqac .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLs6wNqac .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLs6wNqac .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLs6wNqac .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLs6wNqac .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLs6wNqac .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLs6wNqac .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLs6wNqac .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLs6wNqac .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLs6wNqac .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLs6wNqac .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLs6wNqac .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLs6wNqac .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLs6wNqac .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLs6wNqac .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLs6wNqac .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLs6wNqac .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLs6wNqac .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLs6wNqac .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLs6wNqac .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLs6wNqac .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLs6wNqac .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLs6wNqac .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLs6wNqac .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLs6wNqac .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLs6wNqac .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLs6wNqac .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLs6wNqac .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLs6wNqac .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLs6wNqac .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLs6wNqac .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLs6wNqac .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLs6wNqac .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMVTiMfKI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMVTiMfKI .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMVTiMfKI H2 {
  color: #ffffff;
}
.cid-unLs6A4lRW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unLs6A4lRW .container-fluid {
  padding: 0 3rem;
}
.cid-unLs6A4lRW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLs6A4lRW .card {
  display: block;
}
.cid-unLs6A4lRW .card .card-wrapper {
  height: 1%;
}
.cid-unLs6A4lRW .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unLs6A4lRW .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unLs6A4lRW .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unLs6A4lRW .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLs6A4lRW .prices {
  color: #ffffff;
}
.cid-unLs6A4lRW .oldPrice {
  text-decoration: line-through;
}
.cid-unLs6A4lRW .oldPrice,
.cid-unLs6A4lRW .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unLs6A4lRW .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLs6A4lRW .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMVVqVfyG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMVVqVfyG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVVqVfyG .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMVVqVfyG .btn {
  margin-top: 0;
}
.cid-unMVVqVfyG .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMVVqVfyG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVVqVfyG .btn {
    margin-top: 0.4rem;
  }
  .cid-unMVVqVfyG .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMVVqVfyG .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLs6BA8dV {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLs6BA8dV .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLs6BA8dV .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLs6BA8dV .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLs6BA8dV .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLs6BA8dV .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLs6BA8dV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLs6BA8dV .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLs6BA8dV .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLs6BA8dV {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLs6BA8dV .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLs6BA8dV .subtext-1,
  .cid-unLs6BA8dV .subtext-2 {
    text-align: center !important;
  }
  .cid-unLs6BA8dV .form-text {
    text-align: center !important;
  }
  .cid-unLs6BA8dV .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLs6BA8dV .input-group-btn {
    position: static;
  }
  .cid-unLs6BA8dV .input-group-btn .btn {
    display: block;
  }
}
.cid-unLs6BA8dV .mbr-title,
.cid-unLs6BA8dV .underline {
  color: #515a2c;
}
.cid-unMVWIEHJU {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMVWIEHJU ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVWIEHJU ul li {
  padding: 1rem 0;
}
.cid-unMVWIEHJU ul li:hover {
  color: #b2be90;
}
.cid-unMVWIEHJU .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMVWIEHJU .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMVWIEHJU .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMVWIEHJU .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMVWIEHJU .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMVWIEHJU .map {
    height: auto;
  }
}
.cid-unMVWIEHJU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMVWIEHJU .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMVWIEHJU .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMVWIEHJU .social-list a:hover {
  opacity: 1;
}
.cid-unMVWIEHJU .row-element,
.cid-unMVWIEHJU .image-element {
  padding: 0;
}
.cid-unMVWIEHJU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMVWIEHJU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMVWIEHJU .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMVWIEHJU .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMVWIEHJU .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMVWIEHJU .underline .line {
    height: 2px;
  }
  .cid-unMVWIEHJU .mbr-title,
  .cid-unMVWIEHJU .underline,
  .cid-unMVWIEHJU .mbr-text,
  .cid-unMVWIEHJU .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMVWIEHJU .mbr-title,
.cid-unMVWIEHJU .underline {
  color: #a1876c;
}
.cid-unMVWIEHJU .mbr-text,
.cid-unMVWIEHJU .mbr-section-btn {
  color: #ffffff;
}
.cid-unMVWIEHJU mbr-list LI {
  color: #ffffff;
}
.cid-unMVWIEHJU mbr-list {
  text-align: center;
}
.cid-unMVWIEHJU .mbr-list,
.cid-unMVWIEHJU .social-list mbr-list {
  color: #ffffff;
}
.cid-unLs6E6WW0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLs6E6WW0 [class^="socicon-"]:before,
.cid-unLs6E6WW0 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLs6E6WW0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLs6E6WW0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLs6E6WW0 .socicon {
  color: #515a2c;
}
.cid-unLs6E6WW0 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLs6E6WW0 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLs6E6WW0 .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLs6E6WW0 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLs6E6WW0 .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLs6E6WW0 .btn {
    font-size: 20px !important;
  }
  .cid-unLs6E6WW0 .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMW2psa87 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMW2psa87 .container-fluid {
  padding: 0 3rem;
}
.cid-unMW2psa87 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMW2psa87 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMW2psa87 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMW2psa87 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMW2psa87 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMW2psa87 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMW2psa87 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMW2psa87 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMW2psa87 .mbr-section-title,
.cid-unMW2psa87 .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLs6I4oFD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLs6I4oFD .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLs6I4oFD .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLs6I4oFD .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLs6I4oFD .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLs6I4oFD .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLs6I4oFD .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLs6I4oFD .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLs6I4oFD .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLs6I4oFD .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLs6I4oFD .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLvpNcTYq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLvpNcTYq .nav-item:focus,
.cid-unLvpNcTYq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLvpNcTYq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLvpNcTYq .nav-item .nav-link {
    position: relative;
  }
  .cid-unLvpNcTYq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLvpNcTYq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLvpNcTYq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLvpNcTYq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLvpNcTYq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLvpNcTYq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLvpNcTYq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLvpNcTYq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLvpNcTYq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLvpNcTYq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLvpNcTYq .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLvpNcTYq .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLvpNcTYq .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLvpNcTYq .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLvpNcTYq .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLvpNcTYq .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLvpNcTYq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLvpNcTYq .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLvpNcTYq .navbar.collapsed .navbar-collapse.show,
.cid-unLvpNcTYq .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLvpNcTYq .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLvpNcTYq .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLvpNcTYq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLvpNcTYq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLvpNcTYq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLvpNcTYq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLvpNcTYq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLvpNcTYq .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLvpNcTYq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLvpNcTYq .navbar.collapsed .right-menu,
.cid-unLvpNcTYq .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLvpNcTYq .navbar .navbar-collapse.show,
  .cid-unLvpNcTYq .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLvpNcTYq .navbar .navbar-collapse.show .brand-container,
  .cid-unLvpNcTYq .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLvpNcTYq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLvpNcTYq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLvpNcTYq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLvpNcTYq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLvpNcTYq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLvpNcTYq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLvpNcTYq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLvpNcTYq .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLvpNcTYq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLvpNcTYq .navbar .right-menu,
  .cid-unLvpNcTYq .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLvpNcTYq .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLvpNcTYq .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLvpNcTYq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLvpNcTYq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLvpNcTYq .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLvpNcTYq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLvpNcTYq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLvpNcTYq .dropdown-item.active,
.cid-unLvpNcTYq .dropdown-item:active {
  background-color: transparent;
}
.cid-unLvpNcTYq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLvpNcTYq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLvpNcTYq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLvpNcTYq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLvpNcTYq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLvpNcTYq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLvpNcTYq ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLvpNcTYq ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLvpNcTYq .navbar-buttons {
  margin-left: auto;
}
.cid-unLvpNcTYq button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLvpNcTYq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLvpNcTYq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLvpNcTYq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLvpNcTYq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLvpNcTYq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLvpNcTYq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLvpNcTYq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLvpNcTYq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLvpNcTYq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLvpNcTYq .navbar-dropdown {
  position: fixed;
}
.cid-unLvpNcTYq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLvpNcTYq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLvpNcTYq .right-menu,
.cid-unLvpNcTYq .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLvpNcTYq .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLvpNcTYq .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLvpNcTYq .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLvpNcTYq .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLvpNcTYq .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLvpNcTYq .card-wrapper {
  z-index: 3;
}
.cid-unLvpNcTYq .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLvpNcTYq .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLvpNcTYq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLvpOb9fA {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLvpOb9fA h3 {
  position: relative;
}
.cid-unLvpOb9fA h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLvpOb9fA svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLvpOb9fA g rect {
  fill: #ffffff;
}
.cid-unLvpOb9fA H1 {
  color: #ffffff;
}
.cid-unLvpP24IA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLvpP24IA .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLvpP24IA .mbr-shop .row {
  margin: 0;
}
.cid-unLvpP24IA .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLvpP24IA .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLvpP24IA .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLvpP24IA .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLvpP24IA .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLvpP24IA .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLvpP24IA .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLvpP24IA .mbr-shop .hide-modal {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLvpP24IA .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLvpP24IA .mbr-shop .filter-by-pu,
.cid-unLvpP24IA .mbr-shop .filter-by-pd,
.cid-unLvpP24IA .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLvpP24IA .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLvpP24IA .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLvpP24IA .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLvpP24IA .mbr-shop .galleryItem h4,
.cid-unLvpP24IA .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLvpP24IA .mbr-shop .galleryItem h5,
.cid-unLvpP24IA .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLvpP24IA .mbr-shop .galleryItem p,
.cid-unLvpP24IA .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLvpP24IA .mbr-shop .item-button {
  text-align: center;
}
.cid-unLvpP24IA .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLvpP24IA .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLvpP24IA .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLvpP24IA .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLvpP24IA .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLvpP24IA .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLvpP24IA .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLvpP24IA .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLvpP24IA .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLvpP24IA .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLvpP24IA .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLvpP24IA .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLvpP24IA .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLvpP24IA .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLvpP24IA .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLvpP24IA .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLvpP24IA .mbr-shop .range-controls {
  position: relative;
}
.cid-unLvpP24IA .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLvpP24IA .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLvpP24IA .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLvpP24IA .mbr-shop .toggle:hover,
.cid-unLvpP24IA .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLvpP24IA .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLvpP24IA .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLvpP24IA .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLvpP24IA .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLvpP24IA .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLvpP24IA .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLvpP24IA .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLvpP24IA .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLvpP24IA .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLvpP24IA .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLvpP24IA .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLvpP24IA .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLvpP24IA .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLvpP24IA .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLvpP24IA .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLvpP24IA .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLvpP24IA .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLvpP24IA .mbr-shop .shop-items .onsale,
.cid-unLvpP24IA .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLvpP24IA .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLvpP24IA .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLvpP24IA .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLvpP24IA .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLvpP24IA .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLvpP24IA .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLvpP24IA .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLvpP24IA .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLvpP24IA .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLvpP24IA .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLvpP24IA .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLvpP24IA .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLvpP24IA .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLvpP24IA .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLvpP24IA .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLvpP24IA .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLvpP24IA .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLvpP24IA .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLvpP24IA .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLvpP24IA .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLvpP24IA .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLvpP24IA .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLvpP24IA .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLvpP24IA .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLvpP24IA .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLvpP24IA .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLvpP24IA .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLvpP24IA .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLvpP24IA .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLvpP24IA .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLvpP24IA .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLvpP24IA .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLvpP24IA .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLvpP24IA .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLvpP24IA .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMWfpQill {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMWfpQill .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMWfpQill H2 {
  color: #ffffff;
}
.cid-unMWhf4ynp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMWhf4ynp .container-fluid {
  padding: 0 3rem;
}
.cid-unMWhf4ynp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMWhf4ynp .card {
  display: block;
}
.cid-unMWhf4ynp .card .card-wrapper {
  height: 1%;
}
.cid-unMWhf4ynp .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMWhf4ynp .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMWhf4ynp .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMWhf4ynp .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMWhf4ynp .prices {
  color: #ffffff;
}
.cid-unMWhf4ynp .oldPrice {
  text-decoration: line-through;
}
.cid-unMWhf4ynp .oldPrice,
.cid-unMWhf4ynp .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMWhf4ynp .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWhf4ynp .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMWi5U22R {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMWi5U22R .container-fluid {
  padding: 0 3rem;
}
.cid-unMWi5U22R .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMWi5U22R .btn {
  margin-top: 0;
}
.cid-unMWi5U22R .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMWi5U22R .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWi5U22R .btn {
    margin-top: 0.4rem;
  }
  .cid-unMWi5U22R .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMWi5U22R .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLvpTajZh {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLvpTajZh .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLvpTajZh .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLvpTajZh .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLvpTajZh .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLvpTajZh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLvpTajZh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLvpTajZh .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLvpTajZh .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLvpTajZh {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLvpTajZh .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLvpTajZh .subtext-1,
  .cid-unLvpTajZh .subtext-2 {
    text-align: center !important;
  }
  .cid-unLvpTajZh .form-text {
    text-align: center !important;
  }
  .cid-unLvpTajZh .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLvpTajZh .input-group-btn {
    position: static;
  }
  .cid-unLvpTajZh .input-group-btn .btn {
    display: block;
  }
}
.cid-unLvpTajZh .mbr-title,
.cid-unLvpTajZh .underline {
  color: #515a2c;
}
.cid-unMWiJy4ca {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMWiJy4ca ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMWiJy4ca ul li {
  padding: 1rem 0;
}
.cid-unMWiJy4ca ul li:hover {
  color: #b2be90;
}
.cid-unMWiJy4ca .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMWiJy4ca .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMWiJy4ca .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMWiJy4ca .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMWiJy4ca .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMWiJy4ca .map {
    height: auto;
  }
}
.cid-unMWiJy4ca .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMWiJy4ca .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMWiJy4ca .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMWiJy4ca .social-list a:hover {
  opacity: 1;
}
.cid-unMWiJy4ca .row-element,
.cid-unMWiJy4ca .image-element {
  padding: 0;
}
.cid-unMWiJy4ca .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWiJy4ca .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMWiJy4ca .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMWiJy4ca .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMWiJy4ca .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMWiJy4ca .underline .line {
    height: 2px;
  }
  .cid-unMWiJy4ca .mbr-title,
  .cid-unMWiJy4ca .underline,
  .cid-unMWiJy4ca .mbr-text,
  .cid-unMWiJy4ca .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMWiJy4ca .mbr-title,
.cid-unMWiJy4ca .underline {
  color: #a1876c;
}
.cid-unMWiJy4ca .mbr-text,
.cid-unMWiJy4ca .mbr-section-btn {
  color: #ffffff;
}
.cid-unMWiJy4ca mbr-list LI {
  color: #ffffff;
}
.cid-unMWiJy4ca mbr-list {
  text-align: center;
}
.cid-unMWiJy4ca .mbr-list,
.cid-unMWiJy4ca .social-list mbr-list {
  color: #ffffff;
}
.cid-unLvpUJ4s7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLvpUJ4s7 [class^="socicon-"]:before,
.cid-unLvpUJ4s7 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLvpUJ4s7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLvpUJ4s7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLvpUJ4s7 .socicon {
  color: #515a2c;
}
.cid-unLvpUJ4s7 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLvpUJ4s7 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLvpUJ4s7 .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLvpUJ4s7 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLvpUJ4s7 .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLvpUJ4s7 .btn {
    font-size: 20px !important;
  }
  .cid-unLvpUJ4s7 .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMWjUAt9g {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMWjUAt9g .container-fluid {
  padding: 0 3rem;
}
.cid-unMWjUAt9g ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMWjUAt9g ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMWjUAt9g ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMWjUAt9g ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMWjUAt9g .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWjUAt9g .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMWjUAt9g .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWjUAt9g .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMWjUAt9g .mbr-section-title,
.cid-unMWjUAt9g .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLvpWB2mG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLvpWB2mG .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLvpWB2mG .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLvpWB2mG .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLvpWB2mG .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLvpWB2mG .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLvpWB2mG .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLvpWB2mG .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLvpWB2mG .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLvpWB2mG .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLvpWB2mG .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLyYfnSiP .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLyYfnSiP .nav-item:focus,
.cid-unLyYfnSiP .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLyYfnSiP .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLyYfnSiP .nav-item .nav-link {
    position: relative;
  }
  .cid-unLyYfnSiP .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLyYfnSiP .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLyYfnSiP .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLyYfnSiP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLyYfnSiP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLyYfnSiP .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLyYfnSiP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLyYfnSiP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLyYfnSiP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLyYfnSiP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLyYfnSiP .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLyYfnSiP .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLyYfnSiP .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLyYfnSiP .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLyYfnSiP .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLyYfnSiP .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLyYfnSiP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLyYfnSiP .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLyYfnSiP .navbar.collapsed .navbar-collapse.show,
.cid-unLyYfnSiP .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLyYfnSiP .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLyYfnSiP .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLyYfnSiP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLyYfnSiP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLyYfnSiP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLyYfnSiP .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLyYfnSiP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLyYfnSiP .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLyYfnSiP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLyYfnSiP .navbar.collapsed .right-menu,
.cid-unLyYfnSiP .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLyYfnSiP .navbar .navbar-collapse.show,
  .cid-unLyYfnSiP .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLyYfnSiP .navbar .navbar-collapse.show .brand-container,
  .cid-unLyYfnSiP .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLyYfnSiP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLyYfnSiP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLyYfnSiP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLyYfnSiP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLyYfnSiP .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLyYfnSiP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLyYfnSiP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLyYfnSiP .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLyYfnSiP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLyYfnSiP .navbar .right-menu,
  .cid-unLyYfnSiP .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLyYfnSiP .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLyYfnSiP .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLyYfnSiP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLyYfnSiP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLyYfnSiP .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLyYfnSiP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLyYfnSiP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLyYfnSiP .dropdown-item.active,
.cid-unLyYfnSiP .dropdown-item:active {
  background-color: transparent;
}
.cid-unLyYfnSiP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLyYfnSiP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLyYfnSiP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLyYfnSiP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLyYfnSiP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLyYfnSiP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLyYfnSiP ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLyYfnSiP ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLyYfnSiP .navbar-buttons {
  margin-left: auto;
}
.cid-unLyYfnSiP button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLyYfnSiP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLyYfnSiP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLyYfnSiP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLyYfnSiP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLyYfnSiP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLyYfnSiP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLyYfnSiP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLyYfnSiP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLyYfnSiP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLyYfnSiP .navbar-dropdown {
  position: fixed;
}
.cid-unLyYfnSiP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLyYfnSiP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLyYfnSiP .right-menu,
.cid-unLyYfnSiP .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLyYfnSiP .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLyYfnSiP .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLyYfnSiP .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLyYfnSiP .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLyYfnSiP .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLyYfnSiP .card-wrapper {
  z-index: 3;
}
.cid-unLyYfnSiP .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLyYfnSiP .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLyYfnSiP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLyYfRCFc {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLyYfRCFc h3 {
  position: relative;
}
.cid-unLyYfRCFc h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLyYfRCFc svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLyYfRCFc g rect {
  fill: #ffffff;
}
.cid-unLyYfRCFc H1 {
  color: #ffffff;
}
.cid-unLyYgmxri {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLyYgmxri .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLyYgmxri .mbr-shop .row {
  margin: 0;
}
.cid-unLyYgmxri .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLyYgmxri .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLyYgmxri .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLyYgmxri .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLyYgmxri .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLyYgmxri .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLyYgmxri .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLyYgmxri .mbr-shop .hide-modal {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLyYgmxri .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLyYgmxri .mbr-shop .filter-by-pu,
.cid-unLyYgmxri .mbr-shop .filter-by-pd,
.cid-unLyYgmxri .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLyYgmxri .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLyYgmxri .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLyYgmxri .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLyYgmxri .mbr-shop .galleryItem h4,
.cid-unLyYgmxri .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLyYgmxri .mbr-shop .galleryItem h5,
.cid-unLyYgmxri .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLyYgmxri .mbr-shop .galleryItem p,
.cid-unLyYgmxri .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLyYgmxri .mbr-shop .item-button {
  text-align: center;
}
.cid-unLyYgmxri .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLyYgmxri .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLyYgmxri .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLyYgmxri .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLyYgmxri .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLyYgmxri .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLyYgmxri .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLyYgmxri .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLyYgmxri .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLyYgmxri .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLyYgmxri .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLyYgmxri .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLyYgmxri .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLyYgmxri .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLyYgmxri .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLyYgmxri .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLyYgmxri .mbr-shop .range-controls {
  position: relative;
}
.cid-unLyYgmxri .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLyYgmxri .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLyYgmxri .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLyYgmxri .mbr-shop .toggle:hover,
.cid-unLyYgmxri .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLyYgmxri .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLyYgmxri .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLyYgmxri .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLyYgmxri .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLyYgmxri .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLyYgmxri .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLyYgmxri .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLyYgmxri .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLyYgmxri .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLyYgmxri .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLyYgmxri .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLyYgmxri .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLyYgmxri .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLyYgmxri .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLyYgmxri .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLyYgmxri .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLyYgmxri .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLyYgmxri .mbr-shop .shop-items .onsale,
.cid-unLyYgmxri .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLyYgmxri .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLyYgmxri .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLyYgmxri .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLyYgmxri .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLyYgmxri .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLyYgmxri .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLyYgmxri .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLyYgmxri .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLyYgmxri .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLyYgmxri .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLyYgmxri .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLyYgmxri .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLyYgmxri .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLyYgmxri .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLyYgmxri .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLyYgmxri .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLyYgmxri .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLyYgmxri .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLyYgmxri .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLyYgmxri .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLyYgmxri .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLyYgmxri .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLyYgmxri .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLyYgmxri .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLyYgmxri .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLyYgmxri .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLyYgmxri .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLyYgmxri .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLyYgmxri .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLyYgmxri .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLyYgmxri .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLyYgmxri .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLyYgmxri .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLyYgmxri .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLyYgmxri .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMWxxR6gB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMWxxR6gB .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMWxxR6gB H2 {
  color: #ffffff;
}
.cid-unLyYiN2j1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unLyYiN2j1 .container-fluid {
  padding: 0 3rem;
}
.cid-unLyYiN2j1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLyYiN2j1 .card {
  display: block;
}
.cid-unLyYiN2j1 .card .card-wrapper {
  height: 1%;
}
.cid-unLyYiN2j1 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unLyYiN2j1 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unLyYiN2j1 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unLyYiN2j1 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLyYiN2j1 .prices {
  color: #ffffff;
}
.cid-unLyYiN2j1 .oldPrice {
  text-decoration: line-through;
}
.cid-unLyYiN2j1 .oldPrice,
.cid-unLyYiN2j1 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unLyYiN2j1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLyYiN2j1 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMWBfY3zY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMWBfY3zY .container-fluid {
  padding: 0 3rem;
}
.cid-unMWBfY3zY .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMWBfY3zY .btn {
  margin-top: 0;
}
.cid-unMWBfY3zY .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMWBfY3zY .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWBfY3zY .btn {
    margin-top: 0.4rem;
  }
  .cid-unMWBfY3zY .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMWBfY3zY .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLyYjXfnU {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLyYjXfnU .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLyYjXfnU .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLyYjXfnU .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLyYjXfnU .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLyYjXfnU .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLyYjXfnU .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLyYjXfnU .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLyYjXfnU .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLyYjXfnU {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLyYjXfnU .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLyYjXfnU .subtext-1,
  .cid-unLyYjXfnU .subtext-2 {
    text-align: center !important;
  }
  .cid-unLyYjXfnU .form-text {
    text-align: center !important;
  }
  .cid-unLyYjXfnU .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLyYjXfnU .input-group-btn {
    position: static;
  }
  .cid-unLyYjXfnU .input-group-btn .btn {
    display: block;
  }
}
.cid-unLyYjXfnU .mbr-title,
.cid-unLyYjXfnU .underline {
  color: #515a2c;
}
.cid-unMWCdtbs8 {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMWCdtbs8 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMWCdtbs8 ul li {
  padding: 1rem 0;
}
.cid-unMWCdtbs8 ul li:hover {
  color: #b2be90;
}
.cid-unMWCdtbs8 .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMWCdtbs8 .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMWCdtbs8 .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMWCdtbs8 .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMWCdtbs8 .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMWCdtbs8 .map {
    height: auto;
  }
}
.cid-unMWCdtbs8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMWCdtbs8 .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMWCdtbs8 .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMWCdtbs8 .social-list a:hover {
  opacity: 1;
}
.cid-unMWCdtbs8 .row-element,
.cid-unMWCdtbs8 .image-element {
  padding: 0;
}
.cid-unMWCdtbs8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWCdtbs8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMWCdtbs8 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMWCdtbs8 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMWCdtbs8 .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMWCdtbs8 .underline .line {
    height: 2px;
  }
  .cid-unMWCdtbs8 .mbr-title,
  .cid-unMWCdtbs8 .underline,
  .cid-unMWCdtbs8 .mbr-text,
  .cid-unMWCdtbs8 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMWCdtbs8 .mbr-title,
.cid-unMWCdtbs8 .underline {
  color: #a1876c;
}
.cid-unMWCdtbs8 .mbr-text,
.cid-unMWCdtbs8 .mbr-section-btn {
  color: #ffffff;
}
.cid-unMWCdtbs8 mbr-list LI {
  color: #ffffff;
}
.cid-unMWCdtbs8 mbr-list {
  text-align: center;
}
.cid-unMWCdtbs8 .mbr-list,
.cid-unMWCdtbs8 .social-list mbr-list {
  color: #ffffff;
}
.cid-unLyYlwWDe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLyYlwWDe [class^="socicon-"]:before,
.cid-unLyYlwWDe [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLyYlwWDe .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLyYlwWDe .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLyYlwWDe .socicon {
  color: #515a2c;
}
.cid-unLyYlwWDe .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLyYlwWDe .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLyYlwWDe .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLyYlwWDe .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLyYlwWDe .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLyYlwWDe .btn {
    font-size: 20px !important;
  }
  .cid-unLyYlwWDe .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMWD08Lzm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMWD08Lzm .container-fluid {
  padding: 0 3rem;
}
.cid-unMWD08Lzm ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMWD08Lzm ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMWD08Lzm ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMWD08Lzm ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMWD08Lzm .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWD08Lzm .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMWD08Lzm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWD08Lzm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMWD08Lzm .mbr-section-title,
.cid-unMWD08Lzm .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLyYnwNjp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLyYnwNjp .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLyYnwNjp .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLyYnwNjp .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLyYnwNjp .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLyYnwNjp .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLyYnwNjp .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLyYnwNjp .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLyYnwNjp .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLyYnwNjp .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLyYnwNjp .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLzR6y6CU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLzR6y6CU .nav-item:focus,
.cid-unLzR6y6CU .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLzR6y6CU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLzR6y6CU .nav-item .nav-link {
    position: relative;
  }
  .cid-unLzR6y6CU .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLzR6y6CU .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLzR6y6CU .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLzR6y6CU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLzR6y6CU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLzR6y6CU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLzR6y6CU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLzR6y6CU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLzR6y6CU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLzR6y6CU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLzR6y6CU .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLzR6y6CU .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLzR6y6CU .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLzR6y6CU .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLzR6y6CU .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLzR6y6CU .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLzR6y6CU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLzR6y6CU .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLzR6y6CU .navbar.collapsed .navbar-collapse.show,
.cid-unLzR6y6CU .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLzR6y6CU .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLzR6y6CU .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLzR6y6CU .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLzR6y6CU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLzR6y6CU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLzR6y6CU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLzR6y6CU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLzR6y6CU .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLzR6y6CU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLzR6y6CU .navbar.collapsed .right-menu,
.cid-unLzR6y6CU .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLzR6y6CU .navbar .navbar-collapse.show,
  .cid-unLzR6y6CU .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLzR6y6CU .navbar .navbar-collapse.show .brand-container,
  .cid-unLzR6y6CU .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLzR6y6CU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLzR6y6CU .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLzR6y6CU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLzR6y6CU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLzR6y6CU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLzR6y6CU .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLzR6y6CU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLzR6y6CU .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLzR6y6CU .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLzR6y6CU .navbar .right-menu,
  .cid-unLzR6y6CU .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLzR6y6CU .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLzR6y6CU .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLzR6y6CU .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLzR6y6CU .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLzR6y6CU .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLzR6y6CU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLzR6y6CU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLzR6y6CU .dropdown-item.active,
.cid-unLzR6y6CU .dropdown-item:active {
  background-color: transparent;
}
.cid-unLzR6y6CU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLzR6y6CU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLzR6y6CU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLzR6y6CU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLzR6y6CU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLzR6y6CU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLzR6y6CU ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLzR6y6CU ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLzR6y6CU .navbar-buttons {
  margin-left: auto;
}
.cid-unLzR6y6CU button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLzR6y6CU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLzR6y6CU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLzR6y6CU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLzR6y6CU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLzR6y6CU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLzR6y6CU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLzR6y6CU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLzR6y6CU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLzR6y6CU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLzR6y6CU .navbar-dropdown {
  position: fixed;
}
.cid-unLzR6y6CU a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLzR6y6CU .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLzR6y6CU .right-menu,
.cid-unLzR6y6CU .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLzR6y6CU .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLzR6y6CU .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLzR6y6CU .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLzR6y6CU .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLzR6y6CU .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLzR6y6CU .card-wrapper {
  z-index: 3;
}
.cid-unLzR6y6CU .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLzR6y6CU .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLzR6y6CU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLzR7K34Q {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLzR7K34Q h3 {
  position: relative;
}
.cid-unLzR7K34Q h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLzR7K34Q svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLzR7K34Q g rect {
  fill: #ffffff;
}
.cid-unLzR7K34Q H1 {
  color: #ffffff;
}
.cid-unLAe2P7dL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLAe2P7dL .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLAe2P7dL .mbr-shop .row {
  margin: 0;
}
.cid-unLAe2P7dL .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLAe2P7dL .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLAe2P7dL .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLAe2P7dL .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLAe2P7dL .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLAe2P7dL .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLAe2P7dL .mbr-shop .hide-modal {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLAe2P7dL .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLAe2P7dL .mbr-shop .filter-by-pu,
.cid-unLAe2P7dL .mbr-shop .filter-by-pd,
.cid-unLAe2P7dL .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLAe2P7dL .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLAe2P7dL .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem h4,
.cid-unLAe2P7dL .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem h5,
.cid-unLAe2P7dL .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem p,
.cid-unLAe2P7dL .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLAe2P7dL .mbr-shop .item-button {
  text-align: center;
}
.cid-unLAe2P7dL .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLAe2P7dL .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLAe2P7dL .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLAe2P7dL .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLAe2P7dL .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLAe2P7dL .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLAe2P7dL .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLAe2P7dL .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLAe2P7dL .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLAe2P7dL .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLAe2P7dL .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLAe2P7dL .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLAe2P7dL .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLAe2P7dL .mbr-shop .range-controls {
  position: relative;
}
.cid-unLAe2P7dL .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLAe2P7dL .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLAe2P7dL .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLAe2P7dL .mbr-shop .toggle:hover,
.cid-unLAe2P7dL .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLAe2P7dL .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLAe2P7dL .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLAe2P7dL .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLAe2P7dL .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLAe2P7dL .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLAe2P7dL .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLAe2P7dL .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLAe2P7dL .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLAe2P7dL .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLAe2P7dL .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLAe2P7dL .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLAe2P7dL .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLAe2P7dL .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLAe2P7dL .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLAe2P7dL .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLAe2P7dL .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLAe2P7dL .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLAe2P7dL .mbr-shop .shop-items .onsale,
.cid-unLAe2P7dL .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLAe2P7dL .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLAe2P7dL .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLAe2P7dL .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLAe2P7dL .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLAe2P7dL .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLAe2P7dL .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLAe2P7dL .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLAe2P7dL .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLAe2P7dL .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLAe2P7dL .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLAe2P7dL .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLAe2P7dL .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLAe2P7dL .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLAe2P7dL .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLAe2P7dL .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLAe2P7dL .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLAe2P7dL .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLAe2P7dL .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLAe2P7dL .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLAe2P7dL .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLAe2P7dL .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLAe2P7dL .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLAe2P7dL .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLAe2P7dL .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLAe2P7dL .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLAe2P7dL .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLAe2P7dL .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLAe2P7dL .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLAe2P7dL .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLAe2P7dL .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLAe2P7dL .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLAe2P7dL .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLAe2P7dL .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLAe2P7dL .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLAe2P7dL .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMWQIBQDV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMWQIBQDV .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMWQIBQDV H2 {
  color: #ffffff;
}
.cid-unMWRQZ7qO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMWRQZ7qO .container-fluid {
  padding: 0 3rem;
}
.cid-unMWRQZ7qO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMWRQZ7qO .card {
  display: block;
}
.cid-unMWRQZ7qO .card .card-wrapper {
  height: 1%;
}
.cid-unMWRQZ7qO .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMWRQZ7qO .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMWRQZ7qO .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMWRQZ7qO .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMWRQZ7qO .prices {
  color: #ffffff;
}
.cid-unMWRQZ7qO .oldPrice {
  text-decoration: line-through;
}
.cid-unMWRQZ7qO .oldPrice,
.cid-unMWRQZ7qO .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMWRQZ7qO .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWRQZ7qO .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMWSRRSlK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMWSRRSlK .container-fluid {
  padding: 0 3rem;
}
.cid-unMWSRRSlK .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMWSRRSlK .btn {
  margin-top: 0;
}
.cid-unMWSRRSlK .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMWSRRSlK .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWSRRSlK .btn {
    margin-top: 0.4rem;
  }
  .cid-unMWSRRSlK .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMWSRRSlK .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLzRd3sJJ {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLzRd3sJJ .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLzRd3sJJ .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLzRd3sJJ .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLzRd3sJJ .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLzRd3sJJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLzRd3sJJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLzRd3sJJ .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLzRd3sJJ .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLzRd3sJJ {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLzRd3sJJ .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLzRd3sJJ .subtext-1,
  .cid-unLzRd3sJJ .subtext-2 {
    text-align: center !important;
  }
  .cid-unLzRd3sJJ .form-text {
    text-align: center !important;
  }
  .cid-unLzRd3sJJ .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLzRd3sJJ .input-group-btn {
    position: static;
  }
  .cid-unLzRd3sJJ .input-group-btn .btn {
    display: block;
  }
}
.cid-unLzRd3sJJ .mbr-title,
.cid-unLzRd3sJJ .underline {
  color: #515a2c;
}
.cid-unMWTVZKHf {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMWTVZKHf ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMWTVZKHf ul li {
  padding: 1rem 0;
}
.cid-unMWTVZKHf ul li:hover {
  color: #b2be90;
}
.cid-unMWTVZKHf .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMWTVZKHf .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMWTVZKHf .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMWTVZKHf .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMWTVZKHf .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMWTVZKHf .map {
    height: auto;
  }
}
.cid-unMWTVZKHf .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMWTVZKHf .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMWTVZKHf .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMWTVZKHf .social-list a:hover {
  opacity: 1;
}
.cid-unMWTVZKHf .row-element,
.cid-unMWTVZKHf .image-element {
  padding: 0;
}
.cid-unMWTVZKHf .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWTVZKHf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMWTVZKHf .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMWTVZKHf .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMWTVZKHf .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMWTVZKHf .underline .line {
    height: 2px;
  }
  .cid-unMWTVZKHf .mbr-title,
  .cid-unMWTVZKHf .underline,
  .cid-unMWTVZKHf .mbr-text,
  .cid-unMWTVZKHf .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMWTVZKHf .mbr-title,
.cid-unMWTVZKHf .underline {
  color: #a1876c;
}
.cid-unMWTVZKHf .mbr-text,
.cid-unMWTVZKHf .mbr-section-btn {
  color: #ffffff;
}
.cid-unMWTVZKHf mbr-list LI {
  color: #ffffff;
}
.cid-unMWTVZKHf mbr-list {
  text-align: center;
}
.cid-unMWTVZKHf .mbr-list,
.cid-unMWTVZKHf .social-list mbr-list {
  color: #ffffff;
}
.cid-unLzRew0N9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLzRew0N9 [class^="socicon-"]:before,
.cid-unLzRew0N9 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLzRew0N9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLzRew0N9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLzRew0N9 .socicon {
  color: #515a2c;
}
.cid-unLzRew0N9 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLzRew0N9 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLzRew0N9 .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLzRew0N9 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLzRew0N9 .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLzRew0N9 .btn {
    font-size: 20px !important;
  }
  .cid-unLzRew0N9 .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMWUTxb8X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMWUTxb8X .container-fluid {
  padding: 0 3rem;
}
.cid-unMWUTxb8X ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMWUTxb8X ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMWUTxb8X ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMWUTxb8X ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMWUTxb8X .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMWUTxb8X .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMWUTxb8X .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMWUTxb8X .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMWUTxb8X .mbr-section-title,
.cid-unMWUTxb8X .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLzRgqdCy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLzRgqdCy .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLzRgqdCy .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLzRgqdCy .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLzRgqdCy .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLzRgqdCy .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLzRgqdCy .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLzRgqdCy .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLzRgqdCy .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLzRgqdCy .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLzRgqdCy .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLBxCbIff .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLBxCbIff .nav-item:focus,
.cid-unLBxCbIff .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLBxCbIff .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLBxCbIff .nav-item .nav-link {
    position: relative;
  }
  .cid-unLBxCbIff .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLBxCbIff .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLBxCbIff .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLBxCbIff .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLBxCbIff .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLBxCbIff .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLBxCbIff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLBxCbIff .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLBxCbIff .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLBxCbIff .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLBxCbIff .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLBxCbIff .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLBxCbIff .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLBxCbIff .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLBxCbIff .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLBxCbIff .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLBxCbIff .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLBxCbIff .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLBxCbIff .navbar.collapsed .navbar-collapse.show,
.cid-unLBxCbIff .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLBxCbIff .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLBxCbIff .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLBxCbIff .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLBxCbIff .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLBxCbIff .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLBxCbIff .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLBxCbIff .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLBxCbIff .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLBxCbIff .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLBxCbIff .navbar.collapsed .right-menu,
.cid-unLBxCbIff .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLBxCbIff .navbar .navbar-collapse.show,
  .cid-unLBxCbIff .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLBxCbIff .navbar .navbar-collapse.show .brand-container,
  .cid-unLBxCbIff .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLBxCbIff .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLBxCbIff .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLBxCbIff .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLBxCbIff .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLBxCbIff .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLBxCbIff .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLBxCbIff .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLBxCbIff .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLBxCbIff .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLBxCbIff .navbar .right-menu,
  .cid-unLBxCbIff .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLBxCbIff .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLBxCbIff .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLBxCbIff .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLBxCbIff .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLBxCbIff .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLBxCbIff .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLBxCbIff .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLBxCbIff .dropdown-item.active,
.cid-unLBxCbIff .dropdown-item:active {
  background-color: transparent;
}
.cid-unLBxCbIff .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLBxCbIff .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLBxCbIff .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLBxCbIff .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLBxCbIff .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLBxCbIff .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLBxCbIff ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLBxCbIff ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLBxCbIff .navbar-buttons {
  margin-left: auto;
}
.cid-unLBxCbIff button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLBxCbIff button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLBxCbIff button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLBxCbIff button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLBxCbIff button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLBxCbIff button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLBxCbIff nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLBxCbIff nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLBxCbIff nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLBxCbIff nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLBxCbIff .navbar-dropdown {
  position: fixed;
}
.cid-unLBxCbIff a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLBxCbIff .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLBxCbIff .right-menu,
.cid-unLBxCbIff .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLBxCbIff .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLBxCbIff .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLBxCbIff .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLBxCbIff .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLBxCbIff .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLBxCbIff .card-wrapper {
  z-index: 3;
}
.cid-unLBxCbIff .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLBxCbIff .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLBxCbIff .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLBxCGAP2 {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLBxCGAP2 h3 {
  position: relative;
}
.cid-unLBxCGAP2 h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLBxCGAP2 svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLBxCGAP2 g rect {
  fill: #ffffff;
}
.cid-unLBxCGAP2 H1 {
  color: #ffffff;
}
.cid-unLBxD8S8T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLBxD8S8T .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLBxD8S8T .mbr-shop .row {
  margin: 0;
}
.cid-unLBxD8S8T .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLBxD8S8T .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLBxD8S8T .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLBxD8S8T .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLBxD8S8T .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLBxD8S8T .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLBxD8S8T .mbr-shop .hide-modal {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLBxD8S8T .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLBxD8S8T .mbr-shop .filter-by-pu,
.cid-unLBxD8S8T .mbr-shop .filter-by-pd,
.cid-unLBxD8S8T .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLBxD8S8T .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLBxD8S8T .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem h4,
.cid-unLBxD8S8T .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem h5,
.cid-unLBxD8S8T .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem p,
.cid-unLBxD8S8T .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLBxD8S8T .mbr-shop .item-button {
  text-align: center;
}
.cid-unLBxD8S8T .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLBxD8S8T .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLBxD8S8T .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLBxD8S8T .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLBxD8S8T .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLBxD8S8T .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLBxD8S8T .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLBxD8S8T .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLBxD8S8T .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLBxD8S8T .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLBxD8S8T .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLBxD8S8T .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLBxD8S8T .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLBxD8S8T .mbr-shop .range-controls {
  position: relative;
}
.cid-unLBxD8S8T .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLBxD8S8T .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLBxD8S8T .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLBxD8S8T .mbr-shop .toggle:hover,
.cid-unLBxD8S8T .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLBxD8S8T .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLBxD8S8T .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLBxD8S8T .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLBxD8S8T .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLBxD8S8T .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLBxD8S8T .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLBxD8S8T .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLBxD8S8T .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLBxD8S8T .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLBxD8S8T .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLBxD8S8T .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLBxD8S8T .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLBxD8S8T .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLBxD8S8T .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLBxD8S8T .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLBxD8S8T .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLBxD8S8T .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLBxD8S8T .mbr-shop .shop-items .onsale,
.cid-unLBxD8S8T .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLBxD8S8T .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLBxD8S8T .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLBxD8S8T .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLBxD8S8T .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLBxD8S8T .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLBxD8S8T .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLBxD8S8T .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLBxD8S8T .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLBxD8S8T .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLBxD8S8T .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLBxD8S8T .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLBxD8S8T .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLBxD8S8T .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLBxD8S8T .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLBxD8S8T .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLBxD8S8T .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLBxD8S8T .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLBxD8S8T .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLBxD8S8T .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLBxD8S8T .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLBxD8S8T .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLBxD8S8T .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLBxD8S8T .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLBxD8S8T .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLBxD8S8T .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLBxD8S8T .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLBxD8S8T .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLBxD8S8T .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLBxD8S8T .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLBxD8S8T .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLBxD8S8T .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLBxD8S8T .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLBxD8S8T .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLBxD8S8T .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLBxD8S8T .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMX7PvbZC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMX7PvbZC .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMX7PvbZC H2 {
  color: #ffffff;
}
.cid-unMX8PIttd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMX8PIttd .container-fluid {
  padding: 0 3rem;
}
.cid-unMX8PIttd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMX8PIttd .card {
  display: block;
}
.cid-unMX8PIttd .card .card-wrapper {
  height: 1%;
}
.cid-unMX8PIttd .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMX8PIttd .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMX8PIttd .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMX8PIttd .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMX8PIttd .prices {
  color: #ffffff;
}
.cid-unMX8PIttd .oldPrice {
  text-decoration: line-through;
}
.cid-unMX8PIttd .oldPrice,
.cid-unMX8PIttd .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMX8PIttd .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMX8PIttd .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMX9RIjmk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMX9RIjmk .container-fluid {
  padding: 0 3rem;
}
.cid-unMX9RIjmk .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMX9RIjmk .btn {
  margin-top: 0;
}
.cid-unMX9RIjmk .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMX9RIjmk .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMX9RIjmk .btn {
    margin-top: 0.4rem;
  }
  .cid-unMX9RIjmk .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMX9RIjmk .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLBxGkdTz {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLBxGkdTz .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLBxGkdTz .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLBxGkdTz .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLBxGkdTz .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLBxGkdTz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLBxGkdTz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLBxGkdTz .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLBxGkdTz .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLBxGkdTz {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLBxGkdTz .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLBxGkdTz .subtext-1,
  .cid-unLBxGkdTz .subtext-2 {
    text-align: center !important;
  }
  .cid-unLBxGkdTz .form-text {
    text-align: center !important;
  }
  .cid-unLBxGkdTz .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLBxGkdTz .input-group-btn {
    position: static;
  }
  .cid-unLBxGkdTz .input-group-btn .btn {
    display: block;
  }
}
.cid-unLBxGkdTz .mbr-title,
.cid-unLBxGkdTz .underline {
  color: #515a2c;
}
.cid-unMXcb2UxB {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMXcb2UxB ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMXcb2UxB ul li {
  padding: 1rem 0;
}
.cid-unMXcb2UxB ul li:hover {
  color: #b2be90;
}
.cid-unMXcb2UxB .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMXcb2UxB .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMXcb2UxB .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMXcb2UxB .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMXcb2UxB .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMXcb2UxB .map {
    height: auto;
  }
}
.cid-unMXcb2UxB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMXcb2UxB .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMXcb2UxB .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMXcb2UxB .social-list a:hover {
  opacity: 1;
}
.cid-unMXcb2UxB .row-element,
.cid-unMXcb2UxB .image-element {
  padding: 0;
}
.cid-unMXcb2UxB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXcb2UxB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMXcb2UxB .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMXcb2UxB .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMXcb2UxB .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMXcb2UxB .underline .line {
    height: 2px;
  }
  .cid-unMXcb2UxB .mbr-title,
  .cid-unMXcb2UxB .underline,
  .cid-unMXcb2UxB .mbr-text,
  .cid-unMXcb2UxB .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMXcb2UxB .mbr-title,
.cid-unMXcb2UxB .underline {
  color: #a1876c;
}
.cid-unMXcb2UxB .mbr-text,
.cid-unMXcb2UxB .mbr-section-btn {
  color: #ffffff;
}
.cid-unMXcb2UxB mbr-list LI {
  color: #ffffff;
}
.cid-unMXcb2UxB mbr-list {
  text-align: center;
}
.cid-unMXcb2UxB .mbr-list,
.cid-unMXcb2UxB .social-list mbr-list {
  color: #ffffff;
}
.cid-unLBxHLiks {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLBxHLiks [class^="socicon-"]:before,
.cid-unLBxHLiks [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLBxHLiks .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLBxHLiks .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLBxHLiks .socicon {
  color: #515a2c;
}
.cid-unLBxHLiks .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLBxHLiks .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLBxHLiks .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLBxHLiks .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLBxHLiks .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLBxHLiks .btn {
    font-size: 20px !important;
  }
  .cid-unLBxHLiks .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMXd2bG6C {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMXd2bG6C .container-fluid {
  padding: 0 3rem;
}
.cid-unMXd2bG6C ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMXd2bG6C ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMXd2bG6C ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMXd2bG6C ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMXd2bG6C .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXd2bG6C .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMXd2bG6C .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXd2bG6C .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMXd2bG6C .mbr-section-title,
.cid-unMXd2bG6C .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLBxJyIJj {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLBxJyIJj .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLBxJyIJj .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLBxJyIJj .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLBxJyIJj .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLBxJyIJj .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLBxJyIJj .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLBxJyIJj .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLBxJyIJj .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLBxJyIJj .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLBxJyIJj .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLCSm1EuE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLCSm1EuE .nav-item:focus,
.cid-unLCSm1EuE .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLCSm1EuE .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLCSm1EuE .nav-item .nav-link {
    position: relative;
  }
  .cid-unLCSm1EuE .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLCSm1EuE .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLCSm1EuE .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLCSm1EuE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLCSm1EuE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLCSm1EuE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLCSm1EuE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLCSm1EuE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLCSm1EuE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLCSm1EuE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLCSm1EuE .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLCSm1EuE .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLCSm1EuE .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLCSm1EuE .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLCSm1EuE .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLCSm1EuE .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLCSm1EuE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLCSm1EuE .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLCSm1EuE .navbar.collapsed .navbar-collapse.show,
.cid-unLCSm1EuE .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLCSm1EuE .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLCSm1EuE .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLCSm1EuE .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLCSm1EuE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLCSm1EuE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLCSm1EuE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLCSm1EuE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLCSm1EuE .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLCSm1EuE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLCSm1EuE .navbar.collapsed .right-menu,
.cid-unLCSm1EuE .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLCSm1EuE .navbar .navbar-collapse.show,
  .cid-unLCSm1EuE .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLCSm1EuE .navbar .navbar-collapse.show .brand-container,
  .cid-unLCSm1EuE .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLCSm1EuE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLCSm1EuE .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLCSm1EuE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLCSm1EuE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLCSm1EuE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLCSm1EuE .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLCSm1EuE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLCSm1EuE .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLCSm1EuE .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLCSm1EuE .navbar .right-menu,
  .cid-unLCSm1EuE .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLCSm1EuE .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLCSm1EuE .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLCSm1EuE .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLCSm1EuE .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLCSm1EuE .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLCSm1EuE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLCSm1EuE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLCSm1EuE .dropdown-item.active,
.cid-unLCSm1EuE .dropdown-item:active {
  background-color: transparent;
}
.cid-unLCSm1EuE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLCSm1EuE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLCSm1EuE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLCSm1EuE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLCSm1EuE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLCSm1EuE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLCSm1EuE ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLCSm1EuE ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLCSm1EuE .navbar-buttons {
  margin-left: auto;
}
.cid-unLCSm1EuE button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLCSm1EuE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLCSm1EuE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLCSm1EuE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLCSm1EuE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLCSm1EuE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLCSm1EuE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLCSm1EuE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLCSm1EuE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLCSm1EuE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLCSm1EuE .navbar-dropdown {
  position: fixed;
}
.cid-unLCSm1EuE a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLCSm1EuE .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLCSm1EuE .right-menu,
.cid-unLCSm1EuE .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLCSm1EuE .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLCSm1EuE .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLCSm1EuE .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLCSm1EuE .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLCSm1EuE .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLCSm1EuE .card-wrapper {
  z-index: 3;
}
.cid-unLCSm1EuE .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLCSm1EuE .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLCSm1EuE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLCSmBUFS {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-create-a-series-of-highquality-welllit-and-sh-3.jpg");
}
.cid-unLCSmBUFS h3 {
  position: relative;
}
.cid-unLCSmBUFS h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unLCSmBUFS svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unLCSmBUFS g rect {
  fill: #ffffff;
}
.cid-unLCSmBUFS H1 {
  color: #ffffff;
}
.cid-unLCSn9pQ7 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLCSn9pQ7 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-unLCSn9pQ7 .mbr-shop .row {
  margin: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-unLCSn9pQ7 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-unLCSn9pQ7 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-unLCSn9pQ7 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-unLCSn9pQ7 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-unLCSn9pQ7 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-unLCSn9pQ7 .mbr-shop .hide-modal {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLCSn9pQ7 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-unLCSn9pQ7 .mbr-shop .filter-by-pu,
.cid-unLCSn9pQ7 .mbr-shop .filter-by-pd,
.cid-unLCSn9pQ7 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-unLCSn9pQ7 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-unLCSn9pQ7 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem h4,
.cid-unLCSn9pQ7 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem h5,
.cid-unLCSn9pQ7 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem p,
.cid-unLCSn9pQ7 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-unLCSn9pQ7 .mbr-shop .item-button {
  text-align: center;
}
.cid-unLCSn9pQ7 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-unLCSn9pQ7 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-unLCSn9pQ7 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-unLCSn9pQ7 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-unLCSn9pQ7 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-unLCSn9pQ7 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #515a2c;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item__hided h4,
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item__hided h5,
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-unLCSn9pQ7 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-unLCSn9pQ7 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-unLCSn9pQ7 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-unLCSn9pQ7 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-unLCSn9pQ7 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-unLCSn9pQ7 .mbr-shop .range-controls {
  position: relative;
}
.cid-unLCSn9pQ7 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-unLCSn9pQ7 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-unLCSn9pQ7 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-unLCSn9pQ7 .mbr-shop .toggle:hover,
.cid-unLCSn9pQ7 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-unLCSn9pQ7 .mbr-shop .min-toggle {
  left: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .max-toggle {
  right: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .hided-by-price {
  display: none;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-unLCSn9pQ7 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-unLCSn9pQ7 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-unLCSn9pQ7 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-unLCSn9pQ7 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLCSn9pQ7 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-unLCSn9pQ7 .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-unLCSn9pQ7 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-unLCSn9pQ7 .mbr-shop .shop-items .onsale,
.cid-unLCSn9pQ7 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-unLCSn9pQ7 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-unLCSn9pQ7 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-unLCSn9pQ7 .mbr-shop .price-range {
  display: inline-block;
}
.cid-unLCSn9pQ7 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-unLCSn9pQ7 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-unLCSn9pQ7 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-unLCSn9pQ7 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-unLCSn9pQ7 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-unLCSn9pQ7 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-unLCSn9pQ7 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-unLCSn9pQ7 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-unLCSn9pQ7 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-unLCSn9pQ7 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-unLCSn9pQ7 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-unLCSn9pQ7 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-unLCSn9pQ7 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-unLCSn9pQ7 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-unLCSn9pQ7 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-unLCSn9pQ7 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-unLCSn9pQ7 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-unLCSn9pQ7 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-unLCSn9pQ7 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-unLCSn9pQ7 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-unLCSn9pQ7 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-unLCSn9pQ7 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-unLCSn9pQ7 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-unLCSn9pQ7 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-unLCSn9pQ7 .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-unLCSn9pQ7 .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-unLCSn9pQ7 .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-unLCSn9pQ7 .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLCSn9pQ7 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-unMXq36TXI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMXq36TXI .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMXq36TXI H2 {
  color: #ffffff;
}
.cid-unMXr1zozn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMXr1zozn .container-fluid {
  padding: 0 3rem;
}
.cid-unMXr1zozn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMXr1zozn .card {
  display: block;
}
.cid-unMXr1zozn .card .card-wrapper {
  height: 1%;
}
.cid-unMXr1zozn .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMXr1zozn .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMXr1zozn .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMXr1zozn .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMXr1zozn .prices {
  color: #ffffff;
}
.cid-unMXr1zozn .oldPrice {
  text-decoration: line-through;
}
.cid-unMXr1zozn .oldPrice,
.cid-unMXr1zozn .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMXr1zozn .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXr1zozn .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMXrRVgEI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMXrRVgEI .container-fluid {
  padding: 0 3rem;
}
.cid-unMXrRVgEI .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMXrRVgEI .btn {
  margin-top: 0;
}
.cid-unMXrRVgEI .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMXrRVgEI .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXrRVgEI .btn {
    margin-top: 0.4rem;
  }
  .cid-unMXrRVgEI .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMXrRVgEI .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLCSqErGa {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLCSqErGa .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLCSqErGa .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLCSqErGa .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLCSqErGa .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLCSqErGa .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLCSqErGa .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLCSqErGa .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLCSqErGa .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLCSqErGa {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLCSqErGa .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLCSqErGa .subtext-1,
  .cid-unLCSqErGa .subtext-2 {
    text-align: center !important;
  }
  .cid-unLCSqErGa .form-text {
    text-align: center !important;
  }
  .cid-unLCSqErGa .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLCSqErGa .input-group-btn {
    position: static;
  }
  .cid-unLCSqErGa .input-group-btn .btn {
    display: block;
  }
}
.cid-unLCSqErGa .mbr-title,
.cid-unLCSqErGa .underline {
  color: #515a2c;
}
.cid-unMXsLyidI {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMXsLyidI ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMXsLyidI ul li {
  padding: 1rem 0;
}
.cid-unMXsLyidI ul li:hover {
  color: #b2be90;
}
.cid-unMXsLyidI .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMXsLyidI .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMXsLyidI .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMXsLyidI .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMXsLyidI .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMXsLyidI .map {
    height: auto;
  }
}
.cid-unMXsLyidI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMXsLyidI .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMXsLyidI .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMXsLyidI .social-list a:hover {
  opacity: 1;
}
.cid-unMXsLyidI .row-element,
.cid-unMXsLyidI .image-element {
  padding: 0;
}
.cid-unMXsLyidI .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXsLyidI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMXsLyidI .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMXsLyidI .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMXsLyidI .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMXsLyidI .underline .line {
    height: 2px;
  }
  .cid-unMXsLyidI .mbr-title,
  .cid-unMXsLyidI .underline,
  .cid-unMXsLyidI .mbr-text,
  .cid-unMXsLyidI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMXsLyidI .mbr-title,
.cid-unMXsLyidI .underline {
  color: #a1876c;
}
.cid-unMXsLyidI .mbr-text,
.cid-unMXsLyidI .mbr-section-btn {
  color: #ffffff;
}
.cid-unMXsLyidI mbr-list LI {
  color: #ffffff;
}
.cid-unMXsLyidI mbr-list {
  text-align: center;
}
.cid-unMXsLyidI .mbr-list,
.cid-unMXsLyidI .social-list mbr-list {
  color: #ffffff;
}
.cid-unLCSsg0PZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLCSsg0PZ [class^="socicon-"]:before,
.cid-unLCSsg0PZ [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLCSsg0PZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLCSsg0PZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLCSsg0PZ .socicon {
  color: #515a2c;
}
.cid-unLCSsg0PZ .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLCSsg0PZ .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLCSsg0PZ .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLCSsg0PZ .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLCSsg0PZ .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLCSsg0PZ .btn {
    font-size: 20px !important;
  }
  .cid-unLCSsg0PZ .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMXtuzLS1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMXtuzLS1 .container-fluid {
  padding: 0 3rem;
}
.cid-unMXtuzLS1 ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMXtuzLS1 ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMXtuzLS1 ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMXtuzLS1 ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMXtuzLS1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXtuzLS1 .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMXtuzLS1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXtuzLS1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMXtuzLS1 .mbr-section-title,
.cid-unMXtuzLS1 .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLCSuAUic {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLCSuAUic .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLCSuAUic .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLCSuAUic .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLCSuAUic .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLCSuAUic .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLCSuAUic .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLCSuAUic .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLCSuAUic .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLCSuAUic .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLCSuAUic .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLElSmb1H .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLElSmb1H .nav-item:focus,
.cid-unLElSmb1H .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLElSmb1H .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLElSmb1H .nav-item .nav-link {
    position: relative;
  }
  .cid-unLElSmb1H .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLElSmb1H .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLElSmb1H .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLElSmb1H .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLElSmb1H .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLElSmb1H .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLElSmb1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLElSmb1H .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLElSmb1H .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLElSmb1H .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLElSmb1H .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLElSmb1H .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLElSmb1H .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLElSmb1H .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLElSmb1H .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLElSmb1H .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLElSmb1H .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLElSmb1H .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLElSmb1H .navbar.collapsed .navbar-collapse.show,
.cid-unLElSmb1H .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLElSmb1H .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLElSmb1H .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLElSmb1H .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLElSmb1H .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLElSmb1H .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLElSmb1H .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLElSmb1H .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLElSmb1H .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLElSmb1H .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLElSmb1H .navbar.collapsed .right-menu,
.cid-unLElSmb1H .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLElSmb1H .navbar .navbar-collapse.show,
  .cid-unLElSmb1H .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLElSmb1H .navbar .navbar-collapse.show .brand-container,
  .cid-unLElSmb1H .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLElSmb1H .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLElSmb1H .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLElSmb1H .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLElSmb1H .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLElSmb1H .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLElSmb1H .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLElSmb1H .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLElSmb1H .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLElSmb1H .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLElSmb1H .navbar .right-menu,
  .cid-unLElSmb1H .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLElSmb1H .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLElSmb1H .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLElSmb1H .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLElSmb1H .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLElSmb1H .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLElSmb1H .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLElSmb1H .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLElSmb1H .dropdown-item.active,
.cid-unLElSmb1H .dropdown-item:active {
  background-color: transparent;
}
.cid-unLElSmb1H .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLElSmb1H .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLElSmb1H .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLElSmb1H .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLElSmb1H .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLElSmb1H .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLElSmb1H ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLElSmb1H ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLElSmb1H .navbar-buttons {
  margin-left: auto;
}
.cid-unLElSmb1H button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLElSmb1H button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLElSmb1H button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLElSmb1H button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLElSmb1H button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLElSmb1H button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLElSmb1H nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLElSmb1H nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLElSmb1H nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLElSmb1H nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLElSmb1H .navbar-dropdown {
  position: fixed;
}
.cid-unLElSmb1H a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLElSmb1H .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLElSmb1H .right-menu,
.cid-unLElSmb1H .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLElSmb1H .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLElSmb1H .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLElSmb1H .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLElSmb1H .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLElSmb1H .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLElSmb1H .card-wrapper {
  z-index: 3;
}
.cid-unLElSmb1H .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLElSmb1H .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLElSmb1H .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLElSJhDW {
  padding-top: 225px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-2.jpg");
}
.cid-unLElSJhDW h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-unLElSJhDW h1 span {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-unLElSJhDW .icons-wrap {
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-unLElSJhDW .mbr-iconfont {
  font-size: 1.8rem;
  color: #515a2c !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-unLElSJhDW .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-unLElSJhDW h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-unLElSJhDW .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-unLElSJhDW h1 {
    margin-bottom: 8rem;
  }
}
.cid-unLElSJhDW .icon-text {
  color: #232323;
}
.cid-unLElTbZUq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-unLElTbZUq H2 {
  color: #515a2c;
}
.cid-unMXK4g9qa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #b2be90;
  background: linear-gradient(90deg, #b2be90, #515a2c);
}
.cid-unMXK4g9qa .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-unMXK4g9qa H2 {
  color: #ffffff;
}
.cid-unMXIsKqow {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-3.jpg");
}
.cid-unMXIsKqow .container-fluid {
  padding: 0 3rem;
}
.cid-unMXIsKqow .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMXIsKqow .card {
  display: block;
}
.cid-unMXIsKqow .card .card-wrapper {
  height: 1%;
}
.cid-unMXIsKqow .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-unMXIsKqow .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-unMXIsKqow .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-unMXIsKqow .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMXIsKqow .prices {
  color: #ffffff;
}
.cid-unMXIsKqow .oldPrice {
  text-decoration: line-through;
}
.cid-unMXIsKqow .oldPrice,
.cid-unMXIsKqow .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-unMXIsKqow .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXIsKqow .text-row {
    padding-bottom: 1rem;
  }
}
.cid-unMXL2jh1Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #b2be90;
}
.cid-unMXL2jh1Y .container-fluid {
  padding: 0 3rem;
}
.cid-unMXL2jh1Y .mbr-section-title {
  color: #a1876c;
  text-align: right;
}
.cid-unMXL2jh1Y .btn {
  margin-top: 0;
}
.cid-unMXL2jh1Y .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-unMXL2jh1Y .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXL2jh1Y .btn {
    margin-top: 0.4rem;
  }
  .cid-unMXL2jh1Y .mbr-section-btn {
    margin: 0;
  }
}
.cid-unMXL2jh1Y .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-unLElVvN82 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLElVvN82 .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLElVvN82 .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLElVvN82 .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLElVvN82 .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLElVvN82 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLElVvN82 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLElVvN82 .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLElVvN82 .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLElVvN82 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLElVvN82 .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLElVvN82 .subtext-1,
  .cid-unLElVvN82 .subtext-2 {
    text-align: center !important;
  }
  .cid-unLElVvN82 .form-text {
    text-align: center !important;
  }
  .cid-unLElVvN82 .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLElVvN82 .input-group-btn {
    position: static;
  }
  .cid-unLElVvN82 .input-group-btn .btn {
    display: block;
  }
}
.cid-unLElVvN82 .mbr-title,
.cid-unLElVvN82 .underline {
  color: #515a2c;
}
.cid-unMXLEFJQh {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMXLEFJQh ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMXLEFJQh ul li {
  padding: 1rem 0;
}
.cid-unMXLEFJQh ul li:hover {
  color: #b2be90;
}
.cid-unMXLEFJQh .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMXLEFJQh .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMXLEFJQh .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMXLEFJQh .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMXLEFJQh .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMXLEFJQh .map {
    height: auto;
  }
}
.cid-unMXLEFJQh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMXLEFJQh .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMXLEFJQh .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMXLEFJQh .social-list a:hover {
  opacity: 1;
}
.cid-unMXLEFJQh .row-element,
.cid-unMXLEFJQh .image-element {
  padding: 0;
}
.cid-unMXLEFJQh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXLEFJQh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMXLEFJQh .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMXLEFJQh .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMXLEFJQh .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMXLEFJQh .underline .line {
    height: 2px;
  }
  .cid-unMXLEFJQh .mbr-title,
  .cid-unMXLEFJQh .underline,
  .cid-unMXLEFJQh .mbr-text,
  .cid-unMXLEFJQh .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMXLEFJQh .mbr-title,
.cid-unMXLEFJQh .underline {
  color: #a1876c;
}
.cid-unMXLEFJQh .mbr-text,
.cid-unMXLEFJQh .mbr-section-btn {
  color: #ffffff;
}
.cid-unMXLEFJQh mbr-list LI {
  color: #ffffff;
}
.cid-unMXLEFJQh mbr-list {
  text-align: center;
}
.cid-unMXLEFJQh .mbr-list,
.cid-unMXLEFJQh .social-list mbr-list {
  color: #ffffff;
}
.cid-unLElX0xh2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLElX0xh2 [class^="socicon-"]:before,
.cid-unLElX0xh2 [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLElX0xh2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLElX0xh2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLElX0xh2 .socicon {
  color: #515a2c;
}
.cid-unLElX0xh2 .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLElX0xh2 .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLElX0xh2 .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLElX0xh2 .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLElX0xh2 .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLElX0xh2 .btn {
    font-size: 20px !important;
  }
  .cid-unLElX0xh2 .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMXMk9hXE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMXMk9hXE .container-fluid {
  padding: 0 3rem;
}
.cid-unMXMk9hXE ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMXMk9hXE ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMXMk9hXE ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMXMk9hXE ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMXMk9hXE .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMXMk9hXE .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMXMk9hXE .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMXMk9hXE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMXMk9hXE .mbr-section-title,
.cid-unMXMk9hXE .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLElYMWqq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLElYMWqq .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLElYMWqq .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLElYMWqq .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLElYMWqq .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLElYMWqq .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLElYMWqq .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLElYMWqq .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLElYMWqq .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLElYMWqq .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLElYMWqq .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLEpBXF5U .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEpBXF5U .nav-item:focus,
.cid-unLEpBXF5U .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLEpBXF5U .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLEpBXF5U .nav-item .nav-link {
    position: relative;
  }
  .cid-unLEpBXF5U .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLEpBXF5U .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLEpBXF5U .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLEpBXF5U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEpBXF5U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLEpBXF5U .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLEpBXF5U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLEpBXF5U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEpBXF5U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLEpBXF5U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLEpBXF5U .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLEpBXF5U .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLEpBXF5U .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLEpBXF5U .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLEpBXF5U .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLEpBXF5U .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLEpBXF5U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLEpBXF5U .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLEpBXF5U .navbar.collapsed .navbar-collapse.show,
.cid-unLEpBXF5U .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLEpBXF5U .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLEpBXF5U .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLEpBXF5U .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLEpBXF5U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLEpBXF5U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLEpBXF5U .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLEpBXF5U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLEpBXF5U .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLEpBXF5U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLEpBXF5U .navbar.collapsed .right-menu,
.cid-unLEpBXF5U .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLEpBXF5U .navbar .navbar-collapse.show,
  .cid-unLEpBXF5U .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLEpBXF5U .navbar .navbar-collapse.show .brand-container,
  .cid-unLEpBXF5U .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLEpBXF5U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLEpBXF5U .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLEpBXF5U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLEpBXF5U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLEpBXF5U .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLEpBXF5U .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLEpBXF5U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLEpBXF5U .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLEpBXF5U .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLEpBXF5U .navbar .right-menu,
  .cid-unLEpBXF5U .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLEpBXF5U .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLEpBXF5U .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLEpBXF5U .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLEpBXF5U .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLEpBXF5U .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLEpBXF5U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLEpBXF5U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLEpBXF5U .dropdown-item.active,
.cid-unLEpBXF5U .dropdown-item:active {
  background-color: transparent;
}
.cid-unLEpBXF5U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLEpBXF5U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLEpBXF5U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLEpBXF5U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLEpBXF5U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLEpBXF5U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLEpBXF5U ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLEpBXF5U ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLEpBXF5U .navbar-buttons {
  margin-left: auto;
}
.cid-unLEpBXF5U button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLEpBXF5U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLEpBXF5U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLEpBXF5U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLEpBXF5U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLEpBXF5U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLEpBXF5U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLEpBXF5U nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLEpBXF5U nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLEpBXF5U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLEpBXF5U .navbar-dropdown {
  position: fixed;
}
.cid-unLEpBXF5U a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLEpBXF5U .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLEpBXF5U .right-menu,
.cid-unLEpBXF5U .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLEpBXF5U .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLEpBXF5U .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLEpBXF5U .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLEpBXF5U .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLEpBXF5U .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLEpBXF5U .card-wrapper {
  z-index: 3;
}
.cid-unLEpBXF5U .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLEpBXF5U .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLEpBXF5U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unMpiuAsXE {
  padding-top: 180px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-2-1120x1120.jpg");
}
.cid-unMpiuAsXE h3 {
  position: relative;
}
.cid-unMpiuAsXE h3:before {
  position: absolute;
  content: '';
  left: 50%;
  top: -120px;
  bottom: 0;
  width: 1px;
  height: 100px;
  background: currentColor;
}
.cid-unMpiuAsXE svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: scaleY(-1);
}
.cid-unMpiuAsXE g rect {
  fill: #ffffff;
}
.cid-unLEpCRXQM {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-unLEpCRXQM H2 {
  color: #515a2c;
}
.cid-unMpULKqUS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-unMpULKqUS .container-fluid {
  padding: 0 3rem;
}
.cid-unMpULKqUS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #b2be90 50%, #515a2c 120%);
  display: inline-block;
}
.cid-unMpULKqUS .mbr-section-subtitle {
  color: #767676;
}
.cid-unMpULKqUS .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-unMpULKqUS .table-wrapper {
  margin: 0 auto;
}
.cid-unMpULKqUS table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-unMpULKqUS table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #515a2c;
  color: white;
  vertical-align: middle;
}
.cid-unMpULKqUS table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-unMpULKqUS .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-unMpULKqUS .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-unMpULKqUS .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-unMpULKqUS .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-unMpULKqUS .dataTables_wrapper {
  display: block;
}
.cid-unMpULKqUS .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-unMpULKqUS .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-unMpULKqUS .head-item:after,
.cid-unMpULKqUS .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-unMpULKqUS .dataTables_filter {
    text-align: center;
  }
  .cid-unMpULKqUS .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-unMpULKqUS .dataTables_filter {
    text-align: center;
  }
  .cid-unMpULKqUS .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-unMpULKqUS .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMpULKqUS table th,
  .cid-unMpULKqUS table td {
    padding: .75rem;
  }
}
.cid-unMpULKqUS .mbr-section-title,
.cid-unMpULKqUS .underline {
  color: #515a2c;
}
.cid-unMuiusTQj {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-1472x832.jpg");
}
.cid-unMuiusTQj .container-fluid {
  padding: 0 5rem;
}
.cid-unMuiusTQj .animated-element {
  color: #efefef;
}
.cid-unMuiusTQj .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-unMuiusTQj .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-unMuiusTQj .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMuiusTQj .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-unMtzEtaLO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-unMtzEtaLO .container-fluid {
  padding: 0 3rem;
}
.cid-unMtzEtaLO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #b2be90 50%, #515a2c 120%);
  display: inline-block;
}
.cid-unMtzEtaLO .mbr-section-subtitle {
  color: #767676;
}
.cid-unMtzEtaLO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-unMtzEtaLO .table-wrapper {
  margin: 0 auto;
}
.cid-unMtzEtaLO table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-unMtzEtaLO table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #515a2c;
  color: white;
  vertical-align: middle;
}
.cid-unMtzEtaLO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-unMtzEtaLO .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-unMtzEtaLO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-unMtzEtaLO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-unMtzEtaLO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-unMtzEtaLO .dataTables_wrapper {
  display: block;
}
.cid-unMtzEtaLO .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-unMtzEtaLO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-unMtzEtaLO .head-item:after,
.cid-unMtzEtaLO .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-unMtzEtaLO .dataTables_filter {
    text-align: center;
  }
  .cid-unMtzEtaLO .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-unMtzEtaLO .dataTables_filter {
    text-align: center;
  }
  .cid-unMtzEtaLO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-unMtzEtaLO .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMtzEtaLO table th,
  .cid-unMtzEtaLO table td {
    padding: .75rem;
  }
}
.cid-unMtzEtaLO .mbr-section-title,
.cid-unMtzEtaLO .underline {
  color: #515a2c;
}
.cid-unMyxFdvjO {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-professionally-lit-vibrant-and-highcontrast-1472x832.jpg");
}
.cid-unMyxFdvjO .container-fluid {
  padding: 0 5rem;
}
.cid-unMyxFdvjO .animated-element {
  color: #efefef;
}
.cid-unMyxFdvjO .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-unMyxFdvjO .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-unMyxFdvjO .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMyxFdvjO .mbr-figure {
    margin-top: 1rem;
  }
}
.cid-unMyAL5X52 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-unMyAL5X52 .container-fluid {
  padding: 0 3rem;
}
.cid-unMyAL5X52 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #b2be90 50%, #515a2c 120%);
  display: inline-block;
}
.cid-unMyAL5X52 .mbr-section-subtitle {
  color: #767676;
}
.cid-unMyAL5X52 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-unMyAL5X52 .table-wrapper {
  margin: 0 auto;
}
.cid-unMyAL5X52 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-unMyAL5X52 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #515a2c;
  color: white;
  vertical-align: middle;
}
.cid-unMyAL5X52 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-unMyAL5X52 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-unMyAL5X52 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-unMyAL5X52 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-unMyAL5X52 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-unMyAL5X52 .dataTables_wrapper {
  display: block;
}
.cid-unMyAL5X52 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-unMyAL5X52 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-unMyAL5X52 .head-item:after,
.cid-unMyAL5X52 .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-unMyAL5X52 .dataTables_filter {
    text-align: center;
  }
  .cid-unMyAL5X52 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-unMyAL5X52 .dataTables_filter {
    text-align: center;
  }
  .cid-unMyAL5X52 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-unMyAL5X52 .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMyAL5X52 table th,
  .cid-unMyAL5X52 table td {
    padding: .75rem;
  }
}
.cid-unMyAL5X52 .mbr-section-title,
.cid-unMyAL5X52 .underline {
  color: #515a2c;
}
.cid-unLEpFetMh {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-unLEpFetMh .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLEpFetMh .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-unLEpFetMh .form-control {
  padding: 1.7rem 2rem;
}
.cid-unLEpFetMh .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-unLEpFetMh .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLEpFetMh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLEpFetMh .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-unLEpFetMh .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-unLEpFetMh {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-unLEpFetMh .social-media {
    padding: 0;
    display: block;
  }
  .cid-unLEpFetMh .subtext-1,
  .cid-unLEpFetMh .subtext-2 {
    text-align: center !important;
  }
  .cid-unLEpFetMh .form-text {
    text-align: center !important;
  }
  .cid-unLEpFetMh .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-unLEpFetMh .input-group-btn {
    position: static;
  }
  .cid-unLEpFetMh .input-group-btn .btn {
    display: block;
  }
}
.cid-unLEpFetMh .mbr-title,
.cid-unLEpFetMh .underline {
  color: #515a2c;
}
.cid-unLEpFK2pJ {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unLEpFK2pJ ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unLEpFK2pJ ul li {
  padding: 1rem 0;
}
.cid-unLEpFK2pJ ul li:hover {
  color: #b2be90;
}
.cid-unLEpFK2pJ .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unLEpFK2pJ .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unLEpFK2pJ .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unLEpFK2pJ .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLEpFK2pJ .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unLEpFK2pJ .map {
    height: auto;
  }
}
.cid-unLEpFK2pJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unLEpFK2pJ .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unLEpFK2pJ .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unLEpFK2pJ .social-list a:hover {
  opacity: 1;
}
.cid-unLEpFK2pJ .row-element,
.cid-unLEpFK2pJ .image-element {
  padding: 0;
}
.cid-unLEpFK2pJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLEpFK2pJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unLEpFK2pJ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unLEpFK2pJ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unLEpFK2pJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-unLEpFK2pJ .underline .line {
    height: 2px;
  }
  .cid-unLEpFK2pJ .mbr-title,
  .cid-unLEpFK2pJ .underline,
  .cid-unLEpFK2pJ .mbr-text,
  .cid-unLEpFK2pJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unLEpFK2pJ .mbr-title,
.cid-unLEpFK2pJ .underline {
  color: #a1876c;
}
.cid-unLEpFK2pJ .mbr-text,
.cid-unLEpFK2pJ .mbr-section-btn {
  color: #ffffff;
}
.cid-unLEpFK2pJ mbr-list LI {
  color: #ffffff;
}
.cid-unLEpFK2pJ mbr-list {
  text-align: center;
}
.cid-unLEpFK2pJ .mbr-list,
.cid-unLEpFK2pJ .social-list mbr-list {
  color: #ffffff;
}
.cid-unLEpGU5ye {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLEpGU5ye [class^="socicon-"]:before,
.cid-unLEpGU5ye [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLEpGU5ye .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLEpGU5ye .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLEpGU5ye .socicon {
  color: #515a2c;
}
.cid-unLEpGU5ye .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLEpGU5ye .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLEpGU5ye .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLEpGU5ye .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLEpGU5ye .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLEpGU5ye .btn {
    font-size: 20px !important;
  }
  .cid-unLEpGU5ye .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unLEpHjR8A {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unLEpHjR8A .container-fluid {
  padding: 0 3rem;
}
.cid-unLEpHjR8A ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLEpHjR8A ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unLEpHjR8A ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unLEpHjR8A ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unLEpHjR8A .container-fluid {
    padding: 0 1rem;
  }
  .cid-unLEpHjR8A .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unLEpHjR8A .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLEpHjR8A .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLEpHjR8A .mbr-section-title,
.cid-unLEpHjR8A .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLEpIwaIb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLEpIwaIb .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLEpIwaIb .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLEpIwaIb .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLEpIwaIb .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLEpIwaIb .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLEpIwaIb .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLEpIwaIb .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLEpIwaIb .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLEpIwaIb .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLEpIwaIb .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-unLEsTnkby .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEsTnkby .nav-item:focus,
.cid-unLEsTnkby .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-unLEsTnkby .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-unLEsTnkby .nav-item .nav-link {
    position: relative;
  }
  .cid-unLEsTnkby .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #b2be90, #515a2c);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-unLEsTnkby .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-unLEsTnkby .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLEsTnkby .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEsTnkby .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unLEsTnkby .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-unLEsTnkby .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-unLEsTnkby .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-unLEsTnkby .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unLEsTnkby .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unLEsTnkby .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-unLEsTnkby .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-unLEsTnkby .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-unLEsTnkby .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-unLEsTnkby .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-unLEsTnkby .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-unLEsTnkby .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-unLEsTnkby .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-unLEsTnkby .navbar.collapsed .navbar-collapse.show,
.cid-unLEsTnkby .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLEsTnkby .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-unLEsTnkby .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-unLEsTnkby .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-unLEsTnkby .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unLEsTnkby .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unLEsTnkby .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-unLEsTnkby .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unLEsTnkby .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unLEsTnkby .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-unLEsTnkby .navbar.collapsed .right-menu,
.cid-unLEsTnkby .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-unLEsTnkby .navbar .navbar-collapse.show,
  .cid-unLEsTnkby .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLEsTnkby .navbar .navbar-collapse.show .brand-container,
  .cid-unLEsTnkby .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-unLEsTnkby .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unLEsTnkby .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-unLEsTnkby .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unLEsTnkby .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unLEsTnkby .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-unLEsTnkby .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-unLEsTnkby .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unLEsTnkby .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-unLEsTnkby .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-unLEsTnkby .navbar .right-menu,
  .cid-unLEsTnkby .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-unLEsTnkby .navbar.navbar-short {
  min-height: 60px;
}
.cid-unLEsTnkby .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-unLEsTnkby .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-unLEsTnkby .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-unLEsTnkby .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unLEsTnkby .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unLEsTnkby .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unLEsTnkby .dropdown-item.active,
.cid-unLEsTnkby .dropdown-item:active {
  background-color: transparent;
}
.cid-unLEsTnkby .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unLEsTnkby .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unLEsTnkby .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unLEsTnkby .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-unLEsTnkby .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unLEsTnkby .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unLEsTnkby ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-unLEsTnkby ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-unLEsTnkby .navbar-buttons {
  margin-left: auto;
}
.cid-unLEsTnkby button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unLEsTnkby button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-unLEsTnkby button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unLEsTnkby button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unLEsTnkby button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unLEsTnkby button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unLEsTnkby nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLEsTnkby nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-unLEsTnkby nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-unLEsTnkby nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unLEsTnkby .navbar-dropdown {
  position: fixed;
}
.cid-unLEsTnkby a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-unLEsTnkby .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-unLEsTnkby .right-menu,
.cid-unLEsTnkby .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-unLEsTnkby .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLEsTnkby .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unLEsTnkby .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-unLEsTnkby .menu-top {
  text-align: center;
  width: 100%;
  background-color: #b2be90;
  padding: .5rem 0;
}
.cid-unLEsTnkby .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-unLEsTnkby .card-wrapper {
  z-index: 3;
}
.cid-unLEsTnkby .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-unLEsTnkby .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unLEsTnkby .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unLEsTOx3w {
  padding-top: 225px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in-2.jpg");
}
.cid-unLEsTOx3w h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  margin-bottom: 15rem;
}
.cid-unLEsTOx3w h1 span {
  background-image: url("../../../assets/images/background2.jpg");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-unLEsTOx3w .icons-wrap {
  background: #ffffff;
  display: flex;
  justify-content: center;
  box-shadow: 1px 35px 60px 1px rgba(0, 0, 0, 0.1);
}
.cid-unLEsTOx3w .mbr-iconfont {
  font-size: 1.8rem;
  color: #515a2c !important;
  padding-top: 0.4rem;
  padding-right: 1rem;
}
.cid-unLEsTOx3w .icon-wrap {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
}
.cid-unLEsTOx3w h2 {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-unLEsTOx3w .icons-wrap {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
  }
  .cid-unLEsTOx3w h1 {
    margin-bottom: 8rem;
  }
}
.cid-unLEsTOx3w .icon-text {
  color: #232323;
}
.cid-unLEsUkoHD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-unLEsUkoHD H2 {
  color: #515a2c;
}
.cid-unMYdH8Lyw {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #515a2c;
}
.cid-unMYdH8Lyw ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMYdH8Lyw ul li {
  padding: 1rem 0;
}
.cid-unMYdH8Lyw ul li:hover {
  color: #b2be90;
}
.cid-unMYdH8Lyw .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-unMYdH8Lyw .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-unMYdH8Lyw .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-unMYdH8Lyw .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-unMYdH8Lyw .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-unMYdH8Lyw .map {
    height: auto;
  }
}
.cid-unMYdH8Lyw .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-unMYdH8Lyw .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-unMYdH8Lyw .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unMYdH8Lyw .social-list a:hover {
  opacity: 1;
}
.cid-unMYdH8Lyw .row-element,
.cid-unMYdH8Lyw .image-element {
  padding: 0;
}
.cid-unMYdH8Lyw .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMYdH8Lyw .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-unMYdH8Lyw .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-unMYdH8Lyw .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-unMYdH8Lyw .text-content {
    padding: 2rem 1rem;
  }
  .cid-unMYdH8Lyw .underline .line {
    height: 2px;
  }
  .cid-unMYdH8Lyw .mbr-title,
  .cid-unMYdH8Lyw .underline,
  .cid-unMYdH8Lyw .mbr-text,
  .cid-unMYdH8Lyw .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-unMYdH8Lyw .mbr-title,
.cid-unMYdH8Lyw .underline {
  color: #a1876c;
}
.cid-unMYdH8Lyw .mbr-text,
.cid-unMYdH8Lyw .mbr-section-btn {
  color: #ffffff;
}
.cid-unMYdH8Lyw mbr-list LI {
  color: #ffffff;
}
.cid-unMYdH8Lyw mbr-list {
  text-align: center;
}
.cid-unMYdH8Lyw .mbr-list,
.cid-unMYdH8Lyw .social-list mbr-list {
  color: #ffffff;
}
.cid-unLEsYcFyI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/leonardo-phoenix-a-vibrant-collection-of-highquality-scrubs-in.jpg");
}
.cid-unLEsYcFyI [class^="socicon-"]:before,
.cid-unLEsYcFyI [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-unLEsYcFyI .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unLEsYcFyI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unLEsYcFyI .socicon {
  color: #515a2c;
}
.cid-unLEsYcFyI .btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a25f45;
  color: #232323;
  cursor: pointer;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-unLEsYcFyI .btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.cid-unLEsYcFyI .btn-social:hover {
  color: #fff;
  background: #a25f45;
}
.cid-unLEsYcFyI .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-unLEsYcFyI .btn-social + .btn {
  margin-left: .1rem;
}
@media (max-width: 767px) {
  .cid-unLEsYcFyI .btn {
    font-size: 20px !important;
  }
  .cid-unLEsYcFyI .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-unMYeYVl7q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-unMYeYVl7q .container-fluid {
  padding: 0 3rem;
}
.cid-unMYeYVl7q ul.list-inline {
  margin: 0;
  -webkit-align-self: center;
  align-self: center;
}
.cid-unMYeYVl7q ul.list-inline li {
  margin: 0;
  padding: .5rem;
}
.cid-unMYeYVl7q ul.list-inline img {
  max-width: 6rem;
  padding-bottom: .5rem;
}
.cid-unMYeYVl7q ul.list-inline img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
@media (max-width: 767px) {
  .cid-unMYeYVl7q .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMYeYVl7q .list-inline-item img {
    max-width: 5rem;
  }
}
.cid-unMYeYVl7q .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-unMYeYVl7q .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #b2be90, #515a2c);
  display: inline-block;
}
.cid-unMYeYVl7q .mbr-section-title,
.cid-unMYeYVl7q .underline {
  color: #515a2c;
}
.cid-unMVEYmbAG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #515a2c;
}
.cid-unMVEYmbAG .container-fluid {
  padding: 0 3rem;
}
.cid-unMVEYmbAG .mbr-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-unMVEYmbAG .mbr-list li {
  margin-bottom: 1rem;
}
.cid-unMVEYmbAG .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-unMVEYmbAG .social-media {
  margin-top: 1.5rem;
}
.cid-unMVEYmbAG .social-media ul {
  padding: 0;
  margin-bottom: 8px;
}
.cid-unMVEYmbAG .social-media ul li {
  margin-right: 1rem;
  display: inline-block;
}
.cid-unMVEYmbAG .mbr-text,
.cid-unMVEYmbAG .mbr-offer {
  line-height: 1.5;
}
.cid-unMVEYmbAG .form-control {
  color: #fff;
  z-index: 0;
  min-height: 3rem !important;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767px) {
  .cid-unMVEYmbAG .container-fluid {
    padding: 0 1rem;
  }
  .cid-unMVEYmbAG .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-unMVEYmbAG .mbr-list {
    margin-bottom: 2rem;
  }
  .cid-unMVEYmbAG .mbr-list li {
    margin-bottom: .5rem;
  }
}
.cid-unLEsZOv9K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #a1876c;
}
.cid-unLEsZOv9K .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-unLEsZOv9K .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-unLEsZOv9K .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-unLEsZOv9K .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-unLEsZOv9K .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #515a2c;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-unLEsZOv9K .icon-transition span:hover {
  background-color: #515a2c;
}
.cid-unLEsZOv9K .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-unLEsZOv9K .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-unLEsZOv9K .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-unLEsZOv9K .mbr-text {
    margin-bottom: 1.5rem;
  }
}
