body {
  font-family: Jost;
}
.display-1 {
  font-family: 'bahnschrift';
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'bahnschrift';
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'bahnschrift';
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'bahnschrift';
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.17rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.4625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.936rem;
    font-size: calc( 1.0594999999999999rem + (1.17 - 1.0594999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0594999999999999rem + (1.17 - 1.0594999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #8ccfff !important;
}
.bg-success {
  background-color: #ffd017 !important;
}
.bg-info {
  background-color: #ff9966 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #f4a227 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #8ccfff !important;
  border-color: #8ccfff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #35abff !important;
  border-color: #35abff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #35abff !important;
  border-color: #35abff !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #237fd6 !important;
  border-color: #237fd6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #17538b !important;
  border-color: #17538b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #17538b !important;
  border-color: #17538b !important;
}
.btn-info,
.btn-info:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffd017 !important;
  border-color: #ffd017 !important;
  color: #171200 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #bf9900 !important;
  border-color: #bf9900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #171200 !important;
  background-color: #bf9900 !important;
  border-color: #bf9900 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f4a227 !important;
  border-color: #f4a227 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #bb740a !important;
  border-color: #bb740a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #bb740a !important;
  border-color: #bb740a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8ccfff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #35abff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8ccfff !important;
  border-color: #8ccfff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #237fd6;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #17538b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #237fd6 !important;
  border-color: #237fd6 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd017;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #bf9900 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #171200 !important;
  background-color: #ffd017 !important;
  border-color: #ffd017 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f4a227;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #bb740a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f4a227 !important;
  border-color: #f4a227 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #8ccfff !important;
}
.text-secondary {
  color: #237fd6 !important;
}
.text-success {
  color: #ffd017 !important;
}
.text-info {
  color: #ff9966 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #f4a227 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #26a4ff !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #154b7e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #b08c00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #ff5500 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ac6b09 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #8ccfff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff9966;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #f4a227;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8ccfff;
  border-color: #8ccfff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #8ccfff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fff9e3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef6e9;
}
/* Scroll to top button*/
.form-control {
  font-family: 'bahnschrift';
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #8ccfff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'bahnschrift';
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #8ccfff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8ccfff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #8ccfff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8ccfff;
  border-bottom-color: #8ccfff;
}
.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: #8ccfff !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: #237fd6 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%238ccfff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-stvBlTKCAZ {
  z-index: 1000;
  width: 100%;
}
.cid-stvBlTKCAZ nav.navbar {
  position: fixed;
}
.cid-stvBlTKCAZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stvBlTKCAZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-stvBlTKCAZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stvBlTKCAZ .dropdown-item:hover,
.cid-stvBlTKCAZ .dropdown-item:focus {
  background: #8ccfff !important;
  color: white !important;
}
.cid-stvBlTKCAZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-stvBlTKCAZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-stvBlTKCAZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-stvBlTKCAZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stvBlTKCAZ .nav-link {
  position: relative;
}
.cid-stvBlTKCAZ .container {
  display: flex;
  margin: auto;
}
.cid-stvBlTKCAZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-stvBlTKCAZ .dropdown-menu,
.cid-stvBlTKCAZ .navbar.opened {
  background: #815640 !important;
}
.cid-stvBlTKCAZ .nav-item:focus,
.cid-stvBlTKCAZ .nav-link:focus {
  outline: none;
}
.cid-stvBlTKCAZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stvBlTKCAZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stvBlTKCAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-stvBlTKCAZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stvBlTKCAZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stvBlTKCAZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stvBlTKCAZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(129, 86, 64, 0);
}
.cid-stvBlTKCAZ .navbar.opened {
  transition: all 0.3s;
}
.cid-stvBlTKCAZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-stvBlTKCAZ .navbar .navbar-logo img {
  width: auto;
}
.cid-stvBlTKCAZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stvBlTKCAZ .navbar.collapsed {
  justify-content: center;
}
.cid-stvBlTKCAZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stvBlTKCAZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-stvBlTKCAZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stvBlTKCAZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stvBlTKCAZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-stvBlTKCAZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stvBlTKCAZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-stvBlTKCAZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-stvBlTKCAZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stvBlTKCAZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stvBlTKCAZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stvBlTKCAZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stvBlTKCAZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-stvBlTKCAZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-stvBlTKCAZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stvBlTKCAZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stvBlTKCAZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stvBlTKCAZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stvBlTKCAZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-stvBlTKCAZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-stvBlTKCAZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-stvBlTKCAZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-stvBlTKCAZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stvBlTKCAZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stvBlTKCAZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stvBlTKCAZ .dropdown-item.active,
.cid-stvBlTKCAZ .dropdown-item:active {
  background-color: transparent;
}
.cid-stvBlTKCAZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stvBlTKCAZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stvBlTKCAZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stvBlTKCAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #815640;
}
.cid-stvBlTKCAZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stvBlTKCAZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stvBlTKCAZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stvBlTKCAZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stvBlTKCAZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stvBlTKCAZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-stvBlTKCAZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stvBlTKCAZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stvBlTKCAZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stvBlTKCAZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stvBlTKCAZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stvBlTKCAZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stvBlTKCAZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stvBlTKCAZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stvBlTKCAZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-stvBlTKCAZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stvBlTKCAZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stvBlTKCAZ .navbar {
    height: 70px;
  }
  .cid-stvBlTKCAZ .navbar.opened {
    height: auto;
  }
  .cid-stvBlTKCAZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stvCdt8szn {
  background-image: url("../../../assets/images/syringe-5904302-1920a3-1916x741.jpg");
}
.cid-stvCdt8szn .text-content {
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-stvCdt8szn .text-content .btn-bgr {
  z-index: 0;
}
.cid-stvCdt8szn .mbr-overlay {
  background: linear-gradient(90deg, #4479d9, #ffb18a);
}
.cid-stvCdt8szn H3 {
  color: #000000;
  font-weight: 300;
}
.cid-stvCdt8szn P {
  color: #fff0b0;
}
.cid-stvCdt8szn H2 {
  color: #000000;
}
.cid-stvCdt8szn .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-stvCdt8szn .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-stvCdt8szn .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #434a74;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .cid-stvCdt8szn .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-stvCdt8szn .text-content {
    width: 100%;
  }
}
.cid-stvCdt8szn .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-stvCdt8szn .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-stvCdt8szn .mbr-text {
    text-align: center;
  }
}
.cid-stvCdt8szn .mbr-section-btn,
.cid-stvCdt8szn .mbr-section-title {
  color: #ffe885;
}
.cid-stvCdt8szn .mbr-section-subtitle {
  color: #ffe885;
}
.cid-usY5Wj7MDR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-sumqIcfJQA {
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 92%;
  margin: auto;
  background-color: #434a74;
}
.cid-sumqIcfJQA .row {
  align-items: stretch;
  justify-content: center;
}
.cid-sumqIcfJQA .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-sumqIcfJQA .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-usY5vAPgEl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
}
.cid-usY5vAPgEl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usY5vAPgEl .mbr-text {
  color: #ffffff;
}
.cid-usY5xHJQwy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-usY5xHJQwy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usY5xHJQwy .row {
  flex-direction: row-reverse;
}
.cid-usY5xHJQwy img {
  width: 100%;
}
.cid-usY5zmKLfX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-usY5zmKLfX .mbr-text {
  color: #ffffff;
}
.cid-stC2Jpfoju {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-usY8ggvbBn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usY8ggvbBn .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-usY8hvPLpT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-usY8hvPLpT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usY8hvPLpT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-usY8hvPLpT .text-wrapper {
    padding: 2rem;
  }
}
.cid-usY8hvPLpT .mbr-text {
  color: #ffffff;
}
.cid-usY8jfAFui {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
}
.cid-usY8jfAFui .mbr-text {
  color: #ffffff;
}
.cid-usY8ki5jNp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usY8ki5jNp .mbr-text,
.cid-usY8ki5jNp .mbr-section-btn {
  color: #ffffff;
  text-align: left;
  margin-left: 70px;
}
.cid-usY8ki5jNp .mbr-section-title {
  color: #000000;
  margin-bottom: 30px;
}
.cid-usY8ki5jNp .buttons-wrap .link {
  display: flex;
}
@media (max-width: 500px) {
  .cid-usY8ki5jNp * {
    text-align: center;
  }
  .cid-usY8ki5jNp .buttons-wrap {
    justify-content: center;
  }
}
.cid-usY8ki5jNp .img-wrap {
  margin-right: 80px;
}
.cid-usY8qB7Vrz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
}
.cid-usY8qB7Vrz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usY8qB7Vrz .mbr-text {
  color: #ffffff;
}
.cid-usY8pQLpBK {
  padding-top: 0.1rem;
  padding-bottom: 2rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usY8pQLpBK .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-usY8pQLpBK .mbr-section-title {
  text-align: center;
}
.cid-usY8pQLpBK .mbr-section-subtitle {
  text-align: center;
}
.cid-usY8pQLpBK .card-title {
  margin-bottom: 1rem;
  color: #33d5ad;
}
.cid-usY8pQLpBK .card-subtitle {
  color: #1f1437;
}
.cid-usY8pQLpBK .mbr-text {
  margin-top: 1.5rem;
  margin-bottom: 0;
  color: #1f1437;
}
.cid-usY8pQLpBK .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-usY8pQLpBK .card {
  height: 100%;
  background-color: #cd8ad1;
  padding: 0.2rem;
  background: transparent;
}
.cid-usY8pQLpBK .card-wrapper {
  display: flex;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-usY8pQLpBK .card-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .cid-usY8pQLpBK .card-wrapper {
    flex-direction: column;
  }
}
.cid-usY8pQLpBK .social-row {
  width: 50px;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cid-usY8pQLpBK .social-row {
    width: 100%;
    flex-direction: row;
    justify-content: center !important;
  }
}
.cid-usY8pQLpBK .social-row .soc-item {
  width: 34px;
  height: 34px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0.5rem;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cid-usY8pQLpBK .social-row .soc-item {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.cid-usY8pQLpBK .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #33d5ad;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-usY8pQLpBK .social-row .soc-item:hover .mbr-iconfont {
  color: #cd8ad1;
}
.cid-usY8pQLpBK .image-wrapper {
  width: 35%;
  aspect-ratio: 1;
  flex-shrink: 0;
  padding: 1rem;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cid-usY8pQLpBK .image-wrapper {
    width: 45%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cid-usY8pQLpBK .image-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-usY8pQLpBK .image-wrapper {
    width: 100%;
  }
}
.cid-usY8pQLpBK .image-wrapper img {
  width: 90%;
  height: 120%;
  object-fit: cover;
}
.cid-usY8pQLpBK .card-text {
  padding: 1rem;
}
.cid-usY8pQLpBK div[class*="col"] {
  margin-bottom: 2rem;
}
.cid-usY8pQLpBK .mbr-text,
.cid-usY8pQLpBK .social-row {
  color: #ffffff;
}
.cid-usY8rkzkXz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usY8rkzkXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-usY8rkzkXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usY8rkzkXz .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-usY8seWAW2 {
  padding-top: 0px;
  padding-bottom: 60px;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usY8seWAW2 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-usY8seWAW2 .row-element,
.cid-usY8seWAW2 .image-element {
  padding: 0;
}
.cid-usY8seWAW2 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-usY8seWAW2 .image-element img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-usY8seWAW2 .text-content {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-usY8seWAW2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-usY8seWAW2 .mbr-title,
  .cid-usY8seWAW2 .underline,
  .cid-usY8seWAW2 .mbr-text,
  .cid-usY8seWAW2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-stBvzCILtG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-usYbufntsR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-usYbufntsR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYbufntsR .mbr-text {
  color: #ffffff;
}
.cid-stHBNqvdS5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-usYbJCs0yX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
}
.cid-usYbJCs0yX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYbJCs0yX .mbr-text {
  color: #ffffff;
}
.cid-usYcg18AVK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-usYcg18AVK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usYcg18AVK .row {
  flex-direction: row-reverse;
}
.cid-usYcg18AVK img {
  width: 100%;
}
.cid-usYcharXfd {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
}
.cid-usYcharXfd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYcharXfd .mbr-text {
  color: #ffffff;
}
.cid-usYci2Kap9 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-usYci2Kap9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYci2Kap9 .mbr-text {
  color: #ffffff;
}
.cid-ut3qOBqIEy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-ut3qOBqIEy .mbr-text {
  text-align: center;
  color: transparent;
}
.cid-ut3qOBqIEy .mbr-section-subtitle {
  text-align: center;
}
.cid-ut3qPAAUoB {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
}
.cid-ut3qPAAUoB blockquote {
  border-color: #f4a227 !important;
}
.cid-ut3qPAAUoB DIV {
  color: #ffffff;
}
.cid-ut3sQvmKsu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-usYbNraOmD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stHfjKSPFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/footer1-1920x700.jpg");
}
.cid-stHfjKSPFG .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stHfjKSPFG .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-stHfjKSPFG .mbr-list {
  margin: 0;
}
.cid-stHfjKSPFG .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-stHfjKSPFG .first-column {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-stHfjKSPFG .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-stHfjKSPFG .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-stHfjKSPFG .list-inline-item,
.cid-stHfjKSPFG .mbr-list,
.cid-stHfjKSPFG .first-column {
  text-align: center;
}
.cid-stDaNV9Bzd {
  z-index: 1000;
  width: 100%;
}
.cid-stDaNV9Bzd nav.navbar {
  position: fixed;
}
.cid-stDaNV9Bzd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stDaNV9Bzd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-stDaNV9Bzd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stDaNV9Bzd .dropdown-item:hover,
.cid-stDaNV9Bzd .dropdown-item:focus {
  background: #8ccfff !important;
  color: white !important;
}
.cid-stDaNV9Bzd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-stDaNV9Bzd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-stDaNV9Bzd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-stDaNV9Bzd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stDaNV9Bzd .nav-link {
  position: relative;
}
.cid-stDaNV9Bzd .container {
  display: flex;
  margin: auto;
}
.cid-stDaNV9Bzd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-stDaNV9Bzd .dropdown-menu,
.cid-stDaNV9Bzd .navbar.opened {
  background: #815640 !important;
}
.cid-stDaNV9Bzd .nav-item:focus,
.cid-stDaNV9Bzd .nav-link:focus {
  outline: none;
}
.cid-stDaNV9Bzd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stDaNV9Bzd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stDaNV9Bzd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-stDaNV9Bzd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stDaNV9Bzd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stDaNV9Bzd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stDaNV9Bzd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(129, 86, 64, 0);
}
.cid-stDaNV9Bzd .navbar.opened {
  transition: all 0.3s;
}
.cid-stDaNV9Bzd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-stDaNV9Bzd .navbar .navbar-logo img {
  width: auto;
}
.cid-stDaNV9Bzd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stDaNV9Bzd .navbar.collapsed {
  justify-content: center;
}
.cid-stDaNV9Bzd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stDaNV9Bzd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-stDaNV9Bzd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stDaNV9Bzd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stDaNV9Bzd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-stDaNV9Bzd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stDaNV9Bzd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-stDaNV9Bzd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-stDaNV9Bzd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stDaNV9Bzd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stDaNV9Bzd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stDaNV9Bzd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stDaNV9Bzd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-stDaNV9Bzd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-stDaNV9Bzd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stDaNV9Bzd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stDaNV9Bzd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stDaNV9Bzd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stDaNV9Bzd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-stDaNV9Bzd .navbar.navbar-short {
  min-height: 60px;
}
.cid-stDaNV9Bzd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-stDaNV9Bzd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-stDaNV9Bzd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stDaNV9Bzd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stDaNV9Bzd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stDaNV9Bzd .dropdown-item.active,
.cid-stDaNV9Bzd .dropdown-item:active {
  background-color: transparent;
}
.cid-stDaNV9Bzd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stDaNV9Bzd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stDaNV9Bzd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stDaNV9Bzd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #815640;
}
.cid-stDaNV9Bzd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stDaNV9Bzd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stDaNV9Bzd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stDaNV9Bzd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stDaNV9Bzd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stDaNV9Bzd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-stDaNV9Bzd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stDaNV9Bzd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDaNV9Bzd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDaNV9Bzd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stDaNV9Bzd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stDaNV9Bzd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stDaNV9Bzd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stDaNV9Bzd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stDaNV9Bzd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-stDaNV9Bzd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stDaNV9Bzd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stDaNV9Bzd .navbar {
    height: 70px;
  }
  .cid-stDaNV9Bzd .navbar.opened {
    height: auto;
  }
  .cid-stDaNV9Bzd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stDaNW9RNB {
  background-image: url("../../../assets/images/syringe-5904302-1920a1-1916x741.jpg");
}
.cid-stDaNW9RNB .text-content {
  padding-top: 30px;
  padding-bottom: 0px;
}
.cid-stDaNW9RNB .text-content .btn-bgr {
  z-index: 0;
}
.cid-stDaNW9RNB .mbr-overlay {
  background: linear-gradient(90deg, #bbbbbb, #a36140);
}
.cid-stDaNW9RNB H3 {
  color: #000000;
  font-weight: 300;
}
.cid-stDaNW9RNB P {
  color: #767676;
}
.cid-stDaNW9RNB H2 {
  color: #000000;
}
.cid-stDaNW9RNB .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-stDaNW9RNB .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-stDaNW9RNB .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #d6c4bb;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-stDaNW9RNB .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-stDaNW9RNB .text-content {
    width: 100%;
  }
}
.cid-stDaNW9RNB .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-stDaNW9RNB .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-stDaNW9RNB .mbr-text {
    text-align: center;
  }
}
.cid-stDaNWGbX1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f8f0;
}
.cid-stDaNWGbX1 .mbr-section-subtitle {
  color: #434a74;
}
.cid-stDaNWGbX1 .mbr-text {
  color: #434a74;
}
.cid-stHfjKSPFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/footer1-1920x700.jpg");
}
.cid-stHfjKSPFG .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stHfjKSPFG .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-stHfjKSPFG .mbr-list {
  margin: 0;
}
.cid-stHfjKSPFG .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-stHfjKSPFG .first-column {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-stHfjKSPFG .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-stHfjKSPFG .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-stHfjKSPFG .list-inline-item,
.cid-stHfjKSPFG .mbr-list,
.cid-stHfjKSPFG .first-column {
  text-align: center;
}
.cid-stDan6KFmr {
  z-index: 1000;
  width: 100%;
}
.cid-stDan6KFmr nav.navbar {
  position: fixed;
}
.cid-stDan6KFmr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stDan6KFmr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-stDan6KFmr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stDan6KFmr .dropdown-item:hover,
.cid-stDan6KFmr .dropdown-item:focus {
  background: #8ccfff !important;
  color: white !important;
}
.cid-stDan6KFmr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-stDan6KFmr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-stDan6KFmr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-stDan6KFmr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stDan6KFmr .nav-link {
  position: relative;
}
.cid-stDan6KFmr .container {
  display: flex;
  margin: auto;
}
.cid-stDan6KFmr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-stDan6KFmr .dropdown-menu,
.cid-stDan6KFmr .navbar.opened {
  background: #815640 !important;
}
.cid-stDan6KFmr .nav-item:focus,
.cid-stDan6KFmr .nav-link:focus {
  outline: none;
}
.cid-stDan6KFmr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stDan6KFmr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stDan6KFmr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-stDan6KFmr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stDan6KFmr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stDan6KFmr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stDan6KFmr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(129, 86, 64, 0);
}
.cid-stDan6KFmr .navbar.opened {
  transition: all 0.3s;
}
.cid-stDan6KFmr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-stDan6KFmr .navbar .navbar-logo img {
  width: auto;
}
.cid-stDan6KFmr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stDan6KFmr .navbar.collapsed {
  justify-content: center;
}
.cid-stDan6KFmr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stDan6KFmr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-stDan6KFmr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stDan6KFmr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stDan6KFmr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-stDan6KFmr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stDan6KFmr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-stDan6KFmr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-stDan6KFmr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stDan6KFmr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stDan6KFmr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stDan6KFmr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stDan6KFmr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-stDan6KFmr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-stDan6KFmr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stDan6KFmr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stDan6KFmr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stDan6KFmr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stDan6KFmr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-stDan6KFmr .navbar.navbar-short {
  min-height: 60px;
}
.cid-stDan6KFmr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-stDan6KFmr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-stDan6KFmr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stDan6KFmr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stDan6KFmr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stDan6KFmr .dropdown-item.active,
.cid-stDan6KFmr .dropdown-item:active {
  background-color: transparent;
}
.cid-stDan6KFmr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stDan6KFmr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stDan6KFmr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stDan6KFmr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #815640;
}
.cid-stDan6KFmr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stDan6KFmr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stDan6KFmr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stDan6KFmr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stDan6KFmr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stDan6KFmr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-stDan6KFmr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stDan6KFmr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDan6KFmr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stDan6KFmr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stDan6KFmr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stDan6KFmr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stDan6KFmr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stDan6KFmr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stDan6KFmr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-stDan6KFmr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stDan6KFmr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stDan6KFmr .navbar {
    height: 70px;
  }
  .cid-stDan6KFmr .navbar.opened {
    height: auto;
  }
  .cid-stDan6KFmr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stDan7vXpM {
  background-image: url("../../../assets/images/syringe-5904302-1920a1-1916x741.jpg");
}
.cid-stDan7vXpM .text-content {
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-stDan7vXpM .text-content .btn-bgr {
  z-index: 0;
}
.cid-stDan7vXpM .mbr-overlay {
  background: linear-gradient(90deg, #9b9eb7, #a36140);
}
.cid-stDan7vXpM H3 {
  color: #000000;
  font-weight: 300;
}
.cid-stDan7vXpM P {
  color: #767676;
}
.cid-stDan7vXpM H2 {
  color: #000000;
}
.cid-stDan7vXpM .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-stDan7vXpM .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-stDan7vXpM .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #d6c4bb;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-stDan7vXpM .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-stDan7vXpM .text-content {
    width: 100%;
  }
}
.cid-stDan7vXpM .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-stDan7vXpM .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-stDan7vXpM .mbr-text {
    text-align: center;
  }
}
.cid-stDaGnXZHc {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f9f8f0;
}
.cid-stDaGnXZHc .mbr-section-subtitle {
  color: #434a74;
}
.cid-stDaGnXZHc .mbr-text {
  color: #434a74;
  text-align: left;
}
.cid-stPdi3Id6p {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f9f8f0;
}
.cid-stPdi3Id6p .mbr-text {
  color: #434a74;
  font-size: 75%;
  text-align: right;
}
.cid-stPdKqoepc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #f9f8f0;
}
.cid-stPdKqoepc .mbr-text {
  color: #434a74;
}
.cid-stHfjKSPFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/footer1-1920x700.jpg");
}
.cid-stHfjKSPFG .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stHfjKSPFG .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-stHfjKSPFG .mbr-list {
  margin: 0;
}
.cid-stHfjKSPFG .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-stHfjKSPFG .first-column {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-stHfjKSPFG .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-stHfjKSPFG .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-stHfjKSPFG .list-inline-item,
.cid-stHfjKSPFG .mbr-list,
.cid-stHfjKSPFG .first-column {
  text-align: center;
}
.cid-stwGcayKMA {
  z-index: 1000;
  width: 100%;
}
.cid-stwGcayKMA nav.navbar {
  position: fixed;
}
.cid-stwGcayKMA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stwGcayKMA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-stwGcayKMA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-stwGcayKMA .dropdown-item:hover,
.cid-stwGcayKMA .dropdown-item:focus {
  background: #8ccfff !important;
  color: white !important;
}
.cid-stwGcayKMA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-stwGcayKMA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-stwGcayKMA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-stwGcayKMA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-stwGcayKMA .nav-link {
  position: relative;
}
.cid-stwGcayKMA .container {
  display: flex;
  margin: auto;
}
.cid-stwGcayKMA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-stwGcayKMA .dropdown-menu,
.cid-stwGcayKMA .navbar.opened {
  background: #815640 !important;
}
.cid-stwGcayKMA .nav-item:focus,
.cid-stwGcayKMA .nav-link:focus {
  outline: none;
}
.cid-stwGcayKMA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-stwGcayKMA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stwGcayKMA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-stwGcayKMA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-stwGcayKMA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stwGcayKMA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stwGcayKMA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(129, 86, 64, 0);
}
.cid-stwGcayKMA .navbar.opened {
  transition: all 0.3s;
}
.cid-stwGcayKMA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-stwGcayKMA .navbar .navbar-logo img {
  width: auto;
}
.cid-stwGcayKMA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-stwGcayKMA .navbar.collapsed {
  justify-content: center;
}
.cid-stwGcayKMA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stwGcayKMA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-stwGcayKMA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stwGcayKMA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stwGcayKMA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-stwGcayKMA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stwGcayKMA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-stwGcayKMA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-stwGcayKMA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stwGcayKMA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stwGcayKMA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stwGcayKMA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stwGcayKMA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-stwGcayKMA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-stwGcayKMA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stwGcayKMA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stwGcayKMA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-stwGcayKMA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-stwGcayKMA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-stwGcayKMA .navbar.navbar-short {
  min-height: 60px;
}
.cid-stwGcayKMA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-stwGcayKMA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-stwGcayKMA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-stwGcayKMA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stwGcayKMA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stwGcayKMA .dropdown-item.active,
.cid-stwGcayKMA .dropdown-item:active {
  background-color: transparent;
}
.cid-stwGcayKMA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stwGcayKMA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stwGcayKMA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stwGcayKMA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #815640;
}
.cid-stwGcayKMA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stwGcayKMA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stwGcayKMA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-stwGcayKMA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-stwGcayKMA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-stwGcayKMA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-stwGcayKMA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-stwGcayKMA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stwGcayKMA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-stwGcayKMA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-stwGcayKMA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stwGcayKMA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-stwGcayKMA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-stwGcayKMA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-stwGcayKMA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-stwGcayKMA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-stwGcayKMA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stwGcayKMA .navbar {
    height: 70px;
  }
  .cid-stwGcayKMA .navbar.opened {
    height: auto;
  }
  .cid-stwGcayKMA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stwGcbu5LY {
  background-image: url("../../../assets/images/syringe-5904302-1920a2-1916x741.jpg");
}
.cid-stwGcbu5LY .text-content {
  padding-top: 45px;
  padding-bottom: 0px;
}
.cid-stwGcbu5LY .text-content .btn-bgr {
  z-index: 0;
}
.cid-stwGcbu5LY .mbr-overlay {
  background: linear-gradient(90deg, #4479d9, #ffb18a);
}
.cid-stwGcbu5LY H3 {
  color: #000000;
  font-weight: 300;
}
.cid-stwGcbu5LY P {
  color: #ffe885;
}
.cid-stwGcbu5LY H2 {
  color: #000000;
}
.cid-stwGcbu5LY .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-stwGcbu5LY .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-stwGcbu5LY .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #a36140;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-stwGcbu5LY .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-stwGcbu5LY .text-content {
    width: 100%;
  }
}
.cid-stwGcbu5LY .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-stwGcbu5LY .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-stwGcbu5LY .mbr-text {
    text-align: center;
  }
}
.cid-stwGcbu5LY .mbr-section-btn,
.cid-stwGcbu5LY .mbr-section-title {
  color: #ffe885;
}
.cid-stwGcbu5LY .mbr-section-subtitle {
  color: #ffe885;
}
.cid-stBTWnRjQO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stHdTeiQGZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stHdTeiQGZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stHdTeiQGZ .mbr-text {
  color: #ffffff;
}
.cid-swLmyNVIWl {
  padding-top: 15px;
  padding-bottom: 0px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-swLmyNVIWl .mbr-section-title {
  letter-spacing: 0.1em;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-swLmyNVIWl .mbr-section-subtitle {
  color: #232323;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-swLmyNVIWl .btn {
  margin: 0px !important;
}
.cid-swLmyNVIWl .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swLmyNVIWl .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-swLmyNVIWl .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-swLmyNVIWl .carousel-item .wrap-img {
  text-align: center;
}
.cid-swLmyNVIWl .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-swLmyNVIWl .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-swLmyNVIWl .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-swLmyNVIWl .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-swLmyNVIWl .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-swLmyNVIWl .second-col {
    padding-top: 2rem;
  }
}
.cid-swLmyNVIWl .mbr-section-subtitle,
.cid-swLmyNVIWl .mbr-section-btn {
  color: #ffffff;
}
.cid-sx0eKYd8Wu {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-sx0eKYd8Wu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sx0eKYd8Wu .mbr-text {
  color: #ffffff;
}
.cid-sx0oIrWDa9 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-sx0oIrWDa9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sx0oIrWDa9 .mbr-text {
  color: #ffffff;
}
.cid-stBWreVYn6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stBPHJ4HHs {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stBPHJ4HHs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stBPHJ4HHs .mbr-text {
  color: #ffffff;
}
.cid-sUrbFr9tYx {
  padding-top: 15px;
  padding-bottom: 30px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-sUrbFr9tYx .mbr-text,
.cid-sUrbFr9tYx .mbr-section-btn {
  color: #434a74;
}
.cid-sUrbFr9tYx p {
  z-index: 2;
  position: relative;
}
.cid-sUrbFr9tYx .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sUrbFr9tYx .col-lg-12 {
  box-shadow: 0 10px 55px 5px rgba(75, 152, 225, 0.35);
  padding: 1rem 1.5rem;
}
.cid-sUrbFr9tYx .ico1 {
  font-size: 2rem;
}
.cid-sUrbFr9tYx .ico2 {
  position: absolute;
  bottom: 15%;
  right: 1.5rem;
  font-size: 8rem;
  z-index: 1;
  opacity: 0.1;
}
.cid-sUrbFr9tYx H3 {
  color: #149dcc;
}
.cid-sUraHPL9tj {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-sUraHPL9tj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sUraHPL9tj .mbr-text {
  color: #ffffff;
}
.cid-t0f79skiPu {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-t0f79skiPu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t0f79skiPu .mbr-text {
  color: #ffffff;
}
.cid-sv1mKnKs8H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-svcCkUrEJw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-svcCkUrEJw .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-svo46VUmAk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo46VUmAk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo46VUmAk .row {
  flex-direction: row-reverse;
}
.cid-svo46VUmAk img {
  width: 100%;
}
.cid-svo46VUmAk .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo46VUmAk .mbr-text {
  color: #ffffff;
}
.cid-svo739SOxO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo739SOxO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo739SOxO .row {
  flex-direction: row-reverse;
}
.cid-svo739SOxO img {
  width: 100%;
}
.cid-svo739SOxO .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo739SOxO .mbr-text {
  color: #ffffff;
}
.cid-svo74lyrVI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo74lyrVI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo74lyrVI .row {
  flex-direction: row-reverse;
}
.cid-svo74lyrVI img {
  width: 100%;
}
.cid-svo74lyrVI .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo74lyrVI .mbr-text {
  color: #ffffff;
}
.cid-svo75oPkHx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo75oPkHx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo75oPkHx .row {
  flex-direction: row-reverse;
}
.cid-svo75oPkHx img {
  width: 100%;
}
.cid-svo75oPkHx .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo75oPkHx .mbr-text {
  color: #ffffff;
}
.cid-svo76DqxlD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo76DqxlD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo76DqxlD .row {
  flex-direction: row-reverse;
}
.cid-svo76DqxlD img {
  width: 100%;
}
.cid-svo76DqxlD .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo76DqxlD .mbr-text {
  color: #ffffff;
}
.cid-svo77orm64 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo77orm64 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo77orm64 .row {
  flex-direction: row-reverse;
}
.cid-svo77orm64 img {
  width: 100%;
}
.cid-svo77orm64 .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo77orm64 .mbr-text {
  color: #ffffff;
}
.cid-svo786BVcD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo786BVcD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo786BVcD .row {
  flex-direction: row-reverse;
}
.cid-svo786BVcD img {
  width: 100%;
}
.cid-svo786BVcD .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo786BVcD .mbr-text {
  color: #ffffff;
}
.cid-sx2IDHNqrY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-sx2IDHNqrY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sx2IDHNqrY .row {
  flex-direction: row-reverse;
}
.cid-sx2IDHNqrY img {
  width: 100%;
}
.cid-sx2IDHNqrY .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-sx2IDHNqrY .mbr-text {
  color: #ffffff;
}
.cid-utrvNvCcXh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-utrvNvCcXh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utrvNvCcXh .row {
  flex-direction: row-reverse;
}
.cid-utrvNvCcXh img {
  width: 100%;
}
.cid-utrvNvCcXh .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-utrvNvCcXh .mbr-text {
  color: #ffffff;
}
.cid-utkX1wnHYv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-utkX1wnHYv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utkX1wnHYv .row {
  flex-direction: row-reverse;
}
.cid-utkX1wnHYv img {
  width: 100%;
}
.cid-utkX1wnHYv .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-utkX1wnHYv .mbr-text {
  color: #ffffff;
}
.cid-usZB6ovvjv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-usZB6ovvjv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usZB6ovvjv .row {
  flex-direction: row-reverse;
}
.cid-usZB6ovvjv img {
  width: 100%;
}
.cid-usZB6ovvjv .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-usZB6ovvjv .mbr-text {
  color: #ffffff;
}
.cid-usZD4JWVMb {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-usZD4JWVMb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-usZD4JWVMb .row {
  flex-direction: row-reverse;
}
.cid-usZD4JWVMb img {
  width: 100%;
}
.cid-usZD4JWVMb .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-usZD4JWVMb .mbr-text {
  color: #ffffff;
}
.cid-utl4zqCvNt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-utl4zqCvNt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utl4zqCvNt .row {
  flex-direction: row-reverse;
}
.cid-utl4zqCvNt img {
  width: 100%;
}
.cid-utl4zqCvNt .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-utl4zqCvNt .mbr-text {
  color: #ffffff;
}
.cid-utrhTkeuRS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-utrhTkeuRS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utrhTkeuRS .row {
  flex-direction: row-reverse;
}
.cid-utrhTkeuRS img {
  width: 100%;
}
.cid-utrhTkeuRS .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-utrhTkeuRS .mbr-text {
  color: #ffffff;
}
.cid-utrzq8SOl3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-utrzq8SOl3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utrzq8SOl3 .row {
  flex-direction: row-reverse;
}
.cid-utrzq8SOl3 img {
  width: 100%;
}
.cid-utrzq8SOl3 .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-utrzq8SOl3 .mbr-text {
  color: #ffffff;
}
.cid-uFe43Qq1Pm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-uFe43Qq1Pm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFe43Qq1Pm .row {
  flex-direction: row-reverse;
}
.cid-uFe43Qq1Pm img {
  width: 100%;
}
.cid-uFe43Qq1Pm .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-uFe43Qq1Pm .mbr-text {
  color: #ffffff;
}
.cid-uFNaekeCgl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-uFNaekeCgl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uFNaekeCgl .row {
  flex-direction: row-reverse;
}
.cid-uFNaekeCgl img {
  width: 100%;
}
.cid-uFNaekeCgl .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-uFNaekeCgl .mbr-text {
  color: #ffffff;
}
.cid-v5fU3LsbhY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-v5fU3LsbhY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v5fU3LsbhY .row {
  flex-direction: row-reverse;
}
.cid-v5fU3LsbhY img {
  width: 100%;
}
.cid-v5fU3LsbhY .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-v5fU3LsbhY .mbr-text {
  color: #ffffff;
}
.cid-v9ea9TH7lt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-v9ea9TH7lt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v9ea9TH7lt .row {
  flex-direction: row-reverse;
}
.cid-v9ea9TH7lt img {
  width: 100%;
}
.cid-v9ea9TH7lt .mbr-description {
  color: #ffb18a;
  font-size: 80%;
}
.cid-v9ea9TH7lt .mbr-text {
  color: #ffffff;
}
.cid-stMZpWsTIJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stMZgYwVLR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stMZgYwVLR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stMZgYwVLR .mbr-text {
  color: #ffffff;
}
.cid-svo7980NlW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svo7980NlW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svo7980NlW .row {
  flex-direction: row-reverse;
}
.cid-svo7980NlW img {
  width: 100%;
}
.cid-svo7980NlW .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svo7980NlW .mbr-text {
  color: #ffffff;
}
.cid-svonMg812b {
  padding-top: 1rem;
  padding-bottom: 4rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svonMg812b .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svonMg812b .row {
  flex-direction: row-reverse;
}
.cid-svonMg812b img {
  width: 100%;
}
.cid-svonMg812b .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svonMg812b .mbr-text {
  color: #ffffff;
}
.cid-syYuYSZjmx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stNapF3E3R {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stNapF3E3R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stNapF3E3R .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-svoougCu5P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
@media (max-width: 991px) {
  .cid-svoougCu5P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svoougCu5P .row {
  flex-direction: row-reverse;
}
.cid-svoougCu5P img {
  width: 100%;
}
.cid-svoougCu5P .mbr-description {
  color: #237fd6;
  font-size: 80%;
}
.cid-svoougCu5P .mbr-text {
  color: #ffffff;
}
.cid-stNcxJUmYP {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stNcxJUmYP .mbr-text {
  color: #ffffff;
}
.cid-stBTUQgKhP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stBTMH39Jw {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-stBTMH39Jw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stBTMH39Jw .mbr-text {
  color: #ffffff;
}
.cid-stYsn9Ev0N {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stHM3Je4PV {
  padding-top: 3rem;
  padding-bottom: 2rem;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-stHM3Je4PV .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-stHM1tdcF0 {
  padding-top: 0px;
  padding-bottom: 30px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-stHM1tdcF0 .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-stHM1tdcF0 .mbr-section-title {
  margin: 0;
}
.cid-stHM1tdcF0 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-stHM1tdcF0 .card-img {
  text-align: inherit;
}
.cid-stHM1tdcF0 .card-img span {
  background: linear-gradient(90deg, #434a74, #ff9966);
}
.cid-stHM1tdcF0 .mbr-text {
  color: #8d97ad;
}
.cid-stHM1tdcF0 .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #f9f8f0;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-stHM1tdcF0 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-stHM0aa9kM {
  padding-top: 0px;
  padding-bottom: 30px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-stHM0aa9kM .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-stHM0aa9kM .mbr-section-title {
  margin: 0;
}
.cid-stHM0aa9kM .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-stHM0aa9kM .card-img {
  text-align: inherit;
}
.cid-stHM0aa9kM .card-img span {
  background: linear-gradient(90deg, #434a74, #ff9966);
}
.cid-stHM0aa9kM .mbr-text {
  color: #8d97ad;
}
.cid-stHM0aa9kM .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #f9f8f0;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-stHM0aa9kM .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-usZyft78QR {
  padding-top: 0px;
  padding-bottom: 30px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-usZyft78QR .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-usZyft78QR .mbr-section-title {
  margin: 0;
}
.cid-usZyft78QR .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-usZyft78QR .card-img {
  text-align: inherit;
}
.cid-usZyft78QR .card-img span {
  background: linear-gradient(90deg, #434a74, #ff9966);
}
.cid-usZyft78QR .mbr-text {
  color: #8d97ad;
}
.cid-usZyft78QR .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #f9f8f0;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-usZyft78QR .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-ut3AOKR2HF {
  padding-top: 0px;
  padding-bottom: 45px;
  max-width: 92%;
  margin: auto;
  background-color: #a36140;
}
.cid-ut3AOKR2HF .mbr-iconfont {
  font-size: 34px;
  width: 5.125rem;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-ut3AOKR2HF .mbr-section-title {
  margin: 0;
}
.cid-ut3AOKR2HF .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-ut3AOKR2HF .card-img {
  text-align: inherit;
}
.cid-ut3AOKR2HF .card-img span {
  background: linear-gradient(90deg, #434a74, #ff9966);
}
.cid-ut3AOKR2HF .mbr-text {
  color: #8d97ad;
}
.cid-ut3AOKR2HF .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #f9f8f0;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-ut3AOKR2HF .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-stHLXkyMxE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-ut3CZlnswc {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
}
.cid-ut3CZlnswc .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ut3CZlnswc .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-ut3CZlnswc .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-ut3CZlnswc .mbr-section-title {
  color: #ffffff;
}
.cid-ut3CZlnswc .mbr-text {
  color: #ffffff;
}
.cid-ut3CiaNfKP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-ut3CiaNfKP .mbr-text {
  text-align: center;
  color: transparent;
}
.cid-ut3CiaNfKP .mbr-section-subtitle {
  text-align: center;
}
.cid-usYu6Ea1ta {
  padding-top: 45px;
  padding-bottom: 45px;
  max-width: 92%;
  margin: auto;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-usYu6Ea1ta .slider-text-two {
  background: rgba(163, 97, 64, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(255, 255, 255, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
}
.cid-usYu6Ea1ta .mbr-section-title {
  color: #232323;
}
.cid-usYu6Ea1ta .mbr-text {
  color: #ffffff;
  letter-spacing: 5px;
  font-weight: 100;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-usYu6Ea1ta .slider-text-two {
    outline: 15px solid rgba(163, 97, 64, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.cid-usYu5d7Bin {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-stHfjKSPFG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/footer1-1920x700.jpg");
}
.cid-stHfjKSPFG .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-stHfjKSPFG .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-stHfjKSPFG .mbr-list {
  margin: 0;
}
.cid-stHfjKSPFG .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-stHfjKSPFG .first-column {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-stHfjKSPFG .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-stHfjKSPFG .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-stHfjKSPFG .list-inline-item,
.cid-stHfjKSPFG .mbr-list,
.cid-stHfjKSPFG .first-column {
  text-align: center;
}
.cid-utl04knGHy.popup-builder {
  background-color: #ffffff;
}
.cid-utl04knGHy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-utl04knGHy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-utl04knGHy .modal-content,
.cid-utl04knGHy .modal-dialog {
  height: auto;
}
.cid-utl04knGHy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-utl04knGHy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-utl04knGHy .form-wrapper .mbr-form .form-group,
  .cid-utl04knGHy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-utl04knGHy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-utl04knGHy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-utl04knGHy .mbr-text {
  text-align: center;
}
.cid-utl04knGHy .pt-0 {
  padding-top: 0 !important;
}
.cid-utl04knGHy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-utl04knGHy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-utl04knGHy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-utl04knGHy .modal-open {
  overflow: hidden;
}
.cid-utl04knGHy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-utl04knGHy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-utl04knGHy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-utl04knGHy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-utl04knGHy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-utl04knGHy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-utl04knGHy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-utl04knGHy .modal-content {
  background: #d6c4bb;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-utl04knGHy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-utl04knGHy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-utl04knGHy .modal-backdrop.fade {
  opacity: 0;
}
.cid-utl04knGHy .modal-backdrop.show {
  opacity: .5;
}
.cid-utl04knGHy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-utl04knGHy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-utl04knGHy .modal-header {
    padding: 1rem;
  }
}
.cid-utl04knGHy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-utl04knGHy .modal-header .close svg {
  fill: #353535;
}
.cid-utl04knGHy .modal-header .close:hover {
  opacity: 1;
}
.cid-utl04knGHy .modal-header .close:focus {
  outline: none;
}
.cid-utl04knGHy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-utl04knGHy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-utl04knGHy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utl04knGHy .modal-body {
    padding: 1rem;
  }
}
.cid-utl04knGHy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utl04knGHy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utl04knGHy .modal-footer {
    padding: 1rem;
  }
}
.cid-utl04knGHy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-utl04knGHy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-utl04knGHy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-utl04knGHy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-utl04knGHy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-utl04knGHy .modal-lg,
  .cid-utl04knGHy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-utl04knGHy .modal-xl {
    max-width: 1140px;
  }
}
.cid-utl04knGHy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-utl04knGHy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-utl04knGHy .form-group {
  margin-bottom: 1rem;
}
.cid-utl04knGHy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-utl04knGHy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-utl04knGHy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-utl04knGHy .mbr-section-btn {
  margin: 0;
}
.cid-utl04knGHy .mbr-section-btn .btn {
  margin: 0;
}
.cid-usYhDMOCa6 {
  z-index: 1000;
  width: 100%;
}
.cid-usYhDMOCa6 nav.navbar {
  position: fixed;
}
.cid-usYhDMOCa6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usYhDMOCa6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-usYhDMOCa6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-usYhDMOCa6 .dropdown-item:hover,
.cid-usYhDMOCa6 .dropdown-item:focus {
  background: #8ccfff !important;
  color: white !important;
}
.cid-usYhDMOCa6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-usYhDMOCa6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-usYhDMOCa6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-usYhDMOCa6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-usYhDMOCa6 .nav-link {
  position: relative;
}
.cid-usYhDMOCa6 .container {
  display: flex;
  margin: auto;
}
.cid-usYhDMOCa6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-usYhDMOCa6 .dropdown-menu,
.cid-usYhDMOCa6 .navbar.opened {
  background: #815640 !important;
}
.cid-usYhDMOCa6 .nav-item:focus,
.cid-usYhDMOCa6 .nav-link:focus {
  outline: none;
}
.cid-usYhDMOCa6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-usYhDMOCa6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-usYhDMOCa6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-usYhDMOCa6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-usYhDMOCa6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-usYhDMOCa6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-usYhDMOCa6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(129, 86, 64, 0);
}
.cid-usYhDMOCa6 .navbar.opened {
  transition: all 0.3s;
}
.cid-usYhDMOCa6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-usYhDMOCa6 .navbar .navbar-logo img {
  width: auto;
}
.cid-usYhDMOCa6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-usYhDMOCa6 .navbar.collapsed {
  justify-content: center;
}
.cid-usYhDMOCa6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-usYhDMOCa6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-usYhDMOCa6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-usYhDMOCa6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-usYhDMOCa6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-usYhDMOCa6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-usYhDMOCa6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-usYhDMOCa6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-usYhDMOCa6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-usYhDMOCa6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-usYhDMOCa6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-usYhDMOCa6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-usYhDMOCa6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-usYhDMOCa6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-usYhDMOCa6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-usYhDMOCa6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-usYhDMOCa6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-usYhDMOCa6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-usYhDMOCa6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-usYhDMOCa6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-usYhDMOCa6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-usYhDMOCa6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-usYhDMOCa6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-usYhDMOCa6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-usYhDMOCa6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-usYhDMOCa6 .dropdown-item.active,
.cid-usYhDMOCa6 .dropdown-item:active {
  background-color: transparent;
}
.cid-usYhDMOCa6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-usYhDMOCa6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-usYhDMOCa6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-usYhDMOCa6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #815640;
}
.cid-usYhDMOCa6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-usYhDMOCa6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-usYhDMOCa6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-usYhDMOCa6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-usYhDMOCa6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-usYhDMOCa6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-usYhDMOCa6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-usYhDMOCa6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usYhDMOCa6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-usYhDMOCa6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-usYhDMOCa6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usYhDMOCa6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-usYhDMOCa6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-usYhDMOCa6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-usYhDMOCa6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-usYhDMOCa6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-usYhDMOCa6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-usYhDMOCa6 .navbar {
    height: 70px;
  }
  .cid-usYhDMOCa6 .navbar.opened {
    height: auto;
  }
  .cid-usYhDMOCa6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-usYhDN7FJC {
  background-image: url("../../../assets/images/syringe-5904302-1920a2-1916x741.jpg");
}
.cid-usYhDN7FJC .text-content {
  padding-top: 30px;
  padding-bottom: 0px;
}
.cid-usYhDN7FJC .text-content .btn-bgr {
  z-index: 0;
}
.cid-usYhDN7FJC .mbr-overlay {
  background: linear-gradient(90deg, #4479d9, #ffb18a);
}
.cid-usYhDN7FJC H3 {
  color: #000000;
  font-weight: 300;
}
.cid-usYhDN7FJC P {
  color: #ffe885;
}
.cid-usYhDN7FJC H2 {
  color: #000000;
}
.cid-usYhDN7FJC .media-container-row {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .cid-usYhDN7FJC .media-container-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-usYhDN7FJC .text-content {
  padding-left: 1rem;
  padding-right: 1rem;
  width: 50%;
  background-color: #a36140;
  opacity: 0.8;
}
@media (max-width: 991px) {
  .cid-usYhDN7FJC .text-content {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .cid-usYhDN7FJC .text-content {
    width: 100%;
  }
}
.cid-usYhDN7FJC .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-usYhDN7FJC .mbr-section-btn {
  margin-left: -0.8rem;
}
@media (max-width: 767px) {
  .cid-usYhDN7FJC .mbr-text {
    text-align: center;
  }
}
.cid-usYhDN7FJC .mbr-section-btn,
.cid-usYhDN7FJC .mbr-section-title {
  color: #ffe885;
}
.cid-usYhDN7FJC .mbr-section-subtitle {
  color: #ffe885;
}
.cid-usYhDNlX1M {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-usYhDXAcWU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usYhDXAcWU .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-usYhDXVaas {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
}
.cid-usYhDXVaas .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYhDXVaas .mbr-text {
  color: #ffffff;
}
.cid-usYhDYitiv {
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usYhDYitiv .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #d6c4bb;
  color: #444444;
  padding: 0;
}
.cid-usYhDYitiv .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-usYhDYitiv p {
  line-height: 1.6;
}
.cid-usYhDYitiv .rev,
.cid-usYhDYitiv .mbr-iconfont {
  display: inline-block;
}
.cid-usYhDYitiv .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-usYhDYitiv .card-box {
  padding: 1.5rem;
}
.cid-usYhDYitiv .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-usYhDYitiv .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-usYhDYitiv .mbr-section-title,
.cid-usYhDYitiv .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-usYhDYitiv .rev {
  color: #0a1c44;
}
.cid-usYhDYitiv .card-text,
.cid-usYhDYitiv .mbr-section-btn,
.cid-usYhDYitiv .ico-line {
  color: #767676;
}
.cid-usYhDYKFZU {
  padding-top: 0px;
  padding-bottom: 0px;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  background-color: #a36140;
}
.cid-usYhDYKFZU .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #d6c4bb;
  color: #444444;
  padding: 0;
}
.cid-usYhDYKFZU .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-usYhDYKFZU p {
  line-height: 1.6;
}
.cid-usYhDYKFZU .rev,
.cid-usYhDYKFZU .mbr-iconfont {
  display: inline-block;
}
.cid-usYhDYKFZU .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-usYhDYKFZU .card-box {
  padding: 1.5rem;
}
.cid-usYhDYKFZU .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-usYhDYKFZU .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-usYhDYKFZU .mbr-section-title,
.cid-usYhDYKFZU .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-usYhDYKFZU .rev {
  color: #0a1c44;
}
.cid-usYhDYKFZU .card-text,
.cid-usYhDYKFZU .mbr-section-btn,
.cid-usYhDYKFZU .ico-line {
  color: #767676;
}
.cid-usYhDZaN4V {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
}
.cid-usYhDZaN4V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usYhDZaN4V .mbr-text {
  color: #ffffff;
}
.cid-usYlTxSYGN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-right: #434a74 3px solid;
  border-left: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-usYlTxSYGN blockquote {
  border-color: #f4a227 !important;
}
.cid-usYlTxSYGN DIV {
  color: #ffffff;
}
.cid-usYhE0HR4v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-uteYV1x5LH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #a36140;
  max-width: 92%;
  margin: auto;
  border-top: #434a74 3px solid;
  border-left: #434a74 3px solid;
  border-right: #434a74 3px solid;
  border-bottom: #434a74 3px solid;
}
.cid-uteYV1x5LH .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uteYV1x5LH .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-uteYV1x5LH .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-uteYV1x5LH .mbr-section-title {
  color: #ffffff;
}
.cid-uteYV1x5LH .mbr-text {
  color: #ffffff;
}
.cid-uteYXnJYMr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: transparent;
}
.cid-usYhE19utA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/footer1-1920x700.jpg");
}
.cid-usYhE19utA .first-column {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-usYhE19utA .second-column img {
  object-fit: cover;
  object-position: center center;
  width: 10%;
}
.cid-usYhE19utA .mbr-list {
  margin: 0;
}
.cid-usYhE19utA .mbr-list li:not(:last-child) {
  margin-right: 2.5rem;
}
@media (max-width: 991px) {
  .cid-usYhE19utA .first-column {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-usYhE19utA .second-column {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-usYhE19utA .mbr-list li:not(:last-child) {
    margin-right: 1rem;
  }
}
.cid-usYhE19utA .list-inline-item,
.cid-usYhE19utA .mbr-list,
.cid-usYhE19utA .first-column {
  text-align: center;
}
