body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Century Gothic 400';
  font-size: 3.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.8rem;
}
.display-2 {
  font-family: 'Century Gothic 400';
  font-size: 3.2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Century Gothic 400';
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'gothicb';
  font-size: 2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Century Gothic 400';
  font-size: 1.25rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((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))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #8c0c04 !important;
}
.bg-success {
  background-color: #004f5a !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #212529 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #8c0c04 !important;
  border-color: #8c0c04 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #420602 !important;
  border-color: #420602 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #420602 !important;
  border-color: #420602 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #8c0c04 !important;
  border-color: #8c0c04 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #420602 !important;
  border-color: #420602 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #420602 !important;
  border-color: #420602 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #004f5a !important;
  border-color: #004f5a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #000c0e !important;
  border-color: #000c0e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000c0e !important;
  border-color: #000c0e !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #290301;
  color: #290301;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #8c0c04;
  border-color: #8c0c04;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #8c0c04 !important;
  border-color: #8c0c04 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #290301;
  color: #290301;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #8c0c04;
  border-color: #8c0c04;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8c0c04 !important;
  border-color: #8c0c04 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #004f5a;
  border-color: #004f5a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #004f5a !important;
  border-color: #004f5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #212529;
  border-color: #212529;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #212529 !important;
  border-color: #212529 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #8c0c04 !important;
}
.text-secondary {
  color: #8c0c04 !important;
}
.text-success {
  color: #004f5a !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #212529 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #290301 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #290301 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #212529;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #8c0c04;
  border-color: #8c0c04;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #8c0c04;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f82417;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #00bfda;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #d3d8dc;
}
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Century Gothic 400';
  font-size: 1.25rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #8c0c04;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.btn-primary:hover {
  color: #8c0c04 !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #8c0c04;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #8c0c04;
  border-bottom-color: #8c0c04;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #8c0c04 !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: #8c0c04 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%238c0c04' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uLTqiGMJC6 {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/486472358-1081314377369610-3761620833515859509-n-2000x878.jpg");
}
.cid-uLTqiGMJC6 .mbr-section-title {
  text-align: center;
}
.cid-uLTqiGMJC6 .mbr-text,
.cid-uLTqiGMJC6 .mbr-section-btn {
  text-align: center;
}
.cid-uLTqiGMJC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLTqiGMJC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLTsBMiSRC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #f5f7fa;
}
.cid-uLTsBMiSRC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLTsBMiSRC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLTsBMiSRC .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uLTsBMiSRC .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLTsBMiSRC .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uLTsBMiSRC .items-wrapper .item {
  padding: 0 10px;
}
.cid-uLTsBMiSRC .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uLTsBMiSRC .item {
    margin-bottom: 16px;
  }
}
.cid-uLTsBMiSRC .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
  height: 100%;
}
.cid-uLTsBMiSRC .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uLTsBMiSRC .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-uLTsBMiSRC .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .cid-uLTsBMiSRC .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-uLTsBMiSRC .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-uLTsBMiSRC .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-uLTsBMiSRC .mbr-section-title {
  color: #004f5a;
  text-align: center;
}
.cid-uLTsBMiSRC .item-title {
  color: #000c3f;
}
.cid-uLTsBMiSRC .item-text {
  color: #000c3f;
}
.cid-uLTsBMiSRC .item-title,
.cid-uLTsBMiSRC .mbr-section-btn {
  color: #005763;
}
.cid-sisntZAQPa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sisntZAQPa .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sisntZAQPa .card-img {
  padding-bottom: 2rem;
  border-radius: .25rem;
}
.cid-sisntZAQPa .card-img img {
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(143, 143, 143, 0.3);
  box-shadow: 0px 0px 30px rgba(143, 143, 143, 0.3);
}
.cid-sisntZAQPa .section-text,
.cid-sisntZAQPa .card-text {
  color: #8d97ad;
}
@media (max-width: 767px) {
  .cid-sisntZAQPa .section-text,
  .cid-sisntZAQPa .card-text,
  .cid-sisntZAQPa .card-title,
  .cid-sisntZAQPa .mbr-section-title {
    text-align: center;
  }
}
.cid-sisntZAQPa .card-text,
.cid-sisntZAQPa .mbr-section-btn {
  text-align: center;
  color: #2c1616;
}
.cid-sisntZAQPa .card-title,
.cid-sisntZAQPa .card-img {
  text-align: center;
}
.cid-sisntZAQPa .section-text {
  text-align: center;
  color: #2c1616;
}
.cid-sisntZAQPa H2 {
  text-align: center;
  color: #026875;
}
.cid-uLTOOneuhX {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uLTOOneuhX .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uLTOOneuhX .card-img {
  padding-bottom: 2rem;
}
.cid-uLTOOneuhX .mbr-text {
  color: #767676;
}
.cid-uLTOOneuhX span {
  font-size: 14px;
  color: #ffffff;
}
.cid-uLTOOneuhX .mbr-section-btn {
  margin-left: 0;
}
.cid-uLTOOneuhX .date span {
  display: inline-block;
  background-color: #8c0c04;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uLTOOneuhX .card-title {
    text-align: center;
  }
  .cid-uLTOOneuhX p.mbr-text,
  .cid-uLTOOneuhX p.date {
    text-align: center;
  }
}
.cid-uLTOOneuhX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLTOOneuhX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLTOJfrmAx {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9f9f9;
}
.cid-uLTOJfrmAx .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-uLTOJfrmAx .card-img {
  padding-bottom: 2rem;
}
.cid-uLTOJfrmAx .mbr-text {
  color: #767676;
}
.cid-uLTOJfrmAx span {
  font-size: 14px;
  color: #ffffff;
}
.cid-uLTOJfrmAx .mbr-section-btn {
  margin-left: 0;
}
.cid-uLTOJfrmAx .date span {
  display: inline-block;
  background-color: #8c0c04;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-uLTOJfrmAx .card-title {
    text-align: center;
  }
  .cid-uLTOJfrmAx p.mbr-text,
  .cid-uLTOJfrmAx p.date {
    text-align: center;
  }
}
.cid-uLTOJfrmAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLTOJfrmAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-slohbGRvcn {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-slohbGRvcn .container-fluid {
  padding: 0 5rem;
}
.cid-slohbGRvcn .animated-element {
  color: #efefef;
}
.cid-slohbGRvcn .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-slohbGRvcn .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-slohbGRvcn .container-fluid {
    padding: 0 1rem;
  }
}
.cid-slohbGRvcn .mbr-section-title {
  color: #026875;
  text-align: center;
}
.cid-sns1Bies3Y {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sns1Bies3Y .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sns1Bies3Y .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-sns1Bies3Y .panel-group {
  width: 100%;
}
.cid-sns1Bies3Y .panel-text,
.cid-sns1Bies3Y .mbr-section-subtitle {
  color: #767676;
}
.cid-sns1Bies3Y .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-sns1Bies3Y .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sns1Bies3Y .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #f5f7fa;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sns1Bies3Y .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-sns1Bies3Y .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sns1Bies3Y .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-sns1Bies3Y .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-sns1Bies3Y .card .panel-body {
  background: #ffffff;
}
.cid-sns1Bies3Y .header-text,
.cid-sns1Bies3Y .sign {
  color: #000000;
}
.cid-sns1Bies3Y .mbr-section-title {
  color: #026875;
}
.cid-sns1Bies3Y .panel-text {
  color: #000000;
}
.cid-slnNClEEJ9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-slnNClEEJ9 .main-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-slnNClEEJ9 .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-slnNClEEJ9 .content-panel {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (min-width: 992px) {
  .cid-slnNClEEJ9 .form-group,
  .cid-slnNClEEJ9 .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-slnNClEEJ9 .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #e9e9e9;
  border: 1px solid #efefef;
  color: #000000;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-slnNClEEJ9 .form-control:focus,
.cid-slnNClEEJ9 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #e9e9e9;
}
.cid-slnNClEEJ9 textarea.form-control {
  min-height: 170px;
}
.cid-slnNClEEJ9 .form-group {
  margin-bottom: 1rem;
}
.cid-slnNClEEJ9 input::-webkit-input-placeholder,
.cid-slnNClEEJ9 textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-slnNClEEJ9 input:-moz-placeholder,
.cid-slnNClEEJ9 textarea:-moz-placeholder {
  color: #000000;
}
.cid-slnNClEEJ9 .jq-selectbox li,
.cid-slnNClEEJ9 .jq-selectbox li {
  background-color: #e9e9e9;
  color: #000000;
}
.cid-slnNClEEJ9 .jq-selectbox li:hover,
.cid-slnNClEEJ9 .jq-selectbox li.selected {
  background-color: #e9e9e9;
  color: #000000;
}
.cid-slnNClEEJ9 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e9e9e9;
}
.cid-slnNClEEJ9 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #e9e9e9;
}
@media (max-width: 768px) {
  .cid-slnNClEEJ9 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-slnNClEEJ9 .text-block {
    margin-bottom: 2rem;
  }
}
.cid-slnNClEEJ9 .content-block {
  color: #000000;
}
.cid-slnNClEEJ9 .mbr-section-title {
  color: #000000;
}
.cid-uLTYaHnB2n {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uLTYaHnB2n *:focus {
  outline: none;
}
.cid-uLTYaHnB2n .form-control {
  width: 100%;
  min-height: auto;
  color: #232323 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: 0.5rem 0rem;
  border-bottom: 1px solid #232323;
  box-shadow: none;
}
.cid-uLTYaHnB2n .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-uLTYaHnB2n input::-webkit-input-placeholder {
  color: #232323;
}
.cid-uLTYaHnB2n input::-moz-placeholder {
  color: #232323;
}
.cid-uLTYaHnB2n textarea::-webkit-input-placeholder {
  color: #232323;
}
.cid-uLTYaHnB2n textarea::-moz-placeholder {
  color: #232323;
}
.cid-uLTYaHnB2n .soc-item {
  margin: 0 0.1rem 0.2rem 0.1rem;
  display: inline-flex;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: 1px solid #8c0c04;
  border-radius: 50%;
}
.cid-uLTYaHnB2n .soc-item:hover {
  opacity: 0.5;
}
.cid-uLTYaHnB2n .soc-item .socicon {
  font-size: 1.5rem;
  color: #8c0c04;
}
.cid-uLTYaHnB2n .days-column,
.cid-uLTYaHnB2n .hours-column {
  display: inline-block;
}
.cid-uLTYaHnB2n .days-column span,
.cid-uLTYaHnB2n .hours-column span {
  display: block;
}
.cid-uLTYaHnB2n .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-uLTYaHnB2n .days-column {
    padding-right: 0 !important;
  }
  .cid-uLTYaHnB2n .hours-column {
    max-width: 50% !important;
  }
  .cid-uLTYaHnB2n .opening-hours {
    padding-bottom: 48px !important;
  }
}
.cid-uLTYaHnB2n .follow-title,
.cid-uLTYaHnB2n .social-list {
  text-align: center;
}
.cid-uLTYaHnB2n .logo img {
  display: inherit;
  width: auto;
}
.cid-uLTYaHnB2n .contacts-title,
.cid-uLTYaHnB2n .contacts-block {
  color: #000000;
}
.cid-rzHa6XC5QH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rzHa6XC5QH .links {
  text-align: center;
  color: #000000;
}
.cid-rzHa6XC5QH p {
  margin: 0;
}
